body {
  font-family: Barlow;
}
.display-1 {
  font-family: 'Barlow', sans-serif;
  font-size: 4.8rem;
  letter-spacing: -1px;
}
.display-1 > .mbr-iconfont {
  font-size: 7.68rem;
}
.display-2 {
  font-family: 'Barlow', sans-serif;
  font-size: 2.6rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.16rem;
}
.display-4 {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.6rem;
  letter-spacing: -1px;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-7 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.84rem;
    font-size: calc( 2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((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: #ff3366 !important;
}
.bg-success {
  background-color: #ffda00 !important;
}
.bg-info {
  background-color: #000000 !important;
}
.bg-warning {
  background-color: #ffda00 !important;
}
.bg-danger {
  background-color: #073b4c !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #ff809f !important;
  border-color: #ff809f !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ff809f !important;
  border-color: #ff809f !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #2681cd !important;
  border-color: #2681cd !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #5ea6e1 !important;
  border-color: #5ea6e1 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #5ea6e1 !important;
  border-color: #5ea6e1 !important;
}
.btn-info,
.btn-info:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #262626 !important;
  border-color: #262626 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #262626 !important;
  border-color: #262626 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffda00 !important;
  border-color: #ffda00 !important;
  color: #000000 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #000000 !important;
  background-color: #ffe54d !important;
  border-color: #ffe54d !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #ffe54d !important;
  border-color: #ffe54d !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffda00 !important;
  border-color: #ffda00 !important;
  color: #000000 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #000000 !important;
  background-color: #ffe54d !important;
  border-color: #ffe54d !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #000000 !important;
  background-color: #ffe54d !important;
  border-color: #ffe54d !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #073b4c !important;
  border-color: #073b4c !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #0d7192 !important;
  border-color: #0d7192 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0d7192 !important;
  border-color: #0d7192 !important;
}
.btn-white {
  color: #222222 !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: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #222222 !important;
  border-color: #222222 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #484848 !important;
  border-color: #484848 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #484848 !important;
  border-color: #484848 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #cc0033;
  color: #cc0033;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #ff3366;
  border-color: #ff3366;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #164b77;
  color: #164b77;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #2681cd;
  border-color: #2681cd;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #2681cd !important;
  border-color: #2681cd !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #998300;
  color: #998300;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000;
  background-color: #ffda00;
  border-color: #ffda00;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #ffda00 !important;
  border-color: #ffda00 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #998300;
  color: #998300;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #000000;
  background-color: #ffda00;
  border-color: #ffda00;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #000000 !important;
  background-color: #ffda00 !important;
  border-color: #ffda00 !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: #073b4c;
  border-color: #073b4c;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #073b4c !important;
  border-color: #073b4c !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: #222222;
  border-color: #222222;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #222222 !important;
  border-color: #222222 !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: #ff3366 !important;
}
.text-secondary {
  color: #2681cd !important;
}
.text-success {
  color: #ffda00 !important;
}
.text-info {
  color: #000000 !important;
}
.text-warning {
  color: #ffda00 !important;
}
.text-danger {
  color: #073b4c !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #ff99b3 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #74b2e5 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ffe966 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #333333 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #ffe966 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #1084a9 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #000000 !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #000000;
}
.alert-warning {
  background-color: #ffda00;
}
.alert-danger {
  background-color: #073b4c;
}
.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: #ff3366;
  border-color: #ff3366;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ff3366;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fff8cc;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fff8cc;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #4ac6ee;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Barlow', sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #ff3366;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff3366;
  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: #ff3366;
  border-bottom-color: #ff3366;
}
.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: #ff3366 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #2681cd !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ff3366' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-sCXHoxAyoi .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-sCXHoxAyoi .navbar-fixed-top {
  padding-top: 0;
}
.cid-sCXHoxAyoi .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sCXHoxAyoi .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-sCXHoxAyoi .dropdown-item {
  padding: 0;
}
.cid-sCXHoxAyoi .dropdown-item,
.cid-sCXHoxAyoi .nav-link,
.cid-sCXHoxAyoi .brand-name {
  font-style: normal;
}
.cid-sCXHoxAyoi .dropdown-item:hover,
.cid-sCXHoxAyoi .nav-link:hover,
.cid-sCXHoxAyoi .brand-name:hover {
  color: #ff3366 !important;
}
.cid-sCXHoxAyoi .dropdown-menu {
  background-color: #0a1c44;
}
.cid-sCXHoxAyoi .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-sCXHoxAyoi .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-sCXHoxAyoi .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-sCXHoxAyoi .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sCXHoxAyoi .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sCXHoxAyoi .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-sCXHoxAyoi .content-text {
  margin-bottom: 0;
}
.cid-sCXHoxAyoi .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sCXHoxAyoi .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sCXHoxAyoi .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sCXHoxAyoi .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sCXHoxAyoi .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sCXHoxAyoi .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sCXHoxAyoi .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sCXHoxAyoi .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sCXHoxAyoi .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCXHoxAyoi .nav-dropdown .link {
  font-weight: 400;
}
.cid-sCXHoxAyoi .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sCXHoxAyoi .content-right-side {
  text-align: center;
}
.cid-sCXHoxAyoi .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sCXHoxAyoi .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sCXHoxAyoi .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sCXHoxAyoi .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCXHoxAyoi .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCXHoxAyoi .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sCXHoxAyoi .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sCXHoxAyoi .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sCXHoxAyoi .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sCXHoxAyoi .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sCXHoxAyoi .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-sCXHoxAyoi .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sCXHoxAyoi .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-sCXHoxAyoi .navbar {
    display: block;
    padding: 0;
  }
  .cid-sCXHoxAyoi .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sCXHoxAyoi .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sCXHoxAyoi .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sCXHoxAyoi .navbar-toggler {
    display: none;
  }
  .cid-sCXHoxAyoi .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sCXHoxAyoi .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sCXHoxAyoi .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sCXHoxAyoi .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sCXHoxAyoi .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sCXHoxAyoi .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-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sCXHoxAyoi .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sCXHoxAyoi .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sCXHoxAyoi button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-sCXHoxAyoi button.navbar-toggler:focus {
  outline: none;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCXHoxAyoi .collapsed .btn {
  display: flex;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sCXHoxAyoi .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sCXHoxAyoi .collapsed button.navbar-toggler {
  display: block;
}
.cid-sCXHoxAyoi .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sCXHoxAyoi .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sCXHoxAyoi .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sCXHoxAyoi .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-sCXHoxAyoi .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-sCXHoxAyoi .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-sCXHoxAyoi .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sCXHoxAyoi .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-sCXHoxAyoi .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing,
  .cid-sCXHoxAyoi .navbar-collapse.show {
    display: block !important;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-nav,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-buttons,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sCXHoxAyoi img {
    height: 3.8rem !important;
  }
  .cid-sCXHoxAyoi .btn {
    display: flex;
  }
  .cid-sCXHoxAyoi button.navbar-toggler {
    display: block;
  }
  .cid-sCXHoxAyoi .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sCXHoxAyoi .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sCXHoxAyoi .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sCXHoxAyoi .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sCXHoxAyoi .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sCXHoxAyoi .nav-link:focus {
  outline: none;
}
.cid-sCXHoxAyoi .navbar-toggler {
  position: relative;
}
.cid-sCXHoxAyoi .dropdown-item.active,
.cid-sCXHoxAyoi .dropdown-item:active {
  color: initial;
}
.cid-sCXHoxAyoi .widget-title,
.cid-sCXHoxAyoi .widget-icon {
  color: #ffffff;
}
.cid-sCXHoxAyoi .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-sCXHoxAyoi .menu-logo {
    display: none;
  }
  .cid-sCXHoxAyoi .navbar {
    padding: 0;
  }
  .cid-sCXHoxAyoi .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sCXHoxAyoi button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-sDkq0x9tNo {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-3-1920x1280.jpg");
}
.cid-sDkq0x9tNo .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-sDkq0x9tNo .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sDkq0x9tNo .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sDkq0x9tNo .mbr-text {
    text-align: center;
  }
}
.cid-sDkq0x9tNo .mbr-text,
.cid-sDkq0x9tNo .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-sDkq0x9tNo H1 {
  color: #efeeee;
}
.cid-sAXCYqTGjE {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1-1920x1440.jpg");
}
.cid-sAXCYqTGjE .card-wrapper {
  position: relative;
  margin: 0.5rem;
}
.cid-sAXCYqTGjE .card-wrapper:hover img {
  transform: scale(1.1);
}
@media (max-width: 1400px) {
  .cid-sAXCYqTGjE .card-wrapper {
    margin: 0rem;
  }
}
.cid-sAXCYqTGjE .card {
  height: fit-content;
}
@media (min-width: 767px) {
  .cid-sAXCYqTGjE .row {
    padding: 0 4rem;
  }
}
.cid-sAXCYqTGjE .icon {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1.5rem;
  transition: 0.3s;
  background: #86e0ff;
}
.cid-sAXCYqTGjE .icon:hover {
  padding-right: 1rem;
  padding-left: 2rem;
}
.cid-sAXCYqTGjE .card-box {
  padding: 3rem 3rem 4rem 3rem;
  width: 100%;
}
.cid-sAXCYqTGjE .card1 {
  background-color: #073b4c;
}
.cid-sAXCYqTGjE .card2 {
  background-color: #073b4c;
}
.cid-sAXCYqTGjE .card3 {
  background-color: #073b4c;
}
.cid-sAXCYqTGjE .card4 {
  background-color: #073b4c;
}
.cid-sAXCYqTGjE img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
}
.cid-sAXCYqTGjE .img-wrap {
  max-height: 200px;
  overflow: hidden;
}
.cid-sAXCYqTGjE .container {
  max-width: 1500px;
}
.cid-sAXCYqTGjE .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sAXCYqTGjE .mbr-iconfont {
  font-size: 1.3rem;
  color: #000000;
  display: flex;
  justify-content: center;
}
.cid-sAXCYqTGjE P {
  color: #c1c1c1;
}
@media (max-width: 1200px) {
  .cid-sAXCYqTGjE .img-wrap {
    max-height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-sAXCYqTGjE .card-box {
    margin: 0rem;
    padding: 2rem 2rem 6rem 2rem;
  }
  .cid-sAXCYqTGjE .col2,
  .cid-sAXCYqTGjE .col3,
  .cid-sAXCYqTGjE .col4 {
    margin-top: 0rem;
  }
  .cid-sAXCYqTGjE .img-wrap {
    max-height: 180px;
  }
}
@media (max-width: 767px) {
  .cid-sAXCYqTGjE .card-box {
    padding: 1rem 2rem 5rem 1rem;
  }
  .cid-sAXCYqTGjE .number {
    margin: auto;
  }
}
.cid-sAXCYqTGjE .mbr-text {
  color: #cccccc;
}
.cid-sAXCYqTGjE .text2 {
  color: #ffffff;
}
.cid-sAXCYqTGjE .text3 {
  color: #ffffff;
}
.cid-sAXCYqTGjE .title2 {
  color: #ffffff;
  text-align: left;
}
.cid-sAXCYqTGjE .title1 {
  color: #ffffff;
  text-align: center;
}
.cid-sAXCYqTGjE .title3 {
  color: #ffffff;
  text-align: left;
}
.cid-sAXCYqTGjE .title4 {
  color: #ffffff;
}
.cid-sAXCYqTGjE .text4 {
  color: #ffffff;
}
.cid-sAXCYqTGjE .text1 {
  color: #ffffff;
  text-align: left;
}
.cid-sAXCYqTGjE .title3 B {
  color: #c1c1c1;
}
.cid-sAXCYqTGjE H1 {
  color: #073b4c;
}
.cid-rpSfqvjGS3 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1-1920x1440.jpg");
}
.cid-rpSfqvjGS3 img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-rpSfqvjGS3 img:hover {
  transform: scale(1.1);
}
.cid-rpSfqvjGS3 .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-rpSfqvjGS3 h2 {
  padding: 0;
  margin: 0;
}
.cid-rpSfqvjGS3 .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rpSfqvjGS3 .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-rpSfqvjGS3 .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-rpSfqvjGS3 .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
}
.cid-rpSfqvjGS3 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-rpSfqvjGS3 .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rpSfqvjGS3 .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-rpSfqvjGS3 .text-col {
    padding: 2rem 1rem;
  }
}
.cid-rpSfqvjGS3 H2 {
  color: #333333;
}
.cid-rpSfqvjGS3 .mbr-text {
  color: #000000;
}
.cid-sCXC9QIp9L {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-sCXC9QIp9L .container {
  max-width: 1400px;
}
.cid-sCXC9QIp9L .card-img2 span {
  padding-top: 6px;
}
.cid-sCXC9QIp9L .soc-item a {
  padding-top: 5px;
}
.cid-sCXC9QIp9L .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-sCXC9QIp9L .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sCXC9QIp9L .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sCXC9QIp9L .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sCXC9QIp9L svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sCXC9QIp9L #e2_shape {
  fill: #2681cd !important;
}
.cid-sCXC9QIp9L .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-sCXC9QIp9L .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sCXC9QIp9L .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sCXC9QIp9L .card-img {
  width: auto;
}
.cid-sCXC9QIp9L .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sCXC9QIp9L .soc-item span {
  font-size: 1.4rem;
}
.cid-sCXC9QIp9L .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-sCXC9QIp9L .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sCXC9QIp9L .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sCXC9QIp9L .media-wrap {
  margin-bottom: 1rem;
}
.cid-sCXC9QIp9L .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sCXC9QIp9L img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-sCXC9QIp9L .item {
    justify-content: center;
  }
  .cid-sCXC9QIp9L .quote::after {
    left: 60px;
  }
}
.cid-sCXC9QIp9L .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sCXC9QIp9L .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCXC9QIp9L .text1 {
  color: #ffffff;
}
.cid-sCXC9QIp9L .item-title {
  color: #ffffff;
}
.cid-sCXC9QIp9L H5 {
  color: #ffffff;
  text-align: left;
}
.cid-sCXC9QIp9L .theme {
  color: #ffffff;
}
.cid-sCXC9QIp9L .copyright > p {
  color: #ff3366;
}
.cid-sCXC9QIp9L .text2 {
  color: #ffffff;
}
.cid-sD0NXnz24V {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-sD0NXnz24V .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-uZ87kmmZp1.popup-builder {
  background-color: #ffffff;
}
.cid-uZ87kmmZp1.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uZ87kmmZp1.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uZ87kmmZp1 .modal-content,
.cid-uZ87kmmZp1 .modal-dialog {
  height: auto;
}
.cid-uZ87kmmZp1 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uZ87kmmZp1 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uZ87kmmZp1 .form-wrapper .mbr-form .form-group,
  .cid-uZ87kmmZp1 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uZ87kmmZp1 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uZ87kmmZp1 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uZ87kmmZp1 .mbr-text {
  text-align: center;
}
.cid-uZ87kmmZp1 .pt-0 {
  padding-top: 0 !important;
}
.cid-uZ87kmmZp1 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uZ87kmmZp1 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uZ87kmmZp1 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uZ87kmmZp1 .modal-open {
  overflow: hidden;
}
.cid-uZ87kmmZp1 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uZ87kmmZp1 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uZ87kmmZp1 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uZ87kmmZp1 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uZ87kmmZp1 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uZ87kmmZp1 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uZ87kmmZp1 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uZ87kmmZp1 .modal-content {
  background: #efeeee;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uZ87kmmZp1 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uZ87kmmZp1 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uZ87kmmZp1 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uZ87kmmZp1 .modal-backdrop.show {
  opacity: .5;
}
.cid-uZ87kmmZp1 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uZ87kmmZp1 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ87kmmZp1 .modal-header {
    padding: 1rem;
  }
}
.cid-uZ87kmmZp1 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uZ87kmmZp1 .modal-header .close svg {
  fill: #073b4c;
}
.cid-uZ87kmmZp1 .modal-header .close:hover {
  opacity: 1;
}
.cid-uZ87kmmZp1 .modal-header .close:focus {
  outline: none;
}
.cid-uZ87kmmZp1 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uZ87kmmZp1 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uZ87kmmZp1 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ87kmmZp1 .modal-body {
    padding: 1rem;
  }
}
.cid-uZ87kmmZp1 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uZ87kmmZp1 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ87kmmZp1 .modal-footer {
    padding: 1rem;
  }
}
.cid-uZ87kmmZp1 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uZ87kmmZp1 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uZ87kmmZp1 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uZ87kmmZp1 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uZ87kmmZp1 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uZ87kmmZp1 .modal-lg,
  .cid-uZ87kmmZp1 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uZ87kmmZp1 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uZ87kmmZp1 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uZ87kmmZp1 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uZ87kmmZp1 .form-group {
  margin-bottom: 1rem;
}
.cid-uZ87kmmZp1 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uZ87kmmZp1 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uZ87kmmZp1 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uZ87kmmZp1 .mbr-section-btn {
  margin: 0;
}
.cid-uZ87kmmZp1 .mbr-section-btn .btn {
  margin: 0;
}
.cid-sDjO0sS3pA {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/videonag-1-848x137.png");
}
@media (min-width: 992px) {
  .cid-sDjO0sS3pA .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sDjO0sS3pA .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sDjO0sS3pA .mbr-text {
    text-align: center;
  }
}
.cid-sDjO0sS3pA .mbr-text,
.cid-sDjO0sS3pA .mbr-section-btn {
  color: #ffffff;
}
.cid-sCX3uvHFvH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1080.jpeg");
}
.cid-sCX3uvHFvH .card-box {
  background-color: #073b4c;
  padding: 4rem 4rem;
  margin: 0.5rem;
  width: 100%;
}
@media (min-width: 767px) {
  .cid-sCX3uvHFvH .row {
    padding: 0 4rem;
  }
}
.cid-sCX3uvHFvH .container {
  max-width: 1500px;
}
.cid-sCX3uvHFvH .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sCX3uvHFvH .mbr-iconfont {
  font-size: 9rem;
  color: #86e0ff;
  padding-bottom: 2rem;
  display: block;
}
.cid-sCX3uvHFvH P {
  color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-sCX3uvHFvH .card-box {
    margin: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-sCX3uvHFvH .card-box {
    padding: 2rem 1rem;
  }
}
.cid-sCX3uvHFvH .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-sDl4CEcYjc {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fit-930-519-false-crop-1133-673-0-0-q90-145492-89c241c559-1-930x519.jpeg");
}
.cid-sDl4CEcYjc .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-sDl4CEcYjc .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sDl4CEcYjc .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sDl4CEcYjc .mbr-text {
    text-align: center;
  }
}
.cid-sDl4CEcYjc .mbr-text,
.cid-sDl4CEcYjc .mbr-section-btn {
  color: #ffffff;
}
.cid-sDl3eGMpcP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1080.jpeg");
}
.cid-sDl3eGMpcP .card-box {
  background-color: #073b4c;
  padding: 4rem 4rem;
  margin: 0.5rem;
  width: 100%;
}
@media (min-width: 767px) {
  .cid-sDl3eGMpcP .row {
    padding: 0 4rem;
  }
}
.cid-sDl3eGMpcP .container {
  max-width: 1500px;
}
.cid-sDl3eGMpcP .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sDl3eGMpcP .mbr-iconfont {
  font-size: 9rem;
  color: #86e0ff;
  padding-bottom: 2rem;
  display: block;
}
.cid-sDl3eGMpcP P {
  color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-sDl3eGMpcP .card-box {
    margin: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-sDl3eGMpcP .card-box {
    padding: 2rem 1rem;
  }
}
.cid-sDl3eGMpcP .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-sCX36jMPws {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1080.jpeg");
}
.cid-sCX36jMPws img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-sCX36jMPws img:hover {
  transform: scale(1.1);
}
.cid-sCX36jMPws .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-sCX36jMPws h2 {
  padding: 0;
  margin: 0;
}
.cid-sCX36jMPws .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sCX36jMPws .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-sCX36jMPws .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-sCX36jMPws .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-sCX36jMPws .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sCX36jMPws .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sCX36jMPws .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-sCX36jMPws .text-col {
    padding: 2rem 1rem;
  }
}
.cid-sCX36jMPws H2 {
  color: #333333;
}
.cid-sCX36jMPws .mbr-text {
  color: #000000;
}
.cid-sD0VU0IFVF {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-sD0VU0IFVF .container {
  max-width: 1400px;
}
.cid-sD0VU0IFVF .card-img2 span {
  padding-top: 6px;
}
.cid-sD0VU0IFVF .soc-item a {
  padding-top: 5px;
}
.cid-sD0VU0IFVF .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-sD0VU0IFVF .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sD0VU0IFVF .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sD0VU0IFVF .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sD0VU0IFVF svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sD0VU0IFVF #e2_shape {
  fill: #2681cd !important;
}
.cid-sD0VU0IFVF .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-sD0VU0IFVF .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sD0VU0IFVF .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sD0VU0IFVF .card-img {
  width: auto;
}
.cid-sD0VU0IFVF .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sD0VU0IFVF .soc-item span {
  font-size: 1.4rem;
}
.cid-sD0VU0IFVF .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-sD0VU0IFVF .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sD0VU0IFVF .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sD0VU0IFVF .media-wrap {
  margin-bottom: 1rem;
}
.cid-sD0VU0IFVF .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sD0VU0IFVF img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-sD0VU0IFVF .item {
    justify-content: center;
  }
  .cid-sD0VU0IFVF .quote::after {
    left: 60px;
  }
}
.cid-sD0VU0IFVF .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sD0VU0IFVF .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sD0VU0IFVF .text1 {
  color: #ffffff;
}
.cid-sD0VU0IFVF .item-title {
  color: #ffffff;
}
.cid-sD0VU0IFVF H5 {
  color: #ffffff;
  text-align: left;
}
.cid-sD0VU0IFVF .theme {
  color: #ffffff;
}
.cid-sD0VU0IFVF .copyright > p {
  color: #ff3366;
}
.cid-sD0VU0IFVF .text2 {
  color: #ffffff;
}
.cid-sCXHoxAyoi .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-sCXHoxAyoi .navbar-fixed-top {
  padding-top: 0;
}
.cid-sCXHoxAyoi .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sCXHoxAyoi .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-sCXHoxAyoi .dropdown-item {
  padding: 0;
}
.cid-sCXHoxAyoi .dropdown-item,
.cid-sCXHoxAyoi .nav-link,
.cid-sCXHoxAyoi .brand-name {
  font-style: normal;
}
.cid-sCXHoxAyoi .dropdown-item:hover,
.cid-sCXHoxAyoi .nav-link:hover,
.cid-sCXHoxAyoi .brand-name:hover {
  color: #ff3366 !important;
}
.cid-sCXHoxAyoi .dropdown-menu {
  background-color: #0a1c44;
}
.cid-sCXHoxAyoi .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-sCXHoxAyoi .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-sCXHoxAyoi .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-sCXHoxAyoi .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sCXHoxAyoi .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sCXHoxAyoi .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-sCXHoxAyoi .content-text {
  margin-bottom: 0;
}
.cid-sCXHoxAyoi .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sCXHoxAyoi .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sCXHoxAyoi .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sCXHoxAyoi .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sCXHoxAyoi .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sCXHoxAyoi .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sCXHoxAyoi .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sCXHoxAyoi .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sCXHoxAyoi .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCXHoxAyoi .nav-dropdown .link {
  font-weight: 400;
}
.cid-sCXHoxAyoi .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sCXHoxAyoi .content-right-side {
  text-align: center;
}
.cid-sCXHoxAyoi .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sCXHoxAyoi .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sCXHoxAyoi .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sCXHoxAyoi .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCXHoxAyoi .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCXHoxAyoi .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sCXHoxAyoi .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sCXHoxAyoi .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sCXHoxAyoi .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sCXHoxAyoi .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sCXHoxAyoi .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-sCXHoxAyoi .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sCXHoxAyoi .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-sCXHoxAyoi .navbar {
    display: block;
    padding: 0;
  }
  .cid-sCXHoxAyoi .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sCXHoxAyoi .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sCXHoxAyoi .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sCXHoxAyoi .navbar-toggler {
    display: none;
  }
  .cid-sCXHoxAyoi .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sCXHoxAyoi .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sCXHoxAyoi .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sCXHoxAyoi .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sCXHoxAyoi .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sCXHoxAyoi .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-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sCXHoxAyoi .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sCXHoxAyoi .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sCXHoxAyoi button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-sCXHoxAyoi button.navbar-toggler:focus {
  outline: none;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCXHoxAyoi .collapsed .btn {
  display: flex;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sCXHoxAyoi .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sCXHoxAyoi .collapsed button.navbar-toggler {
  display: block;
}
.cid-sCXHoxAyoi .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sCXHoxAyoi .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sCXHoxAyoi .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sCXHoxAyoi .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-sCXHoxAyoi .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-sCXHoxAyoi .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-sCXHoxAyoi .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sCXHoxAyoi .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-sCXHoxAyoi .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing,
  .cid-sCXHoxAyoi .navbar-collapse.show {
    display: block !important;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-nav,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-buttons,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sCXHoxAyoi img {
    height: 3.8rem !important;
  }
  .cid-sCXHoxAyoi .btn {
    display: flex;
  }
  .cid-sCXHoxAyoi button.navbar-toggler {
    display: block;
  }
  .cid-sCXHoxAyoi .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sCXHoxAyoi .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sCXHoxAyoi .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sCXHoxAyoi .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sCXHoxAyoi .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sCXHoxAyoi .nav-link:focus {
  outline: none;
}
.cid-sCXHoxAyoi .navbar-toggler {
  position: relative;
}
.cid-sCXHoxAyoi .dropdown-item.active,
.cid-sCXHoxAyoi .dropdown-item:active {
  color: initial;
}
.cid-sCXHoxAyoi .widget-title,
.cid-sCXHoxAyoi .widget-icon {
  color: #ffffff;
}
.cid-sCXHoxAyoi .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-sCXHoxAyoi .menu-logo {
    display: none;
  }
  .cid-sCXHoxAyoi .navbar {
    padding: 0;
  }
  .cid-sCXHoxAyoi .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sCXHoxAyoi button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-sD0NXnz24V {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-sD0NXnz24V .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-v22OEXtBLR.popup-builder {
  background-color: #ffffff;
}
.cid-v22OEXtBLR.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v22OEXtBLR.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v22OEXtBLR .modal-content,
.cid-v22OEXtBLR .modal-dialog {
  height: auto;
}
.cid-v22OEXtBLR .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v22OEXtBLR .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v22OEXtBLR .form-wrapper .mbr-form .form-group,
  .cid-v22OEXtBLR .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v22OEXtBLR .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v22OEXtBLR .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v22OEXtBLR .mbr-text {
  text-align: center;
}
.cid-v22OEXtBLR .pt-0 {
  padding-top: 0 !important;
}
.cid-v22OEXtBLR .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v22OEXtBLR .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v22OEXtBLR .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v22OEXtBLR .modal-open {
  overflow: hidden;
}
.cid-v22OEXtBLR .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v22OEXtBLR .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v22OEXtBLR .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v22OEXtBLR .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v22OEXtBLR .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v22OEXtBLR .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v22OEXtBLR .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v22OEXtBLR .modal-content {
  background: #efeeee;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v22OEXtBLR .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v22OEXtBLR .modal-backdrop.fade {
  opacity: 0;
}
.cid-v22OEXtBLR .modal-backdrop.show {
  opacity: .5;
}
.cid-v22OEXtBLR .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-v22OEXtBLR .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v22OEXtBLR .modal-header .close:hover {
  opacity: 1;
}
.cid-v22OEXtBLR .modal-header .close:focus {
  outline: none;
}
.cid-v22OEXtBLR .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #073b4c;
}
.cid-v22OEXtBLR .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-v22OEXtBLR .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-v22OEXtBLR .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v22OEXtBLR .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v22OEXtBLR .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v22OEXtBLR .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v22OEXtBLR .modal-sm {
    max-width: 300px;
  }
  .cid-v22OEXtBLR .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-v22OEXtBLR .modal-lg,
  .cid-v22OEXtBLR .modal-xl {
    max-width: 800px;
  }
  .cid-v22OEXtBLR .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-v22OEXtBLR .modal-xl {
    max-width: 1140px;
  }
  .cid-v22OEXtBLR .container {
    max-width: 1140px;
  }
}
.cid-v22OEXtBLR .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-v22OEXtBLR .container {
    max-width: 720px;
  }
}
.cid-v22OEXtBLR .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v22OEXtBLR .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v22OEXtBLR .form-group {
  margin-bottom: 1rem;
}
.cid-v22OEXtBLR .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v22OEXtBLR .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v22OEXtBLR .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sDjHVurd8o {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/913478d70d21d52c509e4ed1e5b89152-1920x1280.jpeg");
}
@media (min-width: 992px) {
  .cid-sDjHVurd8o .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sDjHVurd8o .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sDjHVurd8o .mbr-text {
    text-align: center;
  }
}
.cid-sDjHVurd8o .mbr-text,
.cid-sDjHVurd8o .mbr-section-btn {
  color: #ffffff;
}
.cid-rpSfqvjGS3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1-1920x1440.jpg");
}
.cid-rpSfqvjGS3 img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-rpSfqvjGS3 img:hover {
  transform: scale(1.1);
}
.cid-rpSfqvjGS3 .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-rpSfqvjGS3 h2 {
  padding: 0;
  margin: 0;
}
.cid-rpSfqvjGS3 .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rpSfqvjGS3 .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-rpSfqvjGS3 .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-rpSfqvjGS3 .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
}
.cid-rpSfqvjGS3 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-rpSfqvjGS3 .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rpSfqvjGS3 .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-rpSfqvjGS3 .text-col {
    padding: 2rem 1rem;
  }
}
.cid-rpSfqvjGS3 H2 {
  color: #333333;
}
.cid-rpSfqvjGS3 .mbr-text {
  color: #000000;
}
.cid-rpSfqvjGS3 H1 {
  color: #000000;
}
.cid-sD0TyZ4bIz {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-sD0TyZ4bIz .container {
  max-width: 1400px;
}
.cid-sD0TyZ4bIz .card-img2 span {
  padding-top: 6px;
}
.cid-sD0TyZ4bIz .soc-item a {
  padding-top: 5px;
}
.cid-sD0TyZ4bIz .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-sD0TyZ4bIz .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sD0TyZ4bIz .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sD0TyZ4bIz .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sD0TyZ4bIz svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sD0TyZ4bIz #e2_shape {
  fill: #2681cd !important;
}
.cid-sD0TyZ4bIz .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-sD0TyZ4bIz .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sD0TyZ4bIz .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sD0TyZ4bIz .card-img {
  width: auto;
}
.cid-sD0TyZ4bIz .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sD0TyZ4bIz .soc-item span {
  font-size: 1.4rem;
}
.cid-sD0TyZ4bIz .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-sD0TyZ4bIz .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sD0TyZ4bIz .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sD0TyZ4bIz .media-wrap {
  margin-bottom: 1rem;
}
.cid-sD0TyZ4bIz .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sD0TyZ4bIz img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-sD0TyZ4bIz .item {
    justify-content: center;
  }
  .cid-sD0TyZ4bIz .quote::after {
    left: 60px;
  }
}
.cid-sD0TyZ4bIz .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sD0TyZ4bIz .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sD0TyZ4bIz .text1 {
  color: #ffffff;
}
.cid-sD0TyZ4bIz .item-title {
  color: #ffffff;
}
.cid-sD0TyZ4bIz H5 {
  color: #ffffff;
  text-align: left;
}
.cid-sD0TyZ4bIz .theme {
  color: #ffffff;
}
.cid-sD0TyZ4bIz .copyright > p {
  color: #ff3366;
}
.cid-sD0TyZ4bIz .text2 {
  color: #ffffff;
}
.cid-sCXHoxAyoi .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-sCXHoxAyoi .navbar-fixed-top {
  padding-top: 0;
}
.cid-sCXHoxAyoi .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sCXHoxAyoi .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-sCXHoxAyoi .dropdown-item {
  padding: 0;
}
.cid-sCXHoxAyoi .dropdown-item,
.cid-sCXHoxAyoi .nav-link,
.cid-sCXHoxAyoi .brand-name {
  font-style: normal;
}
.cid-sCXHoxAyoi .dropdown-item:hover,
.cid-sCXHoxAyoi .nav-link:hover,
.cid-sCXHoxAyoi .brand-name:hover {
  color: #ff3366 !important;
}
.cid-sCXHoxAyoi .dropdown-menu {
  background-color: #0a1c44;
}
.cid-sCXHoxAyoi .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-sCXHoxAyoi .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-sCXHoxAyoi .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-sCXHoxAyoi .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sCXHoxAyoi .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sCXHoxAyoi .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-sCXHoxAyoi .content-text {
  margin-bottom: 0;
}
.cid-sCXHoxAyoi .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sCXHoxAyoi .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sCXHoxAyoi .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sCXHoxAyoi .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sCXHoxAyoi .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sCXHoxAyoi .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sCXHoxAyoi .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sCXHoxAyoi .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sCXHoxAyoi .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCXHoxAyoi .nav-dropdown .link {
  font-weight: 400;
}
.cid-sCXHoxAyoi .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sCXHoxAyoi .content-right-side {
  text-align: center;
}
.cid-sCXHoxAyoi .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sCXHoxAyoi .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sCXHoxAyoi .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sCXHoxAyoi .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCXHoxAyoi .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCXHoxAyoi .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sCXHoxAyoi .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sCXHoxAyoi .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sCXHoxAyoi .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sCXHoxAyoi .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sCXHoxAyoi .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-sCXHoxAyoi .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sCXHoxAyoi .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-sCXHoxAyoi .navbar {
    display: block;
    padding: 0;
  }
  .cid-sCXHoxAyoi .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sCXHoxAyoi .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sCXHoxAyoi .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sCXHoxAyoi .navbar-toggler {
    display: none;
  }
  .cid-sCXHoxAyoi .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sCXHoxAyoi .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sCXHoxAyoi .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sCXHoxAyoi .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sCXHoxAyoi .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sCXHoxAyoi .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-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sCXHoxAyoi .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sCXHoxAyoi .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sCXHoxAyoi button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-sCXHoxAyoi button.navbar-toggler:focus {
  outline: none;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCXHoxAyoi .collapsed .btn {
  display: flex;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sCXHoxAyoi .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sCXHoxAyoi .collapsed button.navbar-toggler {
  display: block;
}
.cid-sCXHoxAyoi .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sCXHoxAyoi .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sCXHoxAyoi .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sCXHoxAyoi .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-sCXHoxAyoi .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-sCXHoxAyoi .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-sCXHoxAyoi .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sCXHoxAyoi .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-sCXHoxAyoi .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing,
  .cid-sCXHoxAyoi .navbar-collapse.show {
    display: block !important;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-nav,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-buttons,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sCXHoxAyoi img {
    height: 3.8rem !important;
  }
  .cid-sCXHoxAyoi .btn {
    display: flex;
  }
  .cid-sCXHoxAyoi button.navbar-toggler {
    display: block;
  }
  .cid-sCXHoxAyoi .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sCXHoxAyoi .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sCXHoxAyoi .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sCXHoxAyoi .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sCXHoxAyoi .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sCXHoxAyoi .nav-link:focus {
  outline: none;
}
.cid-sCXHoxAyoi .navbar-toggler {
  position: relative;
}
.cid-sCXHoxAyoi .dropdown-item.active,
.cid-sCXHoxAyoi .dropdown-item:active {
  color: initial;
}
.cid-sCXHoxAyoi .widget-title,
.cid-sCXHoxAyoi .widget-icon {
  color: #ffffff;
}
.cid-sCXHoxAyoi .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-sCXHoxAyoi .menu-logo {
    display: none;
  }
  .cid-sCXHoxAyoi .navbar {
    padding: 0;
  }
  .cid-sCXHoxAyoi .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sCXHoxAyoi button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-sD0NXnz24V {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-sD0NXnz24V .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-sDBFXQwzr8.popup-builder {
  background-color: #ffffff;
}
.cid-sDBFXQwzr8.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sDBFXQwzr8.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sDBFXQwzr8 .modal-content,
.cid-sDBFXQwzr8 .modal-dialog {
  height: auto;
}
.cid-sDBFXQwzr8 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sDBFXQwzr8 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sDBFXQwzr8 .form-wrapper .mbr-form .form-group,
  .cid-sDBFXQwzr8 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sDBFXQwzr8 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sDBFXQwzr8 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sDBFXQwzr8 .mbr-text {
  text-align: center;
}
.cid-sDBFXQwzr8 .pt-0 {
  padding-top: 0 !important;
}
.cid-sDBFXQwzr8 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sDBFXQwzr8 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sDBFXQwzr8 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sDBFXQwzr8 .modal-open {
  overflow: hidden;
}
.cid-sDBFXQwzr8 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sDBFXQwzr8 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sDBFXQwzr8 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sDBFXQwzr8 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sDBFXQwzr8 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sDBFXQwzr8 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sDBFXQwzr8 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sDBFXQwzr8 .modal-content {
  background: #efeeee;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sDBFXQwzr8 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sDBFXQwzr8 .modal-backdrop.fade {
  opacity: 0;
}
.cid-sDBFXQwzr8 .modal-backdrop.show {
  opacity: .5;
}
.cid-sDBFXQwzr8 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sDBFXQwzr8 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sDBFXQwzr8 .modal-header .close:hover {
  opacity: 1;
}
.cid-sDBFXQwzr8 .modal-header .close:focus {
  outline: none;
}
.cid-sDBFXQwzr8 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #073b4c;
}
.cid-sDBFXQwzr8 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sDBFXQwzr8 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sDBFXQwzr8 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sDBFXQwzr8 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sDBFXQwzr8 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sDBFXQwzr8 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sDBFXQwzr8 .modal-sm {
    max-width: 300px;
  }
  .cid-sDBFXQwzr8 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sDBFXQwzr8 .modal-lg,
  .cid-sDBFXQwzr8 .modal-xl {
    max-width: 800px;
  }
  .cid-sDBFXQwzr8 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sDBFXQwzr8 .modal-xl {
    max-width: 1140px;
  }
  .cid-sDBFXQwzr8 .container {
    max-width: 1140px;
  }
}
.cid-sDBFXQwzr8 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sDBFXQwzr8 .container {
    max-width: 720px;
  }
}
.cid-sDBFXQwzr8 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sDBFXQwzr8 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sDBFXQwzr8 .form-group {
  margin-bottom: 1rem;
}
.cid-sDBFXQwzr8 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sDBFXQwzr8 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sDBFXQwzr8 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sD0YFKbbfR {
  padding-top: 120px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/iptv-1920-1920x507.jpeg");
}
@media (min-width: 992px) {
  .cid-sD0YFKbbfR .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sD0YFKbbfR .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sD0YFKbbfR .mbr-text {
    text-align: center;
  }
}
.cid-sD0YFKbbfR .mbr-text,
.cid-sD0YFKbbfR .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-sD0YFKbbfR H3 {
  text-align: center;
}
.cid-uPjqRhcMwD {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPjqRhcMwD .row {
  align-items: center;
}
.cid-uPjqRhcMwD .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uPjqRhcMwD .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uPjqRhcMwD .header-text {
    margin-bottom: 20px;
  }
}
.cid-uPjqRhcMwD .mbr-section-title {
  width: 100%;
  color: #111111;
  margin-bottom: 8px;
}
.cid-uPjqRhcMwD .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-sCXitAxZR6 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x912.jpg");
}
.cid-sCXitAxZR6 img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-sCXitAxZR6 img:hover {
  transform: scale(1.1);
}
.cid-sCXitAxZR6 .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-sCXitAxZR6 h2 {
  padding: 0;
  margin: 0;
}
.cid-sCXitAxZR6 .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sCXitAxZR6 .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-sCXitAxZR6 .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-sCXitAxZR6 .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-sCXitAxZR6 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sCXitAxZR6 .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sCXitAxZR6 .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-sCXitAxZR6 .text-col {
    padding: 2rem 1rem;
  }
}
.cid-sCXitAxZR6 H2 {
  color: #333333;
}
.cid-sCXitAxZR6 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uP8IdlNDe8 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #efeeee;
}
.cid-uP8IdlNDe8 table th {
  border-top: none;
  border-bottom: 1px solid #149dcc;
}
.cid-uP8IdlNDe8 table tfoot {
  border-top: 1px solid #149dcc;
}
.cid-uP8IdlNDe8 .mbr-section-subtitle {
  color: #767676;
}
.cid-uP8IdlNDe8 .container-table {
  margin: 0 auto;
}
.cid-uP8IdlNDe8 .scroll {
  overflow-x: auto;
}
.cid-uP8IdlNDe8 .dataTables_wrapper {
  display: block;
}
.cid-uP8IdlNDe8 .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-uP8IdlNDe8 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uP8IdlNDe8 .table {
  margin-top: 6px;
  border-top: none !important;
  border-bottom: none !important;
}
.cid-uP8IdlNDe8 .dataTables_filter {
  margin-bottom: 0.5rem;
}
.cid-uP8IdlNDe8 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uP8IdlNDe8 .dataTables_filter input {
  margin-left: 0.5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uP8IdlNDe8 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
.cid-uP8IdlNDe8 .body-item {
  color: #716c80;
}
.cid-uP8IdlNDe8 .body-item .mbr-iconfont {
  font-size: 1rem !important;
}
.cid-uP8IdlNDe8 .mbr-section-title {
  color: #57468b;
}
.cid-uP8IdlNDe8 .body-item1 {
  color: #121212;
  font-weight: 300;
  line-height: 1.2;
  text-align: left;
}
.cid-uP8IdlNDe8 .btn {
  padding: 0.4rem 1rem !important;
  margin-left: 0 !important;
}
.cid-uP8IdlNDe8 .btn:hover {
  -webkit-transform: none;
  transform: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.cid-uP8IdlNDe8 .foot-item1 {
  color: #149dcc;
  font-weight: 300;
  line-height: 1.5;
  font-size: 17px;
}
.cid-uP8IdlNDe8 .foot-item2 {
  font-size: 17px;
  color: rgba(18, 18, 18, 0.5);
  line-height: 1.2;
  font-weight: 300;
}
@media (max-width: 992px) {
  .cid-uP8IdlNDe8 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uP8IdlNDe8 .dataTables_filter {
    text-align: center;
  }
  .cid-uP8IdlNDe8 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uP8IdlNDe8 .second-item {
  color: #0f7699;
  font-weight: 200 !important;
  text-align: left;
}
.cid-uP8IdlNDe8 .head {
  font-weight: 400 !important;
  line-height: 1.2;
  padding-bottom: 3rem !important;
  color: #000000;
}
.cid-uP8IdlNDe8 .head-item1 {
  color: #000000;
  font-weight: 300 !important;
  line-height: 1.2;
}
.cid-uP8IdlNDe8 .sorting:before {
  display: none !important;
}
.cid-uP8IdlNDe8 .sorting:after {
  display: none !important;
}
.cid-uP8IdlNDe8 .sorting_desc:before {
  display: none !important;
}
.cid-uP8IdlNDe8 .sorting_desc:after {
  display: none !important;
}
.cid-uP8IdlNDe8 .sorting_asc:before {
  display: none !important;
}
.cid-uP8IdlNDe8 .sorting_asc:after {
  display: none !important;
}
.cid-uP8IdlNDe8 .table-borderless tbody + tbody,
.cid-uP8IdlNDe8 .table-borderless td,
.cid-uP8IdlNDe8 .table-borderless th,
.cid-uP8IdlNDe8 .table-borderless thead th {
  max-width: 50px;
}
@media (max-width: 768px) {
  .cid-uP8IdlNDe8 .head {
    padding-bottom: 0 !important;
    line-height: 1;
    font-weight: 300;
    font-size: 1rem;
  }
  .cid-uP8IdlNDe8 .second-item {
    font-size: 2.3rem !important;
  }
  .cid-uP8IdlNDe8 .body-item1 {
    font-size: 1rem !important;
  }
  .cid-uP8IdlNDe8 .btn {
    width: auto !important;
    padding: 0.5rem 0.7rem !important;
    vertical-align: middle;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .cid-uP8IdlNDe8 .second-item {
    font-size: 1rem !important;
  }
  .cid-uP8IdlNDe8 .foot-item1 {
    display: none;
  }
  .cid-uP8IdlNDe8 th {
    padding: 0;
  }
  .cid-uP8IdlNDe8 td {
    padding: 10px;
  }
}
@media (max-width: 540px) {
  .cid-uP8IdlNDe8 .head {
    font-size: 0.8rem;
    padding: 0;
  }
  .cid-uP8IdlNDe8 .second-item {
    font-size: 0.8rem !important;
    padding: 0;
  }
  .cid-uP8IdlNDe8 .body-item1 {
    font-size: 0.8rem !important;
    padding: 0;
  }
  .cid-uP8IdlNDe8 .btn {
    font-size: 10px !important;
    padding: 0rem 0.3rem !important;
  }
  .cid-uP8IdlNDe8 td {
    padding: 0 !important;
  }
  .cid-uP8IdlNDe8 .foot-item2 {
    font-size: 0.8rem;
  }
}
.cid-uPjqxUm4Ri {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPjqxUm4Ri .row {
  align-items: center;
}
.cid-uPjqxUm4Ri .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uPjqxUm4Ri .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uPjqxUm4Ri .header-text {
    margin-bottom: 20px;
  }
}
.cid-uPjqxUm4Ri .mbr-section-title {
  width: 100%;
  color: #111111;
  margin-bottom: 8px;
}
.cid-uPjqxUm4Ri .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-uP8PSeP8Ja {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/iptv-590x590.jpeg");
}
.cid-uP8PSeP8Ja img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-uP8PSeP8Ja img:hover {
  transform: scale(1.1);
}
.cid-uP8PSeP8Ja .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-uP8PSeP8Ja h2 {
  padding: 0;
  margin: 0;
}
.cid-uP8PSeP8Ja .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uP8PSeP8Ja .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-uP8PSeP8Ja .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-uP8PSeP8Ja .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 300px;
}
.cid-uP8PSeP8Ja .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-uP8PSeP8Ja .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0 !important;
}
.cid-uP8PSeP8Ja .mbr-iconfont {
  margin: 0 !important;
}
.cid-uP8PSeP8Ja .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uP8PSeP8Ja .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uP8PSeP8Ja .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-uP8PSeP8Ja .btn {
    padding: 0.6rem 0.8rem !important;
    min-width: 200px !important;
  }
  .cid-uP8PSeP8Ja .text-col {
    padding: 2rem 1rem;
  }
}
.cid-uP8PSeP8Ja H2 {
  color: #333333;
}
.cid-uP8PSeP8Ja .mbr-text {
  color: #767676;
}
.cid-uP8Y1zUtqg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efeeee;
}
.cid-uP8Y1zUtqg .container {
  max-width: 1500px;
}
.cid-uP8Y1zUtqg img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-uP8Y1zUtqg img:hover {
  transform: scale(1.1);
}
.cid-uP8Y1zUtqg .row {
  background: #ffffff;
}
.cid-uP8Y1zUtqg .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-uP8Y1zUtqg h2 {
  padding: 0;
  margin: 0;
}
.cid-uP8Y1zUtqg .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uP8Y1zUtqg .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-uP8Y1zUtqg .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-uP8Y1zUtqg .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-uP8Y1zUtqg .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-uP8Y1zUtqg .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-uP8Y1zUtqg .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uP8Y1zUtqg .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-uP8Y1zUtqg .row {
    margin: 0rem;
  }
  .cid-uP8Y1zUtqg .text-col {
    padding: 2rem 1rem;
  }
  .cid-uP8Y1zUtqg .number {
    margin-right: 2rem;
  }
  .cid-uP8Y1zUtqg .img-col {
    margin-bottom: 3rem;
  }
}
.cid-uP8Y1zUtqg H2 {
  color: #333333;
}
.cid-uP8Y1zUtqg .mbr-text {
  color: #767676;
}
.cid-sD0YCYtanN {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-sD0YCYtanN .container {
  max-width: 1400px;
}
.cid-sD0YCYtanN .card-img2 span {
  padding-top: 6px;
}
.cid-sD0YCYtanN .soc-item a {
  padding-top: 5px;
}
.cid-sD0YCYtanN .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-sD0YCYtanN .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sD0YCYtanN .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sD0YCYtanN .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sD0YCYtanN svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sD0YCYtanN #e2_shape {
  fill: #2681cd !important;
}
.cid-sD0YCYtanN .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-sD0YCYtanN .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sD0YCYtanN .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sD0YCYtanN .card-img {
  width: auto;
}
.cid-sD0YCYtanN .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sD0YCYtanN .soc-item span {
  font-size: 1.4rem;
}
.cid-sD0YCYtanN .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-sD0YCYtanN .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sD0YCYtanN .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sD0YCYtanN .media-wrap {
  margin-bottom: 1rem;
}
.cid-sD0YCYtanN .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sD0YCYtanN img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-sD0YCYtanN .item {
    justify-content: center;
  }
  .cid-sD0YCYtanN .quote::after {
    left: 60px;
  }
}
.cid-sD0YCYtanN .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sD0YCYtanN .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sD0YCYtanN .text1 {
  color: #ffffff;
}
.cid-sD0YCYtanN .item-title {
  color: #ffffff;
}
.cid-sD0YCYtanN H5 {
  color: #ffffff;
  text-align: left;
}
.cid-sD0YCYtanN .theme {
  color: #ffffff;
}
.cid-sD0YCYtanN .copyright > p {
  color: #ff3366;
}
.cid-sD0YCYtanN .text2 {
  color: #ffffff;
}
.cid-sCXHoxAyoi .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-sCXHoxAyoi .navbar-fixed-top {
  padding-top: 0;
}
.cid-sCXHoxAyoi .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sCXHoxAyoi .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-sCXHoxAyoi .dropdown-item {
  padding: 0;
}
.cid-sCXHoxAyoi .dropdown-item,
.cid-sCXHoxAyoi .nav-link,
.cid-sCXHoxAyoi .brand-name {
  font-style: normal;
}
.cid-sCXHoxAyoi .dropdown-item:hover,
.cid-sCXHoxAyoi .nav-link:hover,
.cid-sCXHoxAyoi .brand-name:hover {
  color: #ff3366 !important;
}
.cid-sCXHoxAyoi .dropdown-menu {
  background-color: #0a1c44;
}
.cid-sCXHoxAyoi .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-sCXHoxAyoi .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-sCXHoxAyoi .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-sCXHoxAyoi .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sCXHoxAyoi .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sCXHoxAyoi .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-sCXHoxAyoi .content-text {
  margin-bottom: 0;
}
.cid-sCXHoxAyoi .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sCXHoxAyoi .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sCXHoxAyoi .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sCXHoxAyoi .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sCXHoxAyoi .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sCXHoxAyoi .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sCXHoxAyoi .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sCXHoxAyoi .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sCXHoxAyoi .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCXHoxAyoi .nav-dropdown .link {
  font-weight: 400;
}
.cid-sCXHoxAyoi .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sCXHoxAyoi .content-right-side {
  text-align: center;
}
.cid-sCXHoxAyoi .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sCXHoxAyoi .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sCXHoxAyoi .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sCXHoxAyoi .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCXHoxAyoi .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCXHoxAyoi .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sCXHoxAyoi .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sCXHoxAyoi .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sCXHoxAyoi .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sCXHoxAyoi .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sCXHoxAyoi .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-sCXHoxAyoi .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sCXHoxAyoi .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-sCXHoxAyoi .navbar {
    display: block;
    padding: 0;
  }
  .cid-sCXHoxAyoi .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sCXHoxAyoi .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sCXHoxAyoi .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sCXHoxAyoi .navbar-toggler {
    display: none;
  }
  .cid-sCXHoxAyoi .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sCXHoxAyoi .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sCXHoxAyoi .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sCXHoxAyoi .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sCXHoxAyoi .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sCXHoxAyoi .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-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sCXHoxAyoi .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sCXHoxAyoi .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sCXHoxAyoi button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-sCXHoxAyoi button.navbar-toggler:focus {
  outline: none;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCXHoxAyoi .collapsed .btn {
  display: flex;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sCXHoxAyoi .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sCXHoxAyoi .collapsed button.navbar-toggler {
  display: block;
}
.cid-sCXHoxAyoi .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sCXHoxAyoi .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sCXHoxAyoi .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sCXHoxAyoi .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-sCXHoxAyoi .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-sCXHoxAyoi .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-sCXHoxAyoi .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sCXHoxAyoi .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-sCXHoxAyoi .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing,
  .cid-sCXHoxAyoi .navbar-collapse.show {
    display: block !important;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-nav,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-buttons,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sCXHoxAyoi img {
    height: 3.8rem !important;
  }
  .cid-sCXHoxAyoi .btn {
    display: flex;
  }
  .cid-sCXHoxAyoi button.navbar-toggler {
    display: block;
  }
  .cid-sCXHoxAyoi .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sCXHoxAyoi .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sCXHoxAyoi .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sCXHoxAyoi .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sCXHoxAyoi .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sCXHoxAyoi .nav-link:focus {
  outline: none;
}
.cid-sCXHoxAyoi .navbar-toggler {
  position: relative;
}
.cid-sCXHoxAyoi .dropdown-item.active,
.cid-sCXHoxAyoi .dropdown-item:active {
  color: initial;
}
.cid-sCXHoxAyoi .widget-title,
.cid-sCXHoxAyoi .widget-icon {
  color: #ffffff;
}
.cid-sCXHoxAyoi .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-sCXHoxAyoi .menu-logo {
    display: none;
  }
  .cid-sCXHoxAyoi .navbar {
    padding: 0;
  }
  .cid-sCXHoxAyoi .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sCXHoxAyoi button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-sD0NXnz24V {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-sD0NXnz24V .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-sDBJw93pbd.popup-builder {
  background-color: #ffffff;
}
.cid-sDBJw93pbd.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sDBJw93pbd.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sDBJw93pbd .modal-content,
.cid-sDBJw93pbd .modal-dialog {
  height: auto;
}
.cid-sDBJw93pbd .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sDBJw93pbd .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sDBJw93pbd .form-wrapper .mbr-form .form-group,
  .cid-sDBJw93pbd .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sDBJw93pbd .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sDBJw93pbd .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sDBJw93pbd .mbr-text {
  text-align: center;
}
.cid-sDBJw93pbd .pt-0 {
  padding-top: 0 !important;
}
.cid-sDBJw93pbd .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sDBJw93pbd .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sDBJw93pbd .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sDBJw93pbd .modal-open {
  overflow: hidden;
}
.cid-sDBJw93pbd .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sDBJw93pbd .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sDBJw93pbd .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sDBJw93pbd .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sDBJw93pbd .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sDBJw93pbd .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sDBJw93pbd .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sDBJw93pbd .modal-content {
  background: #efeeee;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sDBJw93pbd .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sDBJw93pbd .modal-backdrop.fade {
  opacity: 0;
}
.cid-sDBJw93pbd .modal-backdrop.show {
  opacity: .5;
}
.cid-sDBJw93pbd .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sDBJw93pbd .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sDBJw93pbd .modal-header .close:hover {
  opacity: 1;
}
.cid-sDBJw93pbd .modal-header .close:focus {
  outline: none;
}
.cid-sDBJw93pbd .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #073b4c;
}
.cid-sDBJw93pbd .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sDBJw93pbd .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sDBJw93pbd .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sDBJw93pbd .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sDBJw93pbd .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sDBJw93pbd .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sDBJw93pbd .modal-sm {
    max-width: 300px;
  }
  .cid-sDBJw93pbd .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sDBJw93pbd .modal-lg,
  .cid-sDBJw93pbd .modal-xl {
    max-width: 800px;
  }
  .cid-sDBJw93pbd .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sDBJw93pbd .modal-xl {
    max-width: 1140px;
  }
  .cid-sDBJw93pbd .container {
    max-width: 1140px;
  }
}
.cid-sDBJw93pbd .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sDBJw93pbd .container {
    max-width: 720px;
  }
}
.cid-sDBJw93pbd .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sDBJw93pbd .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sDBJw93pbd .form-group {
  margin-bottom: 1rem;
}
.cid-sDBJw93pbd .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sDBJw93pbd .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sDBJw93pbd .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uPjpLUUr6V {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-uPjpLUUr6V .media-container-row .mbr-text {
  color: #333333;
}
.cid-sDjTcr4HjU {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-sDjTcr4HjU .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-sDjTcr4HjU .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sDjTcr4HjU .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sDjTcr4HjU .mbr-text {
    text-align: center;
  }
}
.cid-sDjTcr4HjU .mbr-text,
.cid-sDjTcr4HjU .mbr-section-btn {
  color: #ffffff;
}
.cid-sDk8isWE6T {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #efeeee;
}
.cid-sDk8isWE6T .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sDk8isWE6T .row {
    flex-direction: column-reverse;
  }
  .cid-sDk8isWE6T .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sDk8isWE6T .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sDk8isWE6T .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-sDk8isWE6T .image-wrapper img {
  width: 100%;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  object-fit: cover;
  border-radius: 3rem;
}
.cid-sDk8isWE6T .card-title {
  color: #000000;
}
.cid-sDk8isWE6T .mbr-text,
.cid-sDk8isWE6T .mbr-section-btn {
  color: #000000;
}
.cid-sD2Ks6xT8I {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1347.jpeg");
}
.cid-sD2Ks6xT8I img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-sD2Ks6xT8I img:hover {
  transform: scale(1.1);
}
.cid-sD2Ks6xT8I .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-sD2Ks6xT8I h2 {
  padding: 0;
  margin: 0;
}
.cid-sD2Ks6xT8I .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sD2Ks6xT8I .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-sD2Ks6xT8I .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-sD2Ks6xT8I .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-sD2Ks6xT8I .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sD2Ks6xT8I .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sD2Ks6xT8I .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-sD2Ks6xT8I .text-col {
    padding: 2rem 1rem;
  }
}
.cid-sD2Ks6xT8I H2 {
  color: #333333;
}
.cid-sD2Ks6xT8I .mbr-text {
  color: #ffffff;
}
.cid-sD2Ks6xT8I H1 {
  color: #ffffff;
}
.cid-sDkftjI9M0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #efeeee;
}
.cid-sDkftjI9M0 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sDkftjI9M0 .row {
    flex-direction: column-reverse;
  }
  .cid-sDkftjI9M0 .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sDkftjI9M0 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sDkftjI9M0 .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-sDkftjI9M0 .image-wrapper img {
  width: 100%;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  object-fit: cover;
  border-radius: 3rem;
}
.cid-sDkftjI9M0 .card-title {
  color: #000000;
}
.cid-sDkftjI9M0 .mbr-text,
.cid-sDkftjI9M0 .mbr-section-btn {
  color: #000000;
}
.cid-sD8jbZcE5k {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-sD8jbZcE5k img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-sD8jbZcE5k img:hover {
  transform: scale(1.1);
}
.cid-sD8jbZcE5k .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-sD8jbZcE5k h2 {
  padding: 0;
  margin: 0;
}
.cid-sD8jbZcE5k .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sD8jbZcE5k .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-sD8jbZcE5k .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-sD8jbZcE5k .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 300px;
}
.cid-sD8jbZcE5k .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-sD8jbZcE5k .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0 !important;
}
.cid-sD8jbZcE5k .mbr-iconfont {
  margin: 0 !important;
}
.cid-sD8jbZcE5k .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sD8jbZcE5k .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sD8jbZcE5k .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-sD8jbZcE5k .btn {
    padding: 0.6rem 0.8rem !important;
    min-width: 200px !important;
  }
  .cid-sD8jbZcE5k .text-col {
    padding: 2rem 1rem;
  }
}
.cid-sD8jbZcE5k H2 {
  color: #333333;
}
.cid-sD8jbZcE5k .mbr-text {
  color: #ffffff;
}
.cid-sD8jbZcE5k H3 {
  color: #ffffff;
}
.cid-sD8jbZcE5k H1 {
  color: #ffffff;
}
.cid-sDfiOXO2TH {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efeeee;
}
.cid-sDfiOXO2TH span {
  color: #c1c1c1;
}
.cid-sDfiOXO2TH .flex-block {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-sDfiOXO2TH .flex-block span {
  font-size: 3rem;
  margin-right: 3rem;
}
@media (min-width: 577px) {
  .cid-sDfiOXO2TH .flex-block span {
    margin-left: 2rem;
  }
}
.cid-sDfiOXO2TH .block-quote {
  color: #000000;
}
.cid-sD10c9EB7R {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-sD10c9EB7R .container {
  max-width: 1400px;
}
.cid-sD10c9EB7R .card-img2 span {
  padding-top: 6px;
}
.cid-sD10c9EB7R .soc-item a {
  padding-top: 5px;
}
.cid-sD10c9EB7R .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-sD10c9EB7R .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sD10c9EB7R .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sD10c9EB7R .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sD10c9EB7R svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sD10c9EB7R #e2_shape {
  fill: #2681cd !important;
}
.cid-sD10c9EB7R .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-sD10c9EB7R .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sD10c9EB7R .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sD10c9EB7R .card-img {
  width: auto;
}
.cid-sD10c9EB7R .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sD10c9EB7R .soc-item span {
  font-size: 1.4rem;
}
.cid-sD10c9EB7R .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-sD10c9EB7R .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sD10c9EB7R .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sD10c9EB7R .media-wrap {
  margin-bottom: 1rem;
}
.cid-sD10c9EB7R .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sD10c9EB7R img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-sD10c9EB7R .item {
    justify-content: center;
  }
  .cid-sD10c9EB7R .quote::after {
    left: 60px;
  }
}
.cid-sD10c9EB7R .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sD10c9EB7R .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sD10c9EB7R .text1 {
  color: #ffffff;
}
.cid-sD10c9EB7R .item-title {
  color: #ffffff;
}
.cid-sD10c9EB7R H5 {
  color: #ffffff;
  text-align: left;
}
.cid-sD10c9EB7R .theme {
  color: #ffffff;
}
.cid-sD10c9EB7R .copyright > p {
  color: #ff3366;
}
.cid-sD10c9EB7R .text2 {
  color: #ffffff;
}
.cid-sCXHoxAyoi .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-sCXHoxAyoi .navbar-fixed-top {
  padding-top: 0;
}
.cid-sCXHoxAyoi .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sCXHoxAyoi .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-sCXHoxAyoi .dropdown-item {
  padding: 0;
}
.cid-sCXHoxAyoi .dropdown-item,
.cid-sCXHoxAyoi .nav-link,
.cid-sCXHoxAyoi .brand-name {
  font-style: normal;
}
.cid-sCXHoxAyoi .dropdown-item:hover,
.cid-sCXHoxAyoi .nav-link:hover,
.cid-sCXHoxAyoi .brand-name:hover {
  color: #ff3366 !important;
}
.cid-sCXHoxAyoi .dropdown-menu {
  background-color: #0a1c44;
}
.cid-sCXHoxAyoi .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-sCXHoxAyoi .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-sCXHoxAyoi .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-sCXHoxAyoi .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sCXHoxAyoi .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sCXHoxAyoi .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-sCXHoxAyoi .content-text {
  margin-bottom: 0;
}
.cid-sCXHoxAyoi .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sCXHoxAyoi .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sCXHoxAyoi .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sCXHoxAyoi .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sCXHoxAyoi .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sCXHoxAyoi .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sCXHoxAyoi .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sCXHoxAyoi .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sCXHoxAyoi .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCXHoxAyoi .nav-dropdown .link {
  font-weight: 400;
}
.cid-sCXHoxAyoi .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sCXHoxAyoi .content-right-side {
  text-align: center;
}
.cid-sCXHoxAyoi .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sCXHoxAyoi .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sCXHoxAyoi .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sCXHoxAyoi .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCXHoxAyoi .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCXHoxAyoi .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sCXHoxAyoi .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sCXHoxAyoi .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sCXHoxAyoi .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sCXHoxAyoi .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sCXHoxAyoi .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-sCXHoxAyoi .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sCXHoxAyoi .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-sCXHoxAyoi .navbar {
    display: block;
    padding: 0;
  }
  .cid-sCXHoxAyoi .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sCXHoxAyoi .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sCXHoxAyoi .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sCXHoxAyoi .navbar-toggler {
    display: none;
  }
  .cid-sCXHoxAyoi .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sCXHoxAyoi .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sCXHoxAyoi .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sCXHoxAyoi .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sCXHoxAyoi .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sCXHoxAyoi .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-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sCXHoxAyoi .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sCXHoxAyoi .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sCXHoxAyoi button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-sCXHoxAyoi button.navbar-toggler:focus {
  outline: none;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCXHoxAyoi .collapsed .btn {
  display: flex;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sCXHoxAyoi .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sCXHoxAyoi .collapsed button.navbar-toggler {
  display: block;
}
.cid-sCXHoxAyoi .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sCXHoxAyoi .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sCXHoxAyoi .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sCXHoxAyoi .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-sCXHoxAyoi .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-sCXHoxAyoi .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-sCXHoxAyoi .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sCXHoxAyoi .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-sCXHoxAyoi .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing,
  .cid-sCXHoxAyoi .navbar-collapse.show {
    display: block !important;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-nav,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-buttons,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sCXHoxAyoi img {
    height: 3.8rem !important;
  }
  .cid-sCXHoxAyoi .btn {
    display: flex;
  }
  .cid-sCXHoxAyoi button.navbar-toggler {
    display: block;
  }
  .cid-sCXHoxAyoi .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sCXHoxAyoi .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sCXHoxAyoi .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sCXHoxAyoi .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sCXHoxAyoi .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sCXHoxAyoi .nav-link:focus {
  outline: none;
}
.cid-sCXHoxAyoi .navbar-toggler {
  position: relative;
}
.cid-sCXHoxAyoi .dropdown-item.active,
.cid-sCXHoxAyoi .dropdown-item:active {
  color: initial;
}
.cid-sCXHoxAyoi .widget-title,
.cid-sCXHoxAyoi .widget-icon {
  color: #ffffff;
}
.cid-sCXHoxAyoi .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-sCXHoxAyoi .menu-logo {
    display: none;
  }
  .cid-sCXHoxAyoi .navbar {
    padding: 0;
  }
  .cid-sCXHoxAyoi .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sCXHoxAyoi button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-sDBMOoYVeX.popup-builder {
  background-color: #ffffff;
}
.cid-sDBMOoYVeX.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sDBMOoYVeX.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sDBMOoYVeX .modal-content,
.cid-sDBMOoYVeX .modal-dialog {
  height: auto;
}
.cid-sDBMOoYVeX .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sDBMOoYVeX .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sDBMOoYVeX .form-wrapper .mbr-form .form-group,
  .cid-sDBMOoYVeX .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sDBMOoYVeX .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sDBMOoYVeX .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sDBMOoYVeX .mbr-text {
  text-align: center;
}
.cid-sDBMOoYVeX .pt-0 {
  padding-top: 0 !important;
}
.cid-sDBMOoYVeX .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sDBMOoYVeX .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sDBMOoYVeX .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sDBMOoYVeX .modal-open {
  overflow: hidden;
}
.cid-sDBMOoYVeX .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sDBMOoYVeX .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sDBMOoYVeX .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sDBMOoYVeX .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sDBMOoYVeX .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sDBMOoYVeX .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sDBMOoYVeX .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sDBMOoYVeX .modal-content {
  background: #efeeee;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sDBMOoYVeX .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sDBMOoYVeX .modal-backdrop.fade {
  opacity: 0;
}
.cid-sDBMOoYVeX .modal-backdrop.show {
  opacity: .5;
}
.cid-sDBMOoYVeX .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sDBMOoYVeX .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sDBMOoYVeX .modal-header .close:hover {
  opacity: 1;
}
.cid-sDBMOoYVeX .modal-header .close:focus {
  outline: none;
}
.cid-sDBMOoYVeX .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #073b4c;
}
.cid-sDBMOoYVeX .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sDBMOoYVeX .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sDBMOoYVeX .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sDBMOoYVeX .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sDBMOoYVeX .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sDBMOoYVeX .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sDBMOoYVeX .modal-sm {
    max-width: 300px;
  }
  .cid-sDBMOoYVeX .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sDBMOoYVeX .modal-lg,
  .cid-sDBMOoYVeX .modal-xl {
    max-width: 800px;
  }
  .cid-sDBMOoYVeX .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sDBMOoYVeX .modal-xl {
    max-width: 1140px;
  }
  .cid-sDBMOoYVeX .container {
    max-width: 1140px;
  }
}
.cid-sDBMOoYVeX .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sDBMOoYVeX .container {
    max-width: 720px;
  }
}
.cid-sDBMOoYVeX .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sDBMOoYVeX .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sDBMOoYVeX .form-group {
  margin-bottom: 1rem;
}
.cid-sDBMOoYVeX .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sDBMOoYVeX .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sDBMOoYVeX .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v22Ogx1vsS.popup-builder {
  background-color: #ffffff;
}
.cid-v22Ogx1vsS.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v22Ogx1vsS.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v22Ogx1vsS .modal-content,
.cid-v22Ogx1vsS .modal-dialog {
  height: auto;
}
.cid-v22Ogx1vsS .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v22Ogx1vsS .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v22Ogx1vsS .form-wrapper .mbr-form .form-group,
  .cid-v22Ogx1vsS .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v22Ogx1vsS .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v22Ogx1vsS .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v22Ogx1vsS .mbr-text {
  text-align: center;
}
.cid-v22Ogx1vsS .pt-0 {
  padding-top: 0 !important;
}
.cid-v22Ogx1vsS .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v22Ogx1vsS .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v22Ogx1vsS .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v22Ogx1vsS .modal-open {
  overflow: hidden;
}
.cid-v22Ogx1vsS .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v22Ogx1vsS .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v22Ogx1vsS .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v22Ogx1vsS .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v22Ogx1vsS .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v22Ogx1vsS .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v22Ogx1vsS .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v22Ogx1vsS .modal-content {
  background: #efeeee;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v22Ogx1vsS .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v22Ogx1vsS .modal-backdrop.fade {
  opacity: 0;
}
.cid-v22Ogx1vsS .modal-backdrop.show {
  opacity: .5;
}
.cid-v22Ogx1vsS .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-v22Ogx1vsS .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v22Ogx1vsS .modal-header .close:hover {
  opacity: 1;
}
.cid-v22Ogx1vsS .modal-header .close:focus {
  outline: none;
}
.cid-v22Ogx1vsS .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #073b4c;
}
.cid-v22Ogx1vsS .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-v22Ogx1vsS .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-v22Ogx1vsS .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v22Ogx1vsS .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v22Ogx1vsS .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v22Ogx1vsS .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v22Ogx1vsS .modal-sm {
    max-width: 300px;
  }
  .cid-v22Ogx1vsS .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-v22Ogx1vsS .modal-lg,
  .cid-v22Ogx1vsS .modal-xl {
    max-width: 800px;
  }
  .cid-v22Ogx1vsS .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-v22Ogx1vsS .modal-xl {
    max-width: 1140px;
  }
  .cid-v22Ogx1vsS .container {
    max-width: 1140px;
  }
}
.cid-v22Ogx1vsS .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-v22Ogx1vsS .container {
    max-width: 720px;
  }
}
.cid-v22Ogx1vsS .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v22Ogx1vsS .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v22Ogx1vsS .form-group {
  margin-bottom: 1rem;
}
.cid-v22Ogx1vsS .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v22Ogx1vsS .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v22Ogx1vsS .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sD0NXnz24V {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-sD0NXnz24V .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-sCXHoxAyoi .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-sCXHoxAyoi .navbar-fixed-top {
  padding-top: 0;
}
.cid-sCXHoxAyoi .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sCXHoxAyoi .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-sCXHoxAyoi .dropdown-item {
  padding: 0;
}
.cid-sCXHoxAyoi .dropdown-item,
.cid-sCXHoxAyoi .nav-link,
.cid-sCXHoxAyoi .brand-name {
  font-style: normal;
}
.cid-sCXHoxAyoi .dropdown-item:hover,
.cid-sCXHoxAyoi .nav-link:hover,
.cid-sCXHoxAyoi .brand-name:hover {
  color: #ff3366 !important;
}
.cid-sCXHoxAyoi .dropdown-menu {
  background-color: #0a1c44;
}
.cid-sCXHoxAyoi .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-sCXHoxAyoi .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-sCXHoxAyoi .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-sCXHoxAyoi .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sCXHoxAyoi .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sCXHoxAyoi .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-sCXHoxAyoi .content-text {
  margin-bottom: 0;
}
.cid-sCXHoxAyoi .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sCXHoxAyoi .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sCXHoxAyoi .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sCXHoxAyoi .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sCXHoxAyoi .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sCXHoxAyoi .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sCXHoxAyoi .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sCXHoxAyoi .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sCXHoxAyoi .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCXHoxAyoi .nav-dropdown .link {
  font-weight: 400;
}
.cid-sCXHoxAyoi .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sCXHoxAyoi .content-right-side {
  text-align: center;
}
.cid-sCXHoxAyoi .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sCXHoxAyoi .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sCXHoxAyoi .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sCXHoxAyoi .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCXHoxAyoi .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCXHoxAyoi .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sCXHoxAyoi .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sCXHoxAyoi .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sCXHoxAyoi .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sCXHoxAyoi .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sCXHoxAyoi .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-sCXHoxAyoi .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sCXHoxAyoi .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-sCXHoxAyoi .navbar {
    display: block;
    padding: 0;
  }
  .cid-sCXHoxAyoi .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sCXHoxAyoi .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sCXHoxAyoi .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sCXHoxAyoi .navbar-toggler {
    display: none;
  }
  .cid-sCXHoxAyoi .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sCXHoxAyoi .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sCXHoxAyoi .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sCXHoxAyoi .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sCXHoxAyoi .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sCXHoxAyoi .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-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sCXHoxAyoi .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sCXHoxAyoi .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sCXHoxAyoi button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-sCXHoxAyoi button.navbar-toggler:focus {
  outline: none;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCXHoxAyoi .collapsed .btn {
  display: flex;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sCXHoxAyoi .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sCXHoxAyoi .collapsed button.navbar-toggler {
  display: block;
}
.cid-sCXHoxAyoi .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sCXHoxAyoi .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sCXHoxAyoi .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sCXHoxAyoi .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-sCXHoxAyoi .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-sCXHoxAyoi .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-sCXHoxAyoi .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sCXHoxAyoi .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-sCXHoxAyoi .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing,
  .cid-sCXHoxAyoi .navbar-collapse.show {
    display: block !important;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-nav,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-buttons,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sCXHoxAyoi img {
    height: 3.8rem !important;
  }
  .cid-sCXHoxAyoi .btn {
    display: flex;
  }
  .cid-sCXHoxAyoi button.navbar-toggler {
    display: block;
  }
  .cid-sCXHoxAyoi .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sCXHoxAyoi .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sCXHoxAyoi .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sCXHoxAyoi .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sCXHoxAyoi .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sCXHoxAyoi .nav-link:focus {
  outline: none;
}
.cid-sCXHoxAyoi .navbar-toggler {
  position: relative;
}
.cid-sCXHoxAyoi .dropdown-item.active,
.cid-sCXHoxAyoi .dropdown-item:active {
  color: initial;
}
.cid-sCXHoxAyoi .widget-title,
.cid-sCXHoxAyoi .widget-icon {
  color: #ffffff;
}
.cid-sCXHoxAyoi .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-sCXHoxAyoi .menu-logo {
    display: none;
  }
  .cid-sCXHoxAyoi .navbar {
    padding: 0;
  }
  .cid-sCXHoxAyoi .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sCXHoxAyoi button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-sDklSUYy58 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpeg");
}
@media (min-width: 992px) {
  .cid-sDklSUYy58 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sDklSUYy58 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sDklSUYy58 .mbr-text {
    text-align: center;
  }
}
.cid-sDklSUYy58 .mbr-text,
.cid-sDklSUYy58 .mbr-section-btn {
  color: #000000;
}
.cid-sDklSUYy58 H1 {
  color: #000000;
}
.cid-sD0PoPPzHR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sD0PoPPzHR *:focus {
  outline: none;
}
.cid-sD0PoPPzHR .form-group {
  margin-bottom: 2rem;
}
.cid-sD0PoPPzHR .form-control {
  width: 100%;
  border: none;
  background: transparent;
  border-bottom: 2px solid #282124;
  color: #282124;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1px;
  min-height: 35px;
}
.cid-sD0PoPPzHR .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-sD0PoPPzHR .form-control::-webkit-input-placeholder {
  color: #282124;
}
.cid-sD0PoPPzHR .form-control::-moz-placeholder {
  color: #282124;
}
.cid-sD0PoPPzHR .form-control:-ms-input-placeholder {
  color: #282124;
}
.cid-sD0PoPPzHR .form-control:-moz-placeholder {
  color: #282124;
}
.cid-sD0PoPPzHR input.form-control {
  padding: 1px 0;
}
.cid-sD0PoPPzHR .soc-item {
  display: inline-block;
  margin: 0 .2rem;
}
.cid-sD0PoPPzHR .soc-item .socicon {
  font-size: 1.5rem;
  color: #073b4c;
  opacity: 1;
}
.cid-sD0PoPPzHR .soc-item .socicon:hover {
  opacity: .5;
}
.cid-sD0PoPPzHR .input-group-btn {
  display: block;
}
@media (max-width: 767px) {
  .cid-sD0PoPPzHR .first-column,
  .cid-sD0PoPPzHR .form-1 {
    text-align: center;
  }
}
.cid-sD0NdxbtXj {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-sD0NdxbtXj .container {
  max-width: 1400px;
}
.cid-sD0NdxbtXj .card-img2 span {
  padding-top: 6px;
}
.cid-sD0NdxbtXj .soc-item a {
  padding-top: 5px;
}
.cid-sD0NdxbtXj .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-sD0NdxbtXj .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sD0NdxbtXj .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sD0NdxbtXj .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sD0NdxbtXj svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sD0NdxbtXj #e2_shape {
  fill: #2681cd !important;
}
.cid-sD0NdxbtXj .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-sD0NdxbtXj .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sD0NdxbtXj .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sD0NdxbtXj .card-img {
  width: auto;
}
.cid-sD0NdxbtXj .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sD0NdxbtXj .soc-item span {
  font-size: 1.4rem;
}
.cid-sD0NdxbtXj .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-sD0NdxbtXj .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sD0NdxbtXj .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sD0NdxbtXj .media-wrap {
  margin-bottom: 1rem;
}
.cid-sD0NdxbtXj .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sD0NdxbtXj img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-sD0NdxbtXj .item {
    justify-content: center;
  }
  .cid-sD0NdxbtXj .quote::after {
    left: 60px;
  }
}
.cid-sD0NdxbtXj .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sD0NdxbtXj .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sD0NdxbtXj .text1 {
  color: #ffffff;
}
.cid-sD0NdxbtXj .item-title {
  color: #ffffff;
}
.cid-sD0NdxbtXj H5 {
  color: #ffffff;
  text-align: left;
}
.cid-sD0NdxbtXj .theme {
  color: #ffffff;
}
.cid-sD0NdxbtXj .copyright > p {
  color: #ff3366;
}
.cid-sD0NdxbtXj .text2 {
  color: #ffffff;
}
.cid-sD0NXnz24V {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-sD0NXnz24V .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-sCXHoxAyoi .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-sCXHoxAyoi .navbar-fixed-top {
  padding-top: 0;
}
.cid-sCXHoxAyoi .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sCXHoxAyoi .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-sCXHoxAyoi .dropdown-item {
  padding: 0;
}
.cid-sCXHoxAyoi .dropdown-item,
.cid-sCXHoxAyoi .nav-link,
.cid-sCXHoxAyoi .brand-name {
  font-style: normal;
}
.cid-sCXHoxAyoi .dropdown-item:hover,
.cid-sCXHoxAyoi .nav-link:hover,
.cid-sCXHoxAyoi .brand-name:hover {
  color: #ff3366 !important;
}
.cid-sCXHoxAyoi .dropdown-menu {
  background-color: #0a1c44;
}
.cid-sCXHoxAyoi .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-sCXHoxAyoi .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-sCXHoxAyoi .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-sCXHoxAyoi .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sCXHoxAyoi .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sCXHoxAyoi .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-sCXHoxAyoi .content-text {
  margin-bottom: 0;
}
.cid-sCXHoxAyoi .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sCXHoxAyoi .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sCXHoxAyoi .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sCXHoxAyoi .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sCXHoxAyoi .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sCXHoxAyoi .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sCXHoxAyoi .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sCXHoxAyoi .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sCXHoxAyoi .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCXHoxAyoi .nav-dropdown .link {
  font-weight: 400;
}
.cid-sCXHoxAyoi .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sCXHoxAyoi .content-right-side {
  text-align: center;
}
.cid-sCXHoxAyoi .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sCXHoxAyoi .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sCXHoxAyoi .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sCXHoxAyoi .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCXHoxAyoi .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCXHoxAyoi .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sCXHoxAyoi .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sCXHoxAyoi .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sCXHoxAyoi .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sCXHoxAyoi .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sCXHoxAyoi .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-sCXHoxAyoi .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sCXHoxAyoi .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-sCXHoxAyoi .navbar {
    display: block;
    padding: 0;
  }
  .cid-sCXHoxAyoi .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sCXHoxAyoi .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sCXHoxAyoi .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sCXHoxAyoi .navbar-toggler {
    display: none;
  }
  .cid-sCXHoxAyoi .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sCXHoxAyoi .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sCXHoxAyoi .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sCXHoxAyoi .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sCXHoxAyoi .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sCXHoxAyoi .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-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sCXHoxAyoi .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sCXHoxAyoi .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sCXHoxAyoi button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-sCXHoxAyoi button.navbar-toggler:focus {
  outline: none;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCXHoxAyoi .collapsed .btn {
  display: flex;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sCXHoxAyoi .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sCXHoxAyoi .collapsed button.navbar-toggler {
  display: block;
}
.cid-sCXHoxAyoi .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sCXHoxAyoi .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sCXHoxAyoi .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sCXHoxAyoi .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-sCXHoxAyoi .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-sCXHoxAyoi .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-sCXHoxAyoi .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sCXHoxAyoi .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-sCXHoxAyoi .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing,
  .cid-sCXHoxAyoi .navbar-collapse.show {
    display: block !important;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-nav,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-buttons,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sCXHoxAyoi img {
    height: 3.8rem !important;
  }
  .cid-sCXHoxAyoi .btn {
    display: flex;
  }
  .cid-sCXHoxAyoi button.navbar-toggler {
    display: block;
  }
  .cid-sCXHoxAyoi .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sCXHoxAyoi .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sCXHoxAyoi .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sCXHoxAyoi .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sCXHoxAyoi .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sCXHoxAyoi .nav-link:focus {
  outline: none;
}
.cid-sCXHoxAyoi .navbar-toggler {
  position: relative;
}
.cid-sCXHoxAyoi .dropdown-item.active,
.cid-sCXHoxAyoi .dropdown-item:active {
  color: initial;
}
.cid-sCXHoxAyoi .widget-title,
.cid-sCXHoxAyoi .widget-icon {
  color: #ffffff;
}
.cid-sCXHoxAyoi .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-sCXHoxAyoi .menu-logo {
    display: none;
  }
  .cid-sCXHoxAyoi .navbar {
    padding: 0;
  }
  .cid-sCXHoxAyoi .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sCXHoxAyoi button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-sDjKk8IWdn {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-sDjKk8IWdn .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-sDjKk8IWdn .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sDjKk8IWdn .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sDjKk8IWdn .mbr-text {
    text-align: center;
  }
}
.cid-sDjKk8IWdn .mbr-text,
.cid-sDjKk8IWdn .mbr-section-btn {
  color: #ffffff;
}
.cid-sDfy72BGuS {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1-1920x1440.jpg");
}
.cid-sDfy72BGuS .card-box {
  background-color: #073b4c;
  padding: 4rem 4rem;
  margin: 0.5rem;
  width: 100%;
}
@media (min-width: 767px) {
  .cid-sDfy72BGuS .row {
    padding: 0 4rem;
  }
}
.cid-sDfy72BGuS .container {
  max-width: 1500px;
}
.cid-sDfy72BGuS .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sDfy72BGuS .mbr-iconfont {
  font-size: 5rem;
  color: #86e0ff;
  padding-bottom: 2rem;
  display: block;
}
.cid-sDfy72BGuS P {
  color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-sDfy72BGuS .card-box {
    margin: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-sDfy72BGuS .card-box {
    padding: 2rem 1rem;
  }
}
.cid-sDfqfng4dx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1-1920x1440.jpg");
}
.cid-sDfqfng4dx .card-box {
  background-color: #073b4c;
  padding: 4rem 4rem;
  margin: 0.5rem;
  width: 100%;
}
@media (min-width: 767px) {
  .cid-sDfqfng4dx .row {
    padding: 0 4rem;
  }
}
.cid-sDfqfng4dx .container {
  max-width: 1500px;
}
.cid-sDfqfng4dx .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sDfqfng4dx .mbr-iconfont {
  font-size: 9rem;
  color: #86e0ff;
  padding-bottom: 2rem;
  display: block;
}
.cid-sDfqfng4dx P {
  color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-sDfqfng4dx .card-box {
    margin: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-sDfqfng4dx .card-box {
    padding: 2rem 1rem;
  }
}
.cid-sDfklN3USh {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-sDfklN3USh .container {
  max-width: 1400px;
}
.cid-sDfklN3USh .card-img2 span {
  padding-top: 6px;
}
.cid-sDfklN3USh .soc-item a {
  padding-top: 5px;
}
.cid-sDfklN3USh .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-sDfklN3USh .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sDfklN3USh .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sDfklN3USh .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sDfklN3USh svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sDfklN3USh #e2_shape {
  fill: #2681cd !important;
}
.cid-sDfklN3USh .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-sDfklN3USh .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sDfklN3USh .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sDfklN3USh .card-img {
  width: auto;
}
.cid-sDfklN3USh .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sDfklN3USh .soc-item span {
  font-size: 1.4rem;
}
.cid-sDfklN3USh .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-sDfklN3USh .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sDfklN3USh .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sDfklN3USh .media-wrap {
  margin-bottom: 1rem;
}
.cid-sDfklN3USh .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sDfklN3USh img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-sDfklN3USh .item {
    justify-content: center;
  }
  .cid-sDfklN3USh .quote::after {
    left: 60px;
  }
}
.cid-sDfklN3USh .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sDfklN3USh .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sDfklN3USh .text1 {
  color: #ffffff;
}
.cid-sDfklN3USh .item-title {
  color: #ffffff;
}
.cid-sDfklN3USh H5 {
  color: #ffffff;
  text-align: left;
}
.cid-sDfklN3USh .theme {
  color: #ffffff;
}
.cid-sDfklN3USh .copyright > p {
  color: #ff3366;
}
.cid-sDfklN3USh .text2 {
  color: #ffffff;
}
.cid-sD0NXnz24V {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-sD0NXnz24V .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-sDBNu6AX85.popup-builder {
  background-color: #ffffff;
}
.cid-sDBNu6AX85.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sDBNu6AX85.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sDBNu6AX85 .modal-content,
.cid-sDBNu6AX85 .modal-dialog {
  height: auto;
}
.cid-sDBNu6AX85 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sDBNu6AX85 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sDBNu6AX85 .form-wrapper .mbr-form .form-group,
  .cid-sDBNu6AX85 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sDBNu6AX85 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sDBNu6AX85 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sDBNu6AX85 .mbr-text {
  text-align: center;
}
.cid-sDBNu6AX85 .pt-0 {
  padding-top: 0 !important;
}
.cid-sDBNu6AX85 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sDBNu6AX85 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sDBNu6AX85 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sDBNu6AX85 .modal-open {
  overflow: hidden;
}
.cid-sDBNu6AX85 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sDBNu6AX85 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sDBNu6AX85 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sDBNu6AX85 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sDBNu6AX85 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sDBNu6AX85 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sDBNu6AX85 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sDBNu6AX85 .modal-content {
  background: #efeeee;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sDBNu6AX85 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sDBNu6AX85 .modal-backdrop.fade {
  opacity: 0;
}
.cid-sDBNu6AX85 .modal-backdrop.show {
  opacity: .5;
}
.cid-sDBNu6AX85 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sDBNu6AX85 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sDBNu6AX85 .modal-header .close:hover {
  opacity: 1;
}
.cid-sDBNu6AX85 .modal-header .close:focus {
  outline: none;
}
.cid-sDBNu6AX85 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #073b4c;
}
.cid-sDBNu6AX85 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sDBNu6AX85 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sDBNu6AX85 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sDBNu6AX85 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sDBNu6AX85 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sDBNu6AX85 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sDBNu6AX85 .modal-sm {
    max-width: 300px;
  }
  .cid-sDBNu6AX85 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sDBNu6AX85 .modal-lg,
  .cid-sDBNu6AX85 .modal-xl {
    max-width: 800px;
  }
  .cid-sDBNu6AX85 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sDBNu6AX85 .modal-xl {
    max-width: 1140px;
  }
  .cid-sDBNu6AX85 .container {
    max-width: 1140px;
  }
}
.cid-sDBNu6AX85 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sDBNu6AX85 .container {
    max-width: 720px;
  }
}
.cid-sDBNu6AX85 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sDBNu6AX85 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sDBNu6AX85 .form-group {
  margin-bottom: 1rem;
}
.cid-sDBNu6AX85 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sDBNu6AX85 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sDBNu6AX85 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sDGpTc4xcA .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-sDGpTc4xcA .navbar-fixed-top {
  padding-top: 0;
}
.cid-sDGpTc4xcA .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sDGpTc4xcA .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sDGpTc4xcA .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sDGpTc4xcA .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sDGpTc4xcA .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sDGpTc4xcA .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sDGpTc4xcA .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sDGpTc4xcA .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-sDGpTc4xcA .dropdown-item {
  padding: 0;
}
.cid-sDGpTc4xcA .dropdown-item,
.cid-sDGpTc4xcA .nav-link,
.cid-sDGpTc4xcA .brand-name {
  font-style: normal;
}
.cid-sDGpTc4xcA .dropdown-item:hover,
.cid-sDGpTc4xcA .nav-link:hover,
.cid-sDGpTc4xcA .brand-name:hover {
  color: #ff3366 !important;
}
.cid-sDGpTc4xcA .dropdown-menu {
  background-color: #0a1c44;
}
.cid-sDGpTc4xcA .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-sDGpTc4xcA .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-sDGpTc4xcA .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-sDGpTc4xcA .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sDGpTc4xcA .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sDGpTc4xcA .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-sDGpTc4xcA .content-text {
  margin-bottom: 0;
}
.cid-sDGpTc4xcA .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sDGpTc4xcA .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sDGpTc4xcA .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sDGpTc4xcA .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sDGpTc4xcA .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sDGpTc4xcA .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sDGpTc4xcA .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sDGpTc4xcA .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sDGpTc4xcA .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sDGpTc4xcA .nav-dropdown .link {
  font-weight: 400;
}
.cid-sDGpTc4xcA .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sDGpTc4xcA .content-right-side {
  text-align: center;
}
.cid-sDGpTc4xcA .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sDGpTc4xcA .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sDGpTc4xcA .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sDGpTc4xcA .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sDGpTc4xcA .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sDGpTc4xcA .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sDGpTc4xcA .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sDGpTc4xcA .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sDGpTc4xcA .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sDGpTc4xcA .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sDGpTc4xcA .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-sDGpTc4xcA .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sDGpTc4xcA .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-sDGpTc4xcA .navbar {
    display: block;
    padding: 0;
  }
  .cid-sDGpTc4xcA .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sDGpTc4xcA .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sDGpTc4xcA .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sDGpTc4xcA .navbar-toggler {
    display: none;
  }
  .cid-sDGpTc4xcA .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sDGpTc4xcA .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sDGpTc4xcA .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sDGpTc4xcA .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sDGpTc4xcA .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sDGpTc4xcA .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sDGpTc4xcA .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sDGpTc4xcA .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sDGpTc4xcA .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sDGpTc4xcA .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sDGpTc4xcA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sDGpTc4xcA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDGpTc4xcA .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sDGpTc4xcA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sDGpTc4xcA .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-sDGpTc4xcA .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sDGpTc4xcA .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDGpTc4xcA .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sDGpTc4xcA .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sDGpTc4xcA .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sDGpTc4xcA .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sDGpTc4xcA .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sDGpTc4xcA .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sDGpTc4xcA button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-sDGpTc4xcA button.navbar-toggler:focus {
  outline: none;
}
.cid-sDGpTc4xcA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sDGpTc4xcA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sDGpTc4xcA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDGpTc4xcA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDGpTc4xcA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sDGpTc4xcA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDGpTc4xcA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sDGpTc4xcA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sDGpTc4xcA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDGpTc4xcA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sDGpTc4xcA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sDGpTc4xcA .collapsed .btn {
  display: flex;
}
.cid-sDGpTc4xcA .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sDGpTc4xcA .collapsed .navbar-collapse.collapsing,
.cid-sDGpTc4xcA .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sDGpTc4xcA .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sDGpTc4xcA .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sDGpTc4xcA .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sDGpTc4xcA .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sDGpTc4xcA .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sDGpTc4xcA .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sDGpTc4xcA .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sDGpTc4xcA .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sDGpTc4xcA .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sDGpTc4xcA .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sDGpTc4xcA .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sDGpTc4xcA .collapsed button.navbar-toggler {
  display: block;
}
.cid-sDGpTc4xcA .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sDGpTc4xcA .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sDGpTc4xcA .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sDGpTc4xcA .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sDGpTc4xcA .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sDGpTc4xcA .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sDGpTc4xcA .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-sDGpTc4xcA .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-sDGpTc4xcA .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-sDGpTc4xcA .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sDGpTc4xcA .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-sDGpTc4xcA .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sDGpTc4xcA .navbar-collapse.collapsing,
  .cid-sDGpTc4xcA .navbar-collapse.show {
    display: block !important;
  }
  .cid-sDGpTc4xcA .navbar-collapse.collapsing .navbar-nav,
  .cid-sDGpTc4xcA .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sDGpTc4xcA .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sDGpTc4xcA .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sDGpTc4xcA .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sDGpTc4xcA .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sDGpTc4xcA .navbar-collapse.collapsing .navbar-buttons,
  .cid-sDGpTc4xcA .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sDGpTc4xcA .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sDGpTc4xcA .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sDGpTc4xcA img {
    height: 3.8rem !important;
  }
  .cid-sDGpTc4xcA .btn {
    display: flex;
  }
  .cid-sDGpTc4xcA button.navbar-toggler {
    display: block;
  }
  .cid-sDGpTc4xcA .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sDGpTc4xcA .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sDGpTc4xcA .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sDGpTc4xcA .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sDGpTc4xcA .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sDGpTc4xcA .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sDGpTc4xcA .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sDGpTc4xcA .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sDGpTc4xcA .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sDGpTc4xcA .nav-link:focus {
  outline: none;
}
.cid-sDGpTc4xcA .navbar-toggler {
  position: relative;
}
.cid-sDGpTc4xcA .dropdown-item.active,
.cid-sDGpTc4xcA .dropdown-item:active {
  color: initial;
}
.cid-sDGpTc4xcA .widget-title,
.cid-sDGpTc4xcA .widget-icon {
  color: #ffffff;
}
.cid-sDGpTc4xcA .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-sDGpTc4xcA .menu-logo {
    display: none;
  }
  .cid-sDGpTc4xcA .navbar {
    padding: 0;
  }
  .cid-sDGpTc4xcA .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sDGpTc4xcA button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-sEfrodL97m {
  padding-top: 165px;
  padding-bottom: 90px;
  background-color: #efeeee;
}
.cid-sEfrodL97m .mbr-text,
.cid-sEfrodL97m .mbr-section-btn {
  text-align: left;
}
.cid-uNZA8hqEKG {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-uNZA8hqEKG .card {
  align-self: stretch;
}
.cid-uNZA8hqEKG .card-box {
  height: 100%;
  background-color: #ffffff;
  padding: 2rem;
}
.cid-uNZA8hqEKG h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uNZA8hqEKG p {
  color: #767676;
  text-align: left;
}
.cid-uNZA8hqEKG .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uNZA8hqEKG .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-uNZA8hqEKG .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-uNZA8hqEKG .card-title {
  text-align: center;
}
.cid-sDGpTdugk6 {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sDGpTdugk6 *:focus {
  outline: none;
}
.cid-sDGpTdugk6 .form-group {
  margin-bottom: 2rem;
}
.cid-sDGpTdugk6 .form-control {
  width: 100%;
  border: none;
  background: transparent;
  border-bottom: 2px solid #282124;
  color: #282124;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1px;
  min-height: 35px;
}
.cid-sDGpTdugk6 .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-sDGpTdugk6 .form-control::-webkit-input-placeholder {
  color: #282124;
}
.cid-sDGpTdugk6 .form-control::-moz-placeholder {
  color: #282124;
}
.cid-sDGpTdugk6 .form-control:-ms-input-placeholder {
  color: #282124;
}
.cid-sDGpTdugk6 .form-control:-moz-placeholder {
  color: #282124;
}
.cid-sDGpTdugk6 input.form-control {
  padding: 1px 0;
}
.cid-sDGpTdugk6 .soc-item {
  display: inline-block;
  margin: 0 .2rem;
}
.cid-sDGpTdugk6 .soc-item .socicon {
  font-size: 1.5rem;
  color: #073b4c;
  opacity: 1;
}
.cid-sDGpTdugk6 .soc-item .socicon:hover {
  opacity: .5;
}
.cid-sDGpTdugk6 .input-group-btn {
  display: block;
}
@media (max-width: 767px) {
  .cid-sDGpTdugk6 .first-column,
  .cid-sDGpTdugk6 .form-1 {
    text-align: center;
  }
}
.cid-sDGpTef2S6 {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-sDGpTef2S6 .container {
  max-width: 1400px;
}
.cid-sDGpTef2S6 .card-img2 span {
  padding-top: 6px;
}
.cid-sDGpTef2S6 .soc-item a {
  padding-top: 5px;
}
.cid-sDGpTef2S6 .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-sDGpTef2S6 .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sDGpTef2S6 .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sDGpTef2S6 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sDGpTef2S6 svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sDGpTef2S6 #e2_shape {
  fill: #2681cd !important;
}
.cid-sDGpTef2S6 .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-sDGpTef2S6 .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sDGpTef2S6 .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sDGpTef2S6 .card-img {
  width: auto;
}
.cid-sDGpTef2S6 .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sDGpTef2S6 .soc-item span {
  font-size: 1.4rem;
}
.cid-sDGpTef2S6 .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-sDGpTef2S6 .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sDGpTef2S6 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sDGpTef2S6 .media-wrap {
  margin-bottom: 1rem;
}
.cid-sDGpTef2S6 .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sDGpTef2S6 img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-sDGpTef2S6 .item {
    justify-content: center;
  }
  .cid-sDGpTef2S6 .quote::after {
    left: 60px;
  }
}
.cid-sDGpTef2S6 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sDGpTef2S6 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sDGpTef2S6 .text1 {
  color: #ffffff;
}
.cid-sDGpTef2S6 .item-title {
  color: #ffffff;
}
.cid-sDGpTef2S6 H5 {
  color: #ffffff;
  text-align: left;
}
.cid-sDGpTef2S6 .theme {
  color: #ffffff;
}
.cid-sDGpTef2S6 .copyright > p {
  color: #ff3366;
}
.cid-sDGpTef2S6 .text2 {
  color: #ffffff;
}
.cid-sDGpTf2r5B {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-sDGpTf2r5B .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-sCXHoxAyoi .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-sCXHoxAyoi .navbar-fixed-top {
  padding-top: 0;
}
.cid-sCXHoxAyoi .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sCXHoxAyoi .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sCXHoxAyoi .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-sCXHoxAyoi .dropdown-item {
  padding: 0;
}
.cid-sCXHoxAyoi .dropdown-item,
.cid-sCXHoxAyoi .nav-link,
.cid-sCXHoxAyoi .brand-name {
  font-style: normal;
}
.cid-sCXHoxAyoi .dropdown-item:hover,
.cid-sCXHoxAyoi .nav-link:hover,
.cid-sCXHoxAyoi .brand-name:hover {
  color: #ff3366 !important;
}
.cid-sCXHoxAyoi .dropdown-menu {
  background-color: #0a1c44;
}
.cid-sCXHoxAyoi .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-sCXHoxAyoi .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-sCXHoxAyoi .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-sCXHoxAyoi .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sCXHoxAyoi .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sCXHoxAyoi .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-sCXHoxAyoi .content-text {
  margin-bottom: 0;
}
.cid-sCXHoxAyoi .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sCXHoxAyoi .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sCXHoxAyoi .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sCXHoxAyoi .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sCXHoxAyoi .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sCXHoxAyoi .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sCXHoxAyoi .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sCXHoxAyoi .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sCXHoxAyoi .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCXHoxAyoi .nav-dropdown .link {
  font-weight: 400;
}
.cid-sCXHoxAyoi .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sCXHoxAyoi .content-right-side {
  text-align: center;
}
.cid-sCXHoxAyoi .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sCXHoxAyoi .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sCXHoxAyoi .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sCXHoxAyoi .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCXHoxAyoi .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCXHoxAyoi .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sCXHoxAyoi .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sCXHoxAyoi .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sCXHoxAyoi .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sCXHoxAyoi .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sCXHoxAyoi .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-sCXHoxAyoi .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sCXHoxAyoi .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-sCXHoxAyoi .navbar {
    display: block;
    padding: 0;
  }
  .cid-sCXHoxAyoi .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sCXHoxAyoi .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sCXHoxAyoi .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sCXHoxAyoi .navbar-toggler {
    display: none;
  }
  .cid-sCXHoxAyoi .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sCXHoxAyoi .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sCXHoxAyoi .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sCXHoxAyoi .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sCXHoxAyoi .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sCXHoxAyoi .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-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sCXHoxAyoi .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCXHoxAyoi .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sCXHoxAyoi .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sCXHoxAyoi .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sCXHoxAyoi button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-sCXHoxAyoi button.navbar-toggler:focus {
  outline: none;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCXHoxAyoi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sCXHoxAyoi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCXHoxAyoi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCXHoxAyoi .collapsed .btn {
  display: flex;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sCXHoxAyoi .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sCXHoxAyoi .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sCXHoxAyoi .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sCXHoxAyoi .collapsed button.navbar-toggler {
  display: block;
}
.cid-sCXHoxAyoi .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sCXHoxAyoi .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sCXHoxAyoi .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sCXHoxAyoi .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sCXHoxAyoi .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-sCXHoxAyoi .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-sCXHoxAyoi .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-sCXHoxAyoi .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sCXHoxAyoi .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-sCXHoxAyoi .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing,
  .cid-sCXHoxAyoi .navbar-collapse.show {
    display: block !important;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-nav,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-buttons,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sCXHoxAyoi .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sCXHoxAyoi .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sCXHoxAyoi img {
    height: 3.8rem !important;
  }
  .cid-sCXHoxAyoi .btn {
    display: flex;
  }
  .cid-sCXHoxAyoi button.navbar-toggler {
    display: block;
  }
  .cid-sCXHoxAyoi .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sCXHoxAyoi .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sCXHoxAyoi .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sCXHoxAyoi .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sCXHoxAyoi .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sCXHoxAyoi .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sCXHoxAyoi .nav-link:focus {
  outline: none;
}
.cid-sCXHoxAyoi .navbar-toggler {
  position: relative;
}
.cid-sCXHoxAyoi .dropdown-item.active,
.cid-sCXHoxAyoi .dropdown-item:active {
  color: initial;
}
.cid-sCXHoxAyoi .widget-title,
.cid-sCXHoxAyoi .widget-icon {
  color: #ffffff;
}
.cid-sCXHoxAyoi .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-sCXHoxAyoi .menu-logo {
    display: none;
  }
  .cid-sCXHoxAyoi .navbar {
    padding: 0;
  }
  .cid-sCXHoxAyoi .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sCXHoxAyoi button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-sD0NXnz24V {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-sD0NXnz24V .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-tWZnjU58CC {
  padding-top: 120px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/16-1600x600.jpg");
}
.cid-tWZnjU58CC H3 {
  color: #ffffff;
}
.cid-tWZnjU58CC .mbr-text,
.cid-tWZnjU58CC .mbr-section-btn {
  color: #efefef;
}
.cid-tWZsh4Y7g1 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efeeee;
}
.cid-tWZsh4Y7g1 .line {
  background-color: #0f7699;
  color: #0f7699;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tWZsh4Y7g1 .section-text {
  padding: 2rem 0;
  color: #e8543e;
}
.cid-tWZsh4Y7g1 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tWZsh4Y7g1 .inner-container {
    width: 100% !important;
  }
}
.cid-tWZnlaXzyS {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-tWZnlaXzyS .mbr-section-subtitle {
  color: #333333;
  text-align: center;
}
.cid-tWZnlaXzyS .btn {
  margin: 0 0 .5rem 0;
}
.cid-tWZnlaXzyS .content-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-tWZnlaXzyS H2 {
  color: #000000;
  text-align: center;
}
.cid-tWZno7baHZ {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #cccccc;
}
.cid-tWZno7baHZ .price-term {
  vertical-align: top;
}
.cid-tWZno7baHZ h4 {
  margin: 0;
}
.cid-tWZno7baHZ .card1 {
  background: #3a9bbc;
}
.cid-tWZno7baHZ .card2 {
  background: #e96989;
}
.cid-tWZno7baHZ .card3 {
  background: #ff7f9f;
}
.cid-tWZno7baHZ .plan-item .mbr-iconfont {
  margin-right: 22px;
  font-size: 22px;
  position: relative;
  top: 18px;
}
.cid-tWZno7baHZ .plan-item p {
  letter-spacing: 0.4px;
  margin: 0;
  padding: 16px 0 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
  max-width: 205px;
  width: 100%;
}
.cid-tWZno7baHZ .plan-body .mbr-section-btn {
  padding: 44px 0 0;
}
.cid-tWZno7baHZ .plan-body .mbr-section-btn .btn {
  margin-bottom: 14px;
}
.cid-tWZno7baHZ .plan-header {
  padding: 4rem 1rem;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.cid-tWZno7baHZ .plan-body {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fff;
  padding: 40px 1rem;
}
.cid-tWZno7baHZ .month {
  letter-spacing: 2px;
  color: #465052;
}
.cid-tWZno7baHZ .plan {
  word-break: break-word;
  position: relative;
  max-width: 400px;
  margin-bottom: 1rem;
  color: #767676;
}
.cid-tWZno7baHZ .row {
  justify-content: center;
}
.cid-tWZno7baHZ .price-value {
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-tWZno7baHZ .price-figure {
    font-size: 4.25rem;
  }
}
@media (max-width: 992px) {
  .cid-tWZno7baHZ .plan {
    margin-bottom: 2rem;
  }
}
.cid-tWZno7baHZ .plan-item p,
.cid-tWZno7baHZ .plan-item .mbr-iconfont {
  color: #000000;
  text-align: left;
}
.cid-tWZno7baHZ .plan-title {
  color: #465052;
  text-align: center;
}
.cid-tWZno7baHZ .plan-price,
.cid-tWZno7baHZ .price-figure {
  color: #465052;
}
.cid-tWZno7baHZ .plan-price,
.cid-tWZno7baHZ .price-value {
  color: #465052;
}
.cid-tWZno7baHZ .plan-price,
.cid-tWZno7baHZ .price-term {
  color: #465052;
}
.cid-tWZnoUAyl5 {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tWZnoUAyl5 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-tWZnoUAyl5 p {
  color: #767676;
  text-align: left;
  margin-bottom: 0;
}
.cid-tWZnoUAyl5 .card-img {
  text-align: left;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
  width: auto;
}
.cid-tWZnoUAyl5 .card-img span {
  font-size: 72px;
  color: #ff3366;
}
.cid-tWZnoUAyl5 .card-box {
  padding-left: 1rem;
  word-break: break-word;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWZnoUAyl5 .card-img {
    text-align: left;
    padding-bottom: 0.75rem;
  }
  .cid-tWZnoUAyl5 .card-box {
    padding-left: 0;
  }
}
.cid-tWZnpH3UPx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
.cid-tWZnpH3UPx h2 {
  margin-bottom: 0;
}
.cid-tWZnpH3UPx h4 {
  font-weight: 500;
  margin-bottom: 0;
  width: 80%;
}
.cid-tWZnpH3UPx p {
  color: #767676;
  margin-bottom: 0;
}
.cid-tWZnpH3UPx .card-wrapper {
  border-top: 1px solid #efefef;
  background-color: #ffffff;
  position: relative;
  justify-content: unset;
}
.cid-tWZnpH3UPx .card-wrapper .card-box {
  padding: 2rem 1rem;
  width: 100%;
}
.cid-tWZnpH3UPx .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-tWZnpH3UPx .card-wrapper .card-box .bottom-line {
  width: 70%;
}
@media (max-width: 767px) {
  .cid-tWZnpH3UPx .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-tWZnpH3UPx .card-wrapper .card-box .bottom-line p {
    text-align: center;
    margin: 1rem 0 0 0;
  }
}
.cid-tWZnpH3UPx H2 {
  text-align: center;
}
.cid-tWZnqNCGV7 {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-tWZnqNCGV7 h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-tWZnqNCGV7 p {
  color: #767676;
}
.cid-tWZnqNCGV7 .card-wrapper {
  border-top: 1px solid #efefef;
  background-color: #ffffff;
  position: relative;
  justify-content: unset;
}
.cid-tWZnqNCGV7 .card-wrapper .card-box {
  padding: 2rem;
  width: 100%;
}
.cid-tWZnqNCGV7 .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-tWZnqNCGV7 .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-tWZnqNCGV7 .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-tWZnqNCGV7 .card-wrapper .card-box .bottom-line p {
    text-align: center;
    margin: 1rem 0 0 0;
  }
}
.cid-tWZnqNCGV7 H2 {
  text-align: center;
}
.cid-tWZnMn7FE3 {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-tWZnMn7FE3 .container {
  max-width: 1400px;
}
.cid-tWZnMn7FE3 .card-img2 span {
  padding-top: 6px;
}
.cid-tWZnMn7FE3 .soc-item a {
  padding-top: 5px;
}
.cid-tWZnMn7FE3 .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-tWZnMn7FE3 .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-tWZnMn7FE3 .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-tWZnMn7FE3 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tWZnMn7FE3 svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-tWZnMn7FE3 #e2_shape {
  fill: #2681cd !important;
}
.cid-tWZnMn7FE3 .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-tWZnMn7FE3 .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-tWZnMn7FE3 .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tWZnMn7FE3 .card-img {
  width: auto;
}
.cid-tWZnMn7FE3 .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-tWZnMn7FE3 .soc-item span {
  font-size: 1.4rem;
}
.cid-tWZnMn7FE3 .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-tWZnMn7FE3 .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-tWZnMn7FE3 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tWZnMn7FE3 .media-wrap {
  margin-bottom: 1rem;
}
.cid-tWZnMn7FE3 .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tWZnMn7FE3 img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-tWZnMn7FE3 .item {
    justify-content: center;
  }
  .cid-tWZnMn7FE3 .quote::after {
    left: 60px;
  }
}
.cid-tWZnMn7FE3 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-tWZnMn7FE3 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWZnMn7FE3 .text1 {
  color: #ffffff;
}
.cid-tWZnMn7FE3 .item-title {
  color: #ffffff;
}
.cid-tWZnMn7FE3 H5 {
  color: #ffffff;
  text-align: left;
}
.cid-tWZnMn7FE3 .theme {
  color: #ffffff;
}
.cid-tWZnMn7FE3 .copyright > p {
  color: #ff3366;
}
.cid-tWZnMn7FE3 .text2 {
  color: #ffffff;
}
.cid-uHXWx6kxZu .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-uHXWx6kxZu .navbar-fixed-top {
  padding-top: 0;
}
.cid-uHXWx6kxZu .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uHXWx6kxZu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uHXWx6kxZu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uHXWx6kxZu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uHXWx6kxZu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uHXWx6kxZu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uHXWx6kxZu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uHXWx6kxZu .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uHXWx6kxZu .dropdown-item {
  padding: 0;
}
.cid-uHXWx6kxZu .dropdown-item,
.cid-uHXWx6kxZu .nav-link,
.cid-uHXWx6kxZu .brand-name {
  font-style: normal;
}
.cid-uHXWx6kxZu .dropdown-item:hover,
.cid-uHXWx6kxZu .nav-link:hover,
.cid-uHXWx6kxZu .brand-name:hover {
  color: #ff3366 !important;
}
.cid-uHXWx6kxZu .dropdown-menu {
  background-color: #0a1c44;
}
.cid-uHXWx6kxZu .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-uHXWx6kxZu .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-uHXWx6kxZu .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-uHXWx6kxZu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uHXWx6kxZu .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-uHXWx6kxZu .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-uHXWx6kxZu .content-text {
  margin-bottom: 0;
}
.cid-uHXWx6kxZu .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uHXWx6kxZu .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uHXWx6kxZu .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uHXWx6kxZu .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uHXWx6kxZu .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-uHXWx6kxZu .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uHXWx6kxZu .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uHXWx6kxZu .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uHXWx6kxZu .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHXWx6kxZu .nav-dropdown .link {
  font-weight: 400;
}
.cid-uHXWx6kxZu .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uHXWx6kxZu .content-right-side {
  text-align: center;
}
.cid-uHXWx6kxZu .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uHXWx6kxZu .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uHXWx6kxZu .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-uHXWx6kxZu .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uHXWx6kxZu .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uHXWx6kxZu .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uHXWx6kxZu .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uHXWx6kxZu .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uHXWx6kxZu .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-uHXWx6kxZu .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-uHXWx6kxZu .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-uHXWx6kxZu .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uHXWx6kxZu .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uHXWx6kxZu .navbar {
    display: block;
    padding: 0;
  }
  .cid-uHXWx6kxZu .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uHXWx6kxZu .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uHXWx6kxZu .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uHXWx6kxZu .navbar-toggler {
    display: none;
  }
  .cid-uHXWx6kxZu .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uHXWx6kxZu .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uHXWx6kxZu .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uHXWx6kxZu .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uHXWx6kxZu .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uHXWx6kxZu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uHXWx6kxZu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHXWx6kxZu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uHXWx6kxZu .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uHXWx6kxZu .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uHXWx6kxZu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHXWx6kxZu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHXWx6kxZu .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uHXWx6kxZu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHXWx6kxZu .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-uHXWx6kxZu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uHXWx6kxZu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHXWx6kxZu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uHXWx6kxZu .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uHXWx6kxZu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uHXWx6kxZu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uHXWx6kxZu .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-uHXWx6kxZu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uHXWx6kxZu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-uHXWx6kxZu button.navbar-toggler:focus {
  outline: none;
}
.cid-uHXWx6kxZu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-uHXWx6kxZu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHXWx6kxZu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHXWx6kxZu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHXWx6kxZu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHXWx6kxZu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHXWx6kxZu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHXWx6kxZu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHXWx6kxZu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHXWx6kxZu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHXWx6kxZu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHXWx6kxZu .collapsed .btn {
  display: flex;
}
.cid-uHXWx6kxZu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uHXWx6kxZu .collapsed .navbar-collapse.collapsing,
.cid-uHXWx6kxZu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uHXWx6kxZu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uHXWx6kxZu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uHXWx6kxZu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uHXWx6kxZu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uHXWx6kxZu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uHXWx6kxZu .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uHXWx6kxZu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uHXWx6kxZu .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-uHXWx6kxZu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uHXWx6kxZu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uHXWx6kxZu .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uHXWx6kxZu .collapsed button.navbar-toggler {
  display: block;
}
.cid-uHXWx6kxZu .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uHXWx6kxZu .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uHXWx6kxZu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uHXWx6kxZu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uHXWx6kxZu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uHXWx6kxZu .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uHXWx6kxZu .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-uHXWx6kxZu .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-uHXWx6kxZu .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-uHXWx6kxZu .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-uHXWx6kxZu .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uHXWx6kxZu .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uHXWx6kxZu .navbar-collapse.collapsing,
  .cid-uHXWx6kxZu .navbar-collapse.show {
    display: block !important;
  }
  .cid-uHXWx6kxZu .navbar-collapse.collapsing .navbar-nav,
  .cid-uHXWx6kxZu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uHXWx6kxZu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uHXWx6kxZu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uHXWx6kxZu .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uHXWx6kxZu .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uHXWx6kxZu .navbar-collapse.collapsing .navbar-buttons,
  .cid-uHXWx6kxZu .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uHXWx6kxZu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uHXWx6kxZu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uHXWx6kxZu img {
    height: 3.8rem !important;
  }
  .cid-uHXWx6kxZu .btn {
    display: flex;
  }
  .cid-uHXWx6kxZu button.navbar-toggler {
    display: block;
  }
  .cid-uHXWx6kxZu .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uHXWx6kxZu .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uHXWx6kxZu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uHXWx6kxZu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uHXWx6kxZu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uHXWx6kxZu .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uHXWx6kxZu .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uHXWx6kxZu .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uHXWx6kxZu .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uHXWx6kxZu .nav-link:focus {
  outline: none;
}
.cid-uHXWx6kxZu .navbar-toggler {
  position: relative;
}
.cid-uHXWx6kxZu .dropdown-item.active,
.cid-uHXWx6kxZu .dropdown-item:active {
  color: initial;
}
.cid-uHXWx6kxZu .widget-title,
.cid-uHXWx6kxZu .widget-icon {
  color: #ffffff;
}
.cid-uHXWx6kxZu .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-uHXWx6kxZu .menu-logo {
    display: none;
  }
  .cid-uHXWx6kxZu .navbar {
    padding: 0;
  }
  .cid-uHXWx6kxZu .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uHXWx6kxZu button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-uHY0J1VU6z {
  padding-top: 135px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-uHY0J1VU6z .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-uHY0J1VU6z .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-uHY0J1VU6z .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-uHXXccwIJS {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-uHXXccwIJS .mbr-text {
  position: relative;
  text-align: left;
  color: #465052;
}
.cid-uHXXccwIJS .mbr-text:before {
  color: #efefef;
  content: "\201C";
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.2em;
  vertical-align: -0.4em;
  position: absolute;
  top: 10px;
  left: -2rem;
}
.cid-uHXXccwIJS img {
  object-fit: contain;
}
.cid-uHXXccwIJS .mbr-text:after {
  color: #efefef;
  content: "\201D";
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.45em;
  position: absolute;
  bottom: 10px;
  right: -2rem;
}
@media (max-width: 767px) {
  .cid-uHXXccwIJS .mbr-text:after,
  .cid-uHXXccwIJS .mbr-text:before {
    display: none;
  }
}
.cid-uHXXccwIJS .mbr-section-title,
.cid-uHXXccwIJS .logo {
  color: #465052;
}
.cid-uHXWx7NASp {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uHXWx7NASp *:focus {
  outline: none;
}
.cid-uHXWx7NASp .form-group {
  margin-bottom: 2rem;
}
.cid-uHXWx7NASp .form-control {
  width: 100%;
  border: none;
  background: transparent;
  border-bottom: 2px solid #282124;
  color: #282124;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1px;
  min-height: 35px;
}
.cid-uHXWx7NASp .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-uHXWx7NASp .form-control::-webkit-input-placeholder {
  color: #282124;
}
.cid-uHXWx7NASp .form-control::-moz-placeholder {
  color: #282124;
}
.cid-uHXWx7NASp .form-control:-ms-input-placeholder {
  color: #282124;
}
.cid-uHXWx7NASp .form-control:-moz-placeholder {
  color: #282124;
}
.cid-uHXWx7NASp input.form-control {
  padding: 1px 0;
}
.cid-uHXWx7NASp .soc-item {
  display: inline-block;
  margin: 0 .2rem;
}
.cid-uHXWx7NASp .soc-item .socicon {
  font-size: 1.5rem;
  color: #073b4c;
  opacity: 1;
}
.cid-uHXWx7NASp .soc-item .socicon:hover {
  opacity: .5;
}
.cid-uHXWx7NASp .input-group-btn {
  display: block;
}
@media (max-width: 767px) {
  .cid-uHXWx7NASp .first-column,
  .cid-uHXWx7NASp .form-1 {
    text-align: center;
  }
}
.cid-uHXWx8ZMfi {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-uHXWx8ZMfi .container {
  max-width: 1400px;
}
.cid-uHXWx8ZMfi .card-img2 span {
  padding-top: 6px;
}
.cid-uHXWx8ZMfi .soc-item a {
  padding-top: 5px;
}
.cid-uHXWx8ZMfi .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-uHXWx8ZMfi .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-uHXWx8ZMfi .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-uHXWx8ZMfi .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uHXWx8ZMfi svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-uHXWx8ZMfi #e2_shape {
  fill: #2681cd !important;
}
.cid-uHXWx8ZMfi .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-uHXWx8ZMfi .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-uHXWx8ZMfi .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uHXWx8ZMfi .card-img {
  width: auto;
}
.cid-uHXWx8ZMfi .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-uHXWx8ZMfi .soc-item span {
  font-size: 1.4rem;
}
.cid-uHXWx8ZMfi .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-uHXWx8ZMfi .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uHXWx8ZMfi .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uHXWx8ZMfi .media-wrap {
  margin-bottom: 1rem;
}
.cid-uHXWx8ZMfi .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uHXWx8ZMfi img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-uHXWx8ZMfi .item {
    justify-content: center;
  }
  .cid-uHXWx8ZMfi .quote::after {
    left: 60px;
  }
}
.cid-uHXWx8ZMfi .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-uHXWx8ZMfi .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uHXWx8ZMfi .text1 {
  color: #ffffff;
}
.cid-uHXWx8ZMfi .item-title {
  color: #ffffff;
}
.cid-uHXWx8ZMfi H5 {
  color: #ffffff;
  text-align: left;
}
.cid-uHXWx8ZMfi .theme {
  color: #ffffff;
}
.cid-uHXWx8ZMfi .copyright > p {
  color: #ff3366;
}
.cid-uHXWx8ZMfi .text2 {
  color: #ffffff;
}
.cid-uHXWxa63vA {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-uHXWxa63vA .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-uHYbtt1QQp .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-uHYbtt1QQp .navbar-fixed-top {
  padding-top: 0;
}
.cid-uHYbtt1QQp .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uHYbtt1QQp .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uHYbtt1QQp .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uHYbtt1QQp .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uHYbtt1QQp .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uHYbtt1QQp .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uHYbtt1QQp .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uHYbtt1QQp .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uHYbtt1QQp .dropdown-item {
  padding: 0;
}
.cid-uHYbtt1QQp .dropdown-item,
.cid-uHYbtt1QQp .nav-link,
.cid-uHYbtt1QQp .brand-name {
  font-style: normal;
}
.cid-uHYbtt1QQp .dropdown-item:hover,
.cid-uHYbtt1QQp .nav-link:hover,
.cid-uHYbtt1QQp .brand-name:hover {
  color: #ff3366 !important;
}
.cid-uHYbtt1QQp .dropdown-menu {
  background-color: #0a1c44;
}
.cid-uHYbtt1QQp .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-uHYbtt1QQp .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-uHYbtt1QQp .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-uHYbtt1QQp .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uHYbtt1QQp .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-uHYbtt1QQp .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-uHYbtt1QQp .content-text {
  margin-bottom: 0;
}
.cid-uHYbtt1QQp .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uHYbtt1QQp .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uHYbtt1QQp .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uHYbtt1QQp .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uHYbtt1QQp .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-uHYbtt1QQp .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uHYbtt1QQp .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uHYbtt1QQp .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uHYbtt1QQp .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHYbtt1QQp .nav-dropdown .link {
  font-weight: 400;
}
.cid-uHYbtt1QQp .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uHYbtt1QQp .content-right-side {
  text-align: center;
}
.cid-uHYbtt1QQp .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uHYbtt1QQp .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uHYbtt1QQp .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-uHYbtt1QQp .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uHYbtt1QQp .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uHYbtt1QQp .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uHYbtt1QQp .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uHYbtt1QQp .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uHYbtt1QQp .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-uHYbtt1QQp .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-uHYbtt1QQp .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-uHYbtt1QQp .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uHYbtt1QQp .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uHYbtt1QQp .navbar {
    display: block;
    padding: 0;
  }
  .cid-uHYbtt1QQp .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uHYbtt1QQp .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uHYbtt1QQp .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uHYbtt1QQp .navbar-toggler {
    display: none;
  }
  .cid-uHYbtt1QQp .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uHYbtt1QQp .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uHYbtt1QQp .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uHYbtt1QQp .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uHYbtt1QQp .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uHYbtt1QQp .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uHYbtt1QQp .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHYbtt1QQp .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uHYbtt1QQp .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uHYbtt1QQp .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uHYbtt1QQp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHYbtt1QQp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHYbtt1QQp .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uHYbtt1QQp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHYbtt1QQp .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-uHYbtt1QQp .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uHYbtt1QQp .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHYbtt1QQp .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uHYbtt1QQp .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uHYbtt1QQp .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uHYbtt1QQp .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uHYbtt1QQp .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-uHYbtt1QQp .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uHYbtt1QQp button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-uHYbtt1QQp button.navbar-toggler:focus {
  outline: none;
}
.cid-uHYbtt1QQp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-uHYbtt1QQp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHYbtt1QQp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHYbtt1QQp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHYbtt1QQp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHYbtt1QQp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHYbtt1QQp nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHYbtt1QQp nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHYbtt1QQp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHYbtt1QQp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHYbtt1QQp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHYbtt1QQp .collapsed .btn {
  display: flex;
}
.cid-uHYbtt1QQp .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uHYbtt1QQp .collapsed .navbar-collapse.collapsing,
.cid-uHYbtt1QQp .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uHYbtt1QQp .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uHYbtt1QQp .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uHYbtt1QQp .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uHYbtt1QQp .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uHYbtt1QQp .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uHYbtt1QQp .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uHYbtt1QQp .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uHYbtt1QQp .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-uHYbtt1QQp .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uHYbtt1QQp .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uHYbtt1QQp .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uHYbtt1QQp .collapsed button.navbar-toggler {
  display: block;
}
.cid-uHYbtt1QQp .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uHYbtt1QQp .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uHYbtt1QQp .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uHYbtt1QQp .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uHYbtt1QQp .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uHYbtt1QQp .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uHYbtt1QQp .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-uHYbtt1QQp .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-uHYbtt1QQp .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-uHYbtt1QQp .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-uHYbtt1QQp .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uHYbtt1QQp .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uHYbtt1QQp .navbar-collapse.collapsing,
  .cid-uHYbtt1QQp .navbar-collapse.show {
    display: block !important;
  }
  .cid-uHYbtt1QQp .navbar-collapse.collapsing .navbar-nav,
  .cid-uHYbtt1QQp .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uHYbtt1QQp .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uHYbtt1QQp .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uHYbtt1QQp .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uHYbtt1QQp .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uHYbtt1QQp .navbar-collapse.collapsing .navbar-buttons,
  .cid-uHYbtt1QQp .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uHYbtt1QQp .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uHYbtt1QQp .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uHYbtt1QQp img {
    height: 3.8rem !important;
  }
  .cid-uHYbtt1QQp .btn {
    display: flex;
  }
  .cid-uHYbtt1QQp button.navbar-toggler {
    display: block;
  }
  .cid-uHYbtt1QQp .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uHYbtt1QQp .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uHYbtt1QQp .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uHYbtt1QQp .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uHYbtt1QQp .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uHYbtt1QQp .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uHYbtt1QQp .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uHYbtt1QQp .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uHYbtt1QQp .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uHYbtt1QQp .nav-link:focus {
  outline: none;
}
.cid-uHYbtt1QQp .navbar-toggler {
  position: relative;
}
.cid-uHYbtt1QQp .dropdown-item.active,
.cid-uHYbtt1QQp .dropdown-item:active {
  color: initial;
}
.cid-uHYbtt1QQp .widget-title,
.cid-uHYbtt1QQp .widget-icon {
  color: #ffffff;
}
.cid-uHYbtt1QQp .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-uHYbtt1QQp .menu-logo {
    display: none;
  }
  .cid-uHYbtt1QQp .navbar {
    padding: 0;
  }
  .cid-uHYbtt1QQp .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uHYbtt1QQp button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-uHYbttMAD3 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-uHYbttMAD3 .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uHYbttMAD3 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uHYbttMAD3 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uHYbttMAD3 .mbr-text {
    text-align: center;
  }
}
.cid-uHYbttMAD3 .mbr-text,
.cid-uHYbttMAD3 .mbr-section-btn {
  color: #ffffff;
}
.cid-uZ8jwh4In5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #073b4c;
}
.cid-uZ8jwh4In5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8jwh4In5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ8jwh4In5 .container-fluid {
  padding: 0 28px;
}
@media (max-width: 992px) {
  .cid-uZ8jwh4In5 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uZ8jwh4In5 .container-fluid {
    padding: 0 14px;
  }
}
@media (max-width: 992px) {
  .cid-uZ8jwh4In5 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uZ8jwh4In5 .container {
    padding: 0 14px;
  }
}
.cid-uZ8jwh4In5 .content-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-uZ8jwh4In5 .content-wrapper .link-wrapper {
  display: block;
}
.cid-uZ8jwh4In5 .content-wrapper .link-wrapper:hover .mbr-link,
.cid-uZ8jwh4In5 .content-wrapper .link-wrapper:focus .mbr-link {
  color: #2681cd;
}
.cid-uZ8jwh4In5 .content-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uZ8jwh4In5 .mbr-text {
  color: #efeeee;
  text-align: center;
}
.cid-uZ8jwh4In5 .mbr-link {
  color: #efeeee;
  text-align: center;
}
.cid-uHYbtwhSdI {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-uHYbtwhSdI .container {
  max-width: 1400px;
}
.cid-uHYbtwhSdI .card-img2 span {
  padding-top: 6px;
}
.cid-uHYbtwhSdI .soc-item a {
  padding-top: 5px;
}
.cid-uHYbtwhSdI .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-uHYbtwhSdI .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-uHYbtwhSdI .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-uHYbtwhSdI .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uHYbtwhSdI svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-uHYbtwhSdI #e2_shape {
  fill: #2681cd !important;
}
.cid-uHYbtwhSdI .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-uHYbtwhSdI .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-uHYbtwhSdI .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uHYbtwhSdI .card-img {
  width: auto;
}
.cid-uHYbtwhSdI .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-uHYbtwhSdI .soc-item span {
  font-size: 1.4rem;
}
.cid-uHYbtwhSdI .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-uHYbtwhSdI .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uHYbtwhSdI .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uHYbtwhSdI .media-wrap {
  margin-bottom: 1rem;
}
.cid-uHYbtwhSdI .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uHYbtwhSdI img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-uHYbtwhSdI .item {
    justify-content: center;
  }
  .cid-uHYbtwhSdI .quote::after {
    left: 60px;
  }
}
.cid-uHYbtwhSdI .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-uHYbtwhSdI .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uHYbtwhSdI .text1 {
  color: #ffffff;
}
.cid-uHYbtwhSdI .item-title {
  color: #ffffff;
}
.cid-uHYbtwhSdI H5 {
  color: #ffffff;
  text-align: left;
}
.cid-uHYbtwhSdI .theme {
  color: #ffffff;
}
.cid-uHYbtwhSdI .copyright > p {
  color: #ff3366;
}
.cid-uHYbtwhSdI .text2 {
  color: #ffffff;
}
.cid-uHYbtxksVD {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-uHYbtxksVD .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-uJKQUgZsGE .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-uJKQUgZsGE .navbar-fixed-top {
  padding-top: 0;
}
.cid-uJKQUgZsGE .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uJKQUgZsGE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uJKQUgZsGE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uJKQUgZsGE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uJKQUgZsGE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uJKQUgZsGE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uJKQUgZsGE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uJKQUgZsGE .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uJKQUgZsGE .dropdown-item {
  padding: 0;
}
.cid-uJKQUgZsGE .dropdown-item,
.cid-uJKQUgZsGE .nav-link,
.cid-uJKQUgZsGE .brand-name {
  font-style: normal;
}
.cid-uJKQUgZsGE .dropdown-item:hover,
.cid-uJKQUgZsGE .nav-link:hover,
.cid-uJKQUgZsGE .brand-name:hover {
  color: #ff3366 !important;
}
.cid-uJKQUgZsGE .dropdown-menu {
  background-color: #0a1c44;
}
.cid-uJKQUgZsGE .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-uJKQUgZsGE .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-uJKQUgZsGE .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-uJKQUgZsGE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uJKQUgZsGE .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-uJKQUgZsGE .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-uJKQUgZsGE .content-text {
  margin-bottom: 0;
}
.cid-uJKQUgZsGE .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uJKQUgZsGE .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uJKQUgZsGE .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uJKQUgZsGE .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uJKQUgZsGE .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-uJKQUgZsGE .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uJKQUgZsGE .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uJKQUgZsGE .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uJKQUgZsGE .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uJKQUgZsGE .nav-dropdown .link {
  font-weight: 400;
}
.cid-uJKQUgZsGE .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uJKQUgZsGE .content-right-side {
  text-align: center;
}
.cid-uJKQUgZsGE .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uJKQUgZsGE .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uJKQUgZsGE .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-uJKQUgZsGE .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uJKQUgZsGE .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uJKQUgZsGE .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uJKQUgZsGE .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uJKQUgZsGE .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uJKQUgZsGE .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-uJKQUgZsGE .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-uJKQUgZsGE .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-uJKQUgZsGE .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uJKQUgZsGE .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uJKQUgZsGE .navbar {
    display: block;
    padding: 0;
  }
  .cid-uJKQUgZsGE .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uJKQUgZsGE .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uJKQUgZsGE .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uJKQUgZsGE .navbar-toggler {
    display: none;
  }
  .cid-uJKQUgZsGE .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uJKQUgZsGE .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uJKQUgZsGE .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uJKQUgZsGE .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uJKQUgZsGE .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uJKQUgZsGE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uJKQUgZsGE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJKQUgZsGE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uJKQUgZsGE .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uJKQUgZsGE .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uJKQUgZsGE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uJKQUgZsGE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJKQUgZsGE .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uJKQUgZsGE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uJKQUgZsGE .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-uJKQUgZsGE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uJKQUgZsGE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJKQUgZsGE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uJKQUgZsGE .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uJKQUgZsGE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uJKQUgZsGE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uJKQUgZsGE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-uJKQUgZsGE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uJKQUgZsGE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-uJKQUgZsGE button.navbar-toggler:focus {
  outline: none;
}
.cid-uJKQUgZsGE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-uJKQUgZsGE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJKQUgZsGE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJKQUgZsGE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJKQUgZsGE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJKQUgZsGE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJKQUgZsGE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJKQUgZsGE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJKQUgZsGE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJKQUgZsGE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJKQUgZsGE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJKQUgZsGE .collapsed .btn {
  display: flex;
}
.cid-uJKQUgZsGE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uJKQUgZsGE .collapsed .navbar-collapse.collapsing,
.cid-uJKQUgZsGE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uJKQUgZsGE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uJKQUgZsGE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uJKQUgZsGE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uJKQUgZsGE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uJKQUgZsGE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uJKQUgZsGE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uJKQUgZsGE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uJKQUgZsGE .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-uJKQUgZsGE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uJKQUgZsGE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uJKQUgZsGE .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uJKQUgZsGE .collapsed button.navbar-toggler {
  display: block;
}
.cid-uJKQUgZsGE .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uJKQUgZsGE .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uJKQUgZsGE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uJKQUgZsGE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uJKQUgZsGE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uJKQUgZsGE .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uJKQUgZsGE .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-uJKQUgZsGE .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-uJKQUgZsGE .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-uJKQUgZsGE .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-uJKQUgZsGE .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uJKQUgZsGE .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uJKQUgZsGE .navbar-collapse.collapsing,
  .cid-uJKQUgZsGE .navbar-collapse.show {
    display: block !important;
  }
  .cid-uJKQUgZsGE .navbar-collapse.collapsing .navbar-nav,
  .cid-uJKQUgZsGE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uJKQUgZsGE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uJKQUgZsGE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uJKQUgZsGE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uJKQUgZsGE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uJKQUgZsGE .navbar-collapse.collapsing .navbar-buttons,
  .cid-uJKQUgZsGE .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uJKQUgZsGE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uJKQUgZsGE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uJKQUgZsGE img {
    height: 3.8rem !important;
  }
  .cid-uJKQUgZsGE .btn {
    display: flex;
  }
  .cid-uJKQUgZsGE button.navbar-toggler {
    display: block;
  }
  .cid-uJKQUgZsGE .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uJKQUgZsGE .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uJKQUgZsGE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uJKQUgZsGE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uJKQUgZsGE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uJKQUgZsGE .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uJKQUgZsGE .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uJKQUgZsGE .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uJKQUgZsGE .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uJKQUgZsGE .nav-link:focus {
  outline: none;
}
.cid-uJKQUgZsGE .navbar-toggler {
  position: relative;
}
.cid-uJKQUgZsGE .dropdown-item.active,
.cid-uJKQUgZsGE .dropdown-item:active {
  color: initial;
}
.cid-uJKQUgZsGE .widget-title,
.cid-uJKQUgZsGE .widget-icon {
  color: #ffffff;
}
.cid-uJKQUgZsGE .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-uJKQUgZsGE .menu-logo {
    display: none;
  }
  .cid-uJKQUgZsGE .navbar {
    padding: 0;
  }
  .cid-uJKQUgZsGE .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uJKQUgZsGE button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-uJKQUhtCz9 {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-uJKQUhtCz9 .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-uJKQUhtCz9 .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-uJKQUhtCz9 .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-uJKQUhtCz9 .mbr-text,
.cid-uJKQUhtCz9 .mbr-section-btn {
  text-align: center;
}
.cid-uJKQUi0RVM {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-uJKQUi0RVM .mbr-text {
  position: relative;
  text-align: left;
  color: #465052;
}
.cid-uJKQUi0RVM .mbr-text:before {
  color: #efefef;
  content: "\201C";
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.2em;
  vertical-align: -0.4em;
  position: absolute;
  top: 10px;
  left: -2rem;
}
.cid-uJKQUi0RVM img {
  object-fit: contain;
}
.cid-uJKQUi0RVM .mbr-text:after {
  color: #efefef;
  content: "\201D";
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.45em;
  position: absolute;
  bottom: 10px;
  right: -2rem;
}
@media (max-width: 767px) {
  .cid-uJKQUi0RVM .mbr-text:after,
  .cid-uJKQUi0RVM .mbr-text:before {
    display: none;
  }
}
.cid-uJKQUi0RVM .mbr-section-title,
.cid-uJKQUi0RVM .logo {
  color: #465052;
}
.cid-uJKQUizCGB {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uJKQUizCGB *:focus {
  outline: none;
}
.cid-uJKQUizCGB .form-group {
  margin-bottom: 2rem;
}
.cid-uJKQUizCGB .form-control {
  width: 100%;
  border: none;
  background: transparent;
  border-bottom: 2px solid #282124;
  color: #282124;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1px;
  min-height: 35px;
}
.cid-uJKQUizCGB .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-uJKQUizCGB .form-control::-webkit-input-placeholder {
  color: #282124;
}
.cid-uJKQUizCGB .form-control::-moz-placeholder {
  color: #282124;
}
.cid-uJKQUizCGB .form-control:-ms-input-placeholder {
  color: #282124;
}
.cid-uJKQUizCGB .form-control:-moz-placeholder {
  color: #282124;
}
.cid-uJKQUizCGB input.form-control {
  padding: 1px 0;
}
.cid-uJKQUizCGB .soc-item {
  display: inline-block;
  margin: 0 .2rem;
}
.cid-uJKQUizCGB .soc-item .socicon {
  font-size: 1.5rem;
  color: #073b4c;
  opacity: 1;
}
.cid-uJKQUizCGB .soc-item .socicon:hover {
  opacity: .5;
}
.cid-uJKQUizCGB .input-group-btn {
  display: block;
}
@media (max-width: 767px) {
  .cid-uJKQUizCGB .first-column,
  .cid-uJKQUizCGB .form-1 {
    text-align: center;
  }
}
.cid-uJKQUjpbZc {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-uJKQUjpbZc .container {
  max-width: 1400px;
}
.cid-uJKQUjpbZc .card-img2 span {
  padding-top: 6px;
}
.cid-uJKQUjpbZc .soc-item a {
  padding-top: 5px;
}
.cid-uJKQUjpbZc .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-uJKQUjpbZc .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-uJKQUjpbZc .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-uJKQUjpbZc .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uJKQUjpbZc svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-uJKQUjpbZc #e2_shape {
  fill: #2681cd !important;
}
.cid-uJKQUjpbZc .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-uJKQUjpbZc .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-uJKQUjpbZc .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uJKQUjpbZc .card-img {
  width: auto;
}
.cid-uJKQUjpbZc .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-uJKQUjpbZc .soc-item span {
  font-size: 1.4rem;
}
.cid-uJKQUjpbZc .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-uJKQUjpbZc .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uJKQUjpbZc .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uJKQUjpbZc .media-wrap {
  margin-bottom: 1rem;
}
.cid-uJKQUjpbZc .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uJKQUjpbZc img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-uJKQUjpbZc .item {
    justify-content: center;
  }
  .cid-uJKQUjpbZc .quote::after {
    left: 60px;
  }
}
.cid-uJKQUjpbZc .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-uJKQUjpbZc .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uJKQUjpbZc .text1 {
  color: #ffffff;
}
.cid-uJKQUjpbZc .item-title {
  color: #ffffff;
}
.cid-uJKQUjpbZc H5 {
  color: #ffffff;
  text-align: left;
}
.cid-uJKQUjpbZc .theme {
  color: #ffffff;
}
.cid-uJKQUjpbZc .copyright > p {
  color: #ff3366;
}
.cid-uJKQUjpbZc .text2 {
  color: #ffffff;
}
.cid-uJKQUkgVZm {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-uJKQUkgVZm .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-uNZraVDkYl {
  padding-top: 120px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/iptv-1920-1920x507.jpeg");
}
@media (min-width: 992px) {
  .cid-uNZraVDkYl .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNZraVDkYl .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uNZraVDkYl .mbr-text {
    text-align: center;
  }
}
.cid-uNZraVDkYl .mbr-text,
.cid-uNZraVDkYl .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uNZraVDkYl H3 {
  text-align: center;
}
.cid-uNZrC4WSqR {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uNZrC4WSqR .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-uNZrC4WSqR .btn {
  margin: 0 0 .5rem 0;
}
.cid-uNZrC4WSqR .content-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-uNZrC4WSqR H2 {
  color: #073b4c;
}
.cid-uP2nT1vELW {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efeeee;
}
.cid-uP2nT1vELW .title {
  padding: 0 1em;
  margin-bottom: 25px;
  color: #232323;
}
.cid-uP2nT1vELW .price-item {
  background: #ffffff;
  padding: 25px 0em;
  margin-bottom: 1em;
  border: 1px solid #f1f1f1;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.cid-uP2nT1vELW .price-tage {
  background: #3a9bbc none repeat scroll 0 0;
  padding: 15px 1em;
}
.cid-uP2nT1vELW .price-tage > p {
  letter-spacing: 2px;
}
.cid-uP2nT1vELW .table-content {
  padding: 0;
  margin-bottom: 25px;
}
.cid-uP2nT1vELW .table-content > li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
  padding: 1em;
}
.cid-uP2nT1vELW .table-content > li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.cid-uP2nT1vELW .table-content > li:nth-child(2n) {
  background: #f2f2f2 none repeat scroll 0 0;
}
.cid-uP2nT1vELW .costs {
  color: #ffffff;
}
.cid-uP2nT1vELW .costs-title {
  color: #ffffff;
}
.cid-uNZraXWmGt {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-uNZraXWmGt .container {
  max-width: 1400px;
}
.cid-uNZraXWmGt .card-img2 span {
  padding-top: 6px;
}
.cid-uNZraXWmGt .soc-item a {
  padding-top: 5px;
}
.cid-uNZraXWmGt .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-uNZraXWmGt .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-uNZraXWmGt .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-uNZraXWmGt .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uNZraXWmGt svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-uNZraXWmGt #e2_shape {
  fill: #2681cd !important;
}
.cid-uNZraXWmGt .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-uNZraXWmGt .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-uNZraXWmGt .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uNZraXWmGt .card-img {
  width: auto;
}
.cid-uNZraXWmGt .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-uNZraXWmGt .soc-item span {
  font-size: 1.4rem;
}
.cid-uNZraXWmGt .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-uNZraXWmGt .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uNZraXWmGt .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uNZraXWmGt .media-wrap {
  margin-bottom: 1rem;
}
.cid-uNZraXWmGt .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uNZraXWmGt img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-uNZraXWmGt .item {
    justify-content: center;
  }
  .cid-uNZraXWmGt .quote::after {
    left: 60px;
  }
}
.cid-uNZraXWmGt .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-uNZraXWmGt .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uNZraXWmGt .text1 {
  color: #ffffff;
}
.cid-uNZraXWmGt .item-title {
  color: #ffffff;
}
.cid-uNZraXWmGt H5 {
  color: #ffffff;
  text-align: left;
}
.cid-uNZraXWmGt .theme {
  color: #ffffff;
}
.cid-uNZraXWmGt .copyright > p {
  color: #ff3366;
}
.cid-uNZraXWmGt .text2 {
  color: #ffffff;
}
.cid-uNZraYZHgn .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-uNZraYZHgn .navbar-fixed-top {
  padding-top: 0;
}
.cid-uNZraYZHgn .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uNZraYZHgn .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uNZraYZHgn .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uNZraYZHgn .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uNZraYZHgn .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uNZraYZHgn .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uNZraYZHgn .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uNZraYZHgn .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uNZraYZHgn .dropdown-item {
  padding: 0;
}
.cid-uNZraYZHgn .dropdown-item,
.cid-uNZraYZHgn .nav-link,
.cid-uNZraYZHgn .brand-name {
  font-style: normal;
}
.cid-uNZraYZHgn .dropdown-item:hover,
.cid-uNZraYZHgn .nav-link:hover,
.cid-uNZraYZHgn .brand-name:hover {
  color: #ff3366 !important;
}
.cid-uNZraYZHgn .dropdown-menu {
  background-color: #0a1c44;
}
.cid-uNZraYZHgn .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-uNZraYZHgn .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-uNZraYZHgn .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-uNZraYZHgn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uNZraYZHgn .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-uNZraYZHgn .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-uNZraYZHgn .content-text {
  margin-bottom: 0;
}
.cid-uNZraYZHgn .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uNZraYZHgn .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uNZraYZHgn .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uNZraYZHgn .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uNZraYZHgn .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-uNZraYZHgn .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uNZraYZHgn .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uNZraYZHgn .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uNZraYZHgn .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uNZraYZHgn .nav-dropdown .link {
  font-weight: 400;
}
.cid-uNZraYZHgn .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uNZraYZHgn .content-right-side {
  text-align: center;
}
.cid-uNZraYZHgn .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uNZraYZHgn .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uNZraYZHgn .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-uNZraYZHgn .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uNZraYZHgn .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uNZraYZHgn .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uNZraYZHgn .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uNZraYZHgn .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uNZraYZHgn .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-uNZraYZHgn .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-uNZraYZHgn .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-uNZraYZHgn .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uNZraYZHgn .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uNZraYZHgn .navbar {
    display: block;
    padding: 0;
  }
  .cid-uNZraYZHgn .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uNZraYZHgn .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uNZraYZHgn .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uNZraYZHgn .navbar-toggler {
    display: none;
  }
  .cid-uNZraYZHgn .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uNZraYZHgn .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uNZraYZHgn .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uNZraYZHgn .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uNZraYZHgn .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uNZraYZHgn .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uNZraYZHgn .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uNZraYZHgn .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uNZraYZHgn .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uNZraYZHgn .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uNZraYZHgn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uNZraYZHgn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNZraYZHgn .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uNZraYZHgn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uNZraYZHgn .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-uNZraYZHgn .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uNZraYZHgn .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNZraYZHgn .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uNZraYZHgn .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uNZraYZHgn .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uNZraYZHgn .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uNZraYZHgn .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-uNZraYZHgn .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uNZraYZHgn button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-uNZraYZHgn button.navbar-toggler:focus {
  outline: none;
}
.cid-uNZraYZHgn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-uNZraYZHgn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNZraYZHgn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNZraYZHgn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNZraYZHgn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNZraYZHgn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNZraYZHgn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNZraYZHgn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNZraYZHgn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNZraYZHgn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNZraYZHgn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNZraYZHgn .collapsed .btn {
  display: flex;
}
.cid-uNZraYZHgn .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uNZraYZHgn .collapsed .navbar-collapse.collapsing,
.cid-uNZraYZHgn .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uNZraYZHgn .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uNZraYZHgn .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uNZraYZHgn .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uNZraYZHgn .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uNZraYZHgn .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uNZraYZHgn .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uNZraYZHgn .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uNZraYZHgn .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-uNZraYZHgn .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uNZraYZHgn .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uNZraYZHgn .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uNZraYZHgn .collapsed button.navbar-toggler {
  display: block;
}
.cid-uNZraYZHgn .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uNZraYZHgn .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uNZraYZHgn .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uNZraYZHgn .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uNZraYZHgn .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uNZraYZHgn .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uNZraYZHgn .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-uNZraYZHgn .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-uNZraYZHgn .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-uNZraYZHgn .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-uNZraYZHgn .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uNZraYZHgn .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uNZraYZHgn .navbar-collapse.collapsing,
  .cid-uNZraYZHgn .navbar-collapse.show {
    display: block !important;
  }
  .cid-uNZraYZHgn .navbar-collapse.collapsing .navbar-nav,
  .cid-uNZraYZHgn .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uNZraYZHgn .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uNZraYZHgn .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uNZraYZHgn .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uNZraYZHgn .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uNZraYZHgn .navbar-collapse.collapsing .navbar-buttons,
  .cid-uNZraYZHgn .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uNZraYZHgn .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uNZraYZHgn .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uNZraYZHgn img {
    height: 3.8rem !important;
  }
  .cid-uNZraYZHgn .btn {
    display: flex;
  }
  .cid-uNZraYZHgn button.navbar-toggler {
    display: block;
  }
  .cid-uNZraYZHgn .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uNZraYZHgn .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uNZraYZHgn .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uNZraYZHgn .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uNZraYZHgn .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uNZraYZHgn .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uNZraYZHgn .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uNZraYZHgn .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uNZraYZHgn .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uNZraYZHgn .nav-link:focus {
  outline: none;
}
.cid-uNZraYZHgn .navbar-toggler {
  position: relative;
}
.cid-uNZraYZHgn .dropdown-item.active,
.cid-uNZraYZHgn .dropdown-item:active {
  color: initial;
}
.cid-uNZraYZHgn .widget-title,
.cid-uNZraYZHgn .widget-icon {
  color: #ffffff;
}
.cid-uNZraYZHgn .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-uNZraYZHgn .menu-logo {
    display: none;
  }
  .cid-uNZraYZHgn .navbar {
    padding: 0;
  }
  .cid-uNZraYZHgn .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uNZraYZHgn button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-uNZraZIZTU {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-uNZraZIZTU .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-uNZrb08xwU.popup-builder {
  background-color: #ffffff;
}
.cid-uNZrb08xwU.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uNZrb08xwU.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uNZrb08xwU .modal-content,
.cid-uNZrb08xwU .modal-dialog {
  height: auto;
}
.cid-uNZrb08xwU .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uNZrb08xwU .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uNZrb08xwU .form-wrapper .mbr-form .form-group,
  .cid-uNZrb08xwU .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uNZrb08xwU .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uNZrb08xwU .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uNZrb08xwU .mbr-text {
  text-align: center;
}
.cid-uNZrb08xwU .pt-0 {
  padding-top: 0 !important;
}
.cid-uNZrb08xwU .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uNZrb08xwU .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uNZrb08xwU .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uNZrb08xwU .modal-open {
  overflow: hidden;
}
.cid-uNZrb08xwU .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uNZrb08xwU .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uNZrb08xwU .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uNZrb08xwU .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uNZrb08xwU .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uNZrb08xwU .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uNZrb08xwU .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uNZrb08xwU .modal-content {
  background: #efeeee;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uNZrb08xwU .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uNZrb08xwU .modal-backdrop.fade {
  opacity: 0;
}
.cid-uNZrb08xwU .modal-backdrop.show {
  opacity: .5;
}
.cid-uNZrb08xwU .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-uNZrb08xwU .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uNZrb08xwU .modal-header .close:hover {
  opacity: 1;
}
.cid-uNZrb08xwU .modal-header .close:focus {
  outline: none;
}
.cid-uNZrb08xwU .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #073b4c;
}
.cid-uNZrb08xwU .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-uNZrb08xwU .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-uNZrb08xwU .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uNZrb08xwU .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uNZrb08xwU .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uNZrb08xwU .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uNZrb08xwU .modal-sm {
    max-width: 300px;
  }
  .cid-uNZrb08xwU .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uNZrb08xwU .modal-lg,
  .cid-uNZrb08xwU .modal-xl {
    max-width: 800px;
  }
  .cid-uNZrb08xwU .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uNZrb08xwU .modal-xl {
    max-width: 1140px;
  }
  .cid-uNZrb08xwU .container {
    max-width: 1140px;
  }
}
.cid-uNZrb08xwU .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uNZrb08xwU .container {
    max-width: 720px;
  }
}
.cid-uNZrb08xwU .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uNZrb08xwU .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uNZrb08xwU .form-group {
  margin-bottom: 1rem;
}
.cid-uNZrb08xwU .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uNZrb08xwU .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uNZrb08xwU .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uP2skrt9ha .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-uP2skrt9ha .navbar-fixed-top {
  padding-top: 0;
}
.cid-uP2skrt9ha .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uP2skrt9ha .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uP2skrt9ha .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uP2skrt9ha .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uP2skrt9ha .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uP2skrt9ha .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uP2skrt9ha .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uP2skrt9ha .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uP2skrt9ha .dropdown-item {
  padding: 0;
}
.cid-uP2skrt9ha .dropdown-item,
.cid-uP2skrt9ha .nav-link,
.cid-uP2skrt9ha .brand-name {
  font-style: normal;
}
.cid-uP2skrt9ha .dropdown-item:hover,
.cid-uP2skrt9ha .nav-link:hover,
.cid-uP2skrt9ha .brand-name:hover {
  color: #ff3366 !important;
}
.cid-uP2skrt9ha .dropdown-menu {
  background-color: #0a1c44;
}
.cid-uP2skrt9ha .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-uP2skrt9ha .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-uP2skrt9ha .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-uP2skrt9ha .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uP2skrt9ha .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-uP2skrt9ha .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-uP2skrt9ha .content-text {
  margin-bottom: 0;
}
.cid-uP2skrt9ha .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uP2skrt9ha .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uP2skrt9ha .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uP2skrt9ha .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uP2skrt9ha .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-uP2skrt9ha .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uP2skrt9ha .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uP2skrt9ha .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uP2skrt9ha .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uP2skrt9ha .nav-dropdown .link {
  font-weight: 400;
}
.cid-uP2skrt9ha .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uP2skrt9ha .content-right-side {
  text-align: center;
}
.cid-uP2skrt9ha .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uP2skrt9ha .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uP2skrt9ha .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-uP2skrt9ha .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uP2skrt9ha .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uP2skrt9ha .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uP2skrt9ha .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uP2skrt9ha .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uP2skrt9ha .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-uP2skrt9ha .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-uP2skrt9ha .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-uP2skrt9ha .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uP2skrt9ha .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uP2skrt9ha .navbar {
    display: block;
    padding: 0;
  }
  .cid-uP2skrt9ha .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uP2skrt9ha .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uP2skrt9ha .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uP2skrt9ha .navbar-toggler {
    display: none;
  }
  .cid-uP2skrt9ha .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uP2skrt9ha .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uP2skrt9ha .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uP2skrt9ha .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uP2skrt9ha .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uP2skrt9ha .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uP2skrt9ha .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uP2skrt9ha .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uP2skrt9ha .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uP2skrt9ha .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uP2skrt9ha .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uP2skrt9ha .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uP2skrt9ha .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uP2skrt9ha .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uP2skrt9ha .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-uP2skrt9ha .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uP2skrt9ha .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uP2skrt9ha .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uP2skrt9ha .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uP2skrt9ha .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uP2skrt9ha .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uP2skrt9ha .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-uP2skrt9ha .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uP2skrt9ha button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-uP2skrt9ha button.navbar-toggler:focus {
  outline: none;
}
.cid-uP2skrt9ha button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-uP2skrt9ha button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uP2skrt9ha button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP2skrt9ha button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP2skrt9ha button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uP2skrt9ha nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP2skrt9ha nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uP2skrt9ha nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uP2skrt9ha nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP2skrt9ha .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uP2skrt9ha .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uP2skrt9ha .collapsed .btn {
  display: flex;
}
.cid-uP2skrt9ha .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uP2skrt9ha .collapsed .navbar-collapse.collapsing,
.cid-uP2skrt9ha .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uP2skrt9ha .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uP2skrt9ha .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uP2skrt9ha .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uP2skrt9ha .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uP2skrt9ha .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uP2skrt9ha .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uP2skrt9ha .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uP2skrt9ha .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-uP2skrt9ha .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uP2skrt9ha .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uP2skrt9ha .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uP2skrt9ha .collapsed button.navbar-toggler {
  display: block;
}
.cid-uP2skrt9ha .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uP2skrt9ha .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uP2skrt9ha .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uP2skrt9ha .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uP2skrt9ha .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uP2skrt9ha .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uP2skrt9ha .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-uP2skrt9ha .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-uP2skrt9ha .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-uP2skrt9ha .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-uP2skrt9ha .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uP2skrt9ha .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uP2skrt9ha .navbar-collapse.collapsing,
  .cid-uP2skrt9ha .navbar-collapse.show {
    display: block !important;
  }
  .cid-uP2skrt9ha .navbar-collapse.collapsing .navbar-nav,
  .cid-uP2skrt9ha .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uP2skrt9ha .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uP2skrt9ha .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uP2skrt9ha .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uP2skrt9ha .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uP2skrt9ha .navbar-collapse.collapsing .navbar-buttons,
  .cid-uP2skrt9ha .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uP2skrt9ha .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uP2skrt9ha .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uP2skrt9ha img {
    height: 3.8rem !important;
  }
  .cid-uP2skrt9ha .btn {
    display: flex;
  }
  .cid-uP2skrt9ha button.navbar-toggler {
    display: block;
  }
  .cid-uP2skrt9ha .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uP2skrt9ha .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uP2skrt9ha .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uP2skrt9ha .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uP2skrt9ha .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uP2skrt9ha .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uP2skrt9ha .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uP2skrt9ha .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uP2skrt9ha .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uP2skrt9ha .nav-link:focus {
  outline: none;
}
.cid-uP2skrt9ha .navbar-toggler {
  position: relative;
}
.cid-uP2skrt9ha .dropdown-item.active,
.cid-uP2skrt9ha .dropdown-item:active {
  color: initial;
}
.cid-uP2skrt9ha .widget-title,
.cid-uP2skrt9ha .widget-icon {
  color: #ffffff;
}
.cid-uP2skrt9ha .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-uP2skrt9ha .menu-logo {
    display: none;
  }
  .cid-uP2skrt9ha .navbar {
    padding: 0;
  }
  .cid-uP2skrt9ha .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uP2skrt9ha button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-uP2sks3z28 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-uP2sks3z28 .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-uP2sksx40N {
  padding-top: 120px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/16-1600x600.jpg");
}
.cid-uP2sksx40N H3 {
  color: #ffffff;
}
.cid-uP2sksx40N .mbr-text,
.cid-uP2sksx40N .mbr-section-btn {
  color: #efefef;
}
.cid-uP2skt4w80 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efeeee;
}
.cid-uP2skt4w80 .line {
  background-color: #0f7699;
  color: #0f7699;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uP2skt4w80 .section-text {
  padding: 2rem 0;
  color: #e8543e;
}
.cid-uP2skt4w80 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uP2skt4w80 .inner-container {
    width: 100% !important;
  }
}
.cid-uP2sktyChE {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-uP2sktyChE .mbr-section-subtitle {
  color: #333333;
  text-align: center;
}
.cid-uP2sktyChE .btn {
  margin: 0 0 .5rem 0;
}
.cid-uP2sktyChE .content-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-uP2sktyChE H2 {
  color: #000000;
  text-align: center;
}
.cid-uP2sDHN6xP {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(45deg, #efeeee, #ffffff);
}
.cid-uP2sDHN6xP .content-row {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  padding: 1rem;
}
.cid-uP2sDHN6xP .card-img span {
  font-size: 80px;
}
.cid-uP2sDHN6xP .title {
  letter-spacing: 0.1em;
  margin: 0px;
}
.cid-uP2sDHN6xP .price {
  padding: 35px 10px 10px;
  letter-spacing: 0.03em;
  text-align: center;
}
.cid-uP2sDHN6xP .mbr-section-btn {
  padding: 1rem;
}
.cid-uP2sDHN6xP .price-value {
  line-height: 60px;
  margin-top: 11px;
}
.cid-uP2sDHN6xP .plan {
  margin-bottom: 35px;
  padding-left: 15px;
  padding-right: 15px;
  word-break: break-word;
  position: relative;
  color: #333333;
}
.cid-uP2sDHN6xP .plan .list-group-item {
  border: none !important;
  position: relative;
  padding: 17px 10px;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-uP2sDHN6xP .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-uP2sDHN6xP .plan .list-group-item:last-child::after {
  height: 1px;
}
.cid-uP2sDHN6xP .plan-title {
  color: #232323;
  margin: 0px;
  letter-spacing: 0.1em;
  width: 100%;
}
.cid-uP2sDHN6xP .plan-header {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #74c1e0;
  padding: 1rem;
}
.cid-uP2sDHN6xP .plan-body {
  border: 1px solid transparent;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  background-color: #acdeef;
}
.cid-uP2sDHN6xP .title,
.cid-uP2sDHN6xP .card-img {
  text-align: center;
}
.cid-uP2sDHN6xP .pricing-row {
  padding-top: 2rem;
}
.cid-uP2skwgirR {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uP2skwgirR h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uP2skwgirR p {
  color: #767676;
  text-align: left;
  margin-bottom: 0;
}
.cid-uP2skwgirR .card-img {
  text-align: left;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
  width: auto;
}
.cid-uP2skwgirR .card-img span {
  font-size: 72px;
  color: #ff3366;
}
.cid-uP2skwgirR .card-box {
  padding-left: 1rem;
  word-break: break-word;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uP2skwgirR .card-img {
    text-align: left;
    padding-bottom: 0.75rem;
  }
  .cid-uP2skwgirR .card-box {
    padding-left: 0;
  }
}
.cid-uP2skwXbIf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
.cid-uP2skwXbIf h2 {
  margin-bottom: 0;
}
.cid-uP2skwXbIf h4 {
  font-weight: 500;
  margin-bottom: 0;
  width: 80%;
}
.cid-uP2skwXbIf p {
  color: #767676;
  margin-bottom: 0;
}
.cid-uP2skwXbIf .card-wrapper {
  border-top: 1px solid #efefef;
  background-color: #ffffff;
  position: relative;
  justify-content: unset;
}
.cid-uP2skwXbIf .card-wrapper .card-box {
  padding: 2rem 1rem;
  width: 100%;
}
.cid-uP2skwXbIf .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-uP2skwXbIf .card-wrapper .card-box .bottom-line {
  width: 70%;
}
@media (max-width: 767px) {
  .cid-uP2skwXbIf .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-uP2skwXbIf .card-wrapper .card-box .bottom-line p {
    text-align: center;
    margin: 1rem 0 0 0;
  }
}
.cid-uP2skwXbIf H2 {
  text-align: center;
}
.cid-uP2skxXWWU {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-uP2skxXWWU h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-uP2skxXWWU p {
  color: #767676;
}
.cid-uP2skxXWWU .card-wrapper {
  border-top: 1px solid #efefef;
  background-color: #ffffff;
  position: relative;
  justify-content: unset;
}
.cid-uP2skxXWWU .card-wrapper .card-box {
  padding: 2rem;
  width: 100%;
}
.cid-uP2skxXWWU .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-uP2skxXWWU .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-uP2skxXWWU .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-uP2skxXWWU .card-wrapper .card-box .bottom-line p {
    text-align: center;
    margin: 1rem 0 0 0;
  }
}
.cid-uP2skxXWWU H2 {
  text-align: center;
}
.cid-uP2skyRndM {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-uP2skyRndM .container {
  max-width: 1400px;
}
.cid-uP2skyRndM .card-img2 span {
  padding-top: 6px;
}
.cid-uP2skyRndM .soc-item a {
  padding-top: 5px;
}
.cid-uP2skyRndM .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-uP2skyRndM .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-uP2skyRndM .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-uP2skyRndM .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uP2skyRndM svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-uP2skyRndM #e2_shape {
  fill: #2681cd !important;
}
.cid-uP2skyRndM .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-uP2skyRndM .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-uP2skyRndM .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uP2skyRndM .card-img {
  width: auto;
}
.cid-uP2skyRndM .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-uP2skyRndM .soc-item span {
  font-size: 1.4rem;
}
.cid-uP2skyRndM .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-uP2skyRndM .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uP2skyRndM .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uP2skyRndM .media-wrap {
  margin-bottom: 1rem;
}
.cid-uP2skyRndM .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uP2skyRndM img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-uP2skyRndM .item {
    justify-content: center;
  }
  .cid-uP2skyRndM .quote::after {
    left: 60px;
  }
}
.cid-uP2skyRndM .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-uP2skyRndM .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uP2skyRndM .text1 {
  color: #ffffff;
}
.cid-uP2skyRndM .item-title {
  color: #ffffff;
}
.cid-uP2skyRndM H5 {
  color: #ffffff;
  text-align: left;
}
.cid-uP2skyRndM .theme {
  color: #ffffff;
}
.cid-uP2skyRndM .copyright > p {
  color: #ff3366;
}
.cid-uP2skyRndM .text2 {
  color: #ffffff;
}
.cid-uP8ZYLYJol .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-uP8ZYLYJol .navbar-fixed-top {
  padding-top: 0;
}
.cid-uP8ZYLYJol .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uP8ZYLYJol .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uP8ZYLYJol .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uP8ZYLYJol .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uP8ZYLYJol .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uP8ZYLYJol .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uP8ZYLYJol .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uP8ZYLYJol .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uP8ZYLYJol .dropdown-item {
  padding: 0;
}
.cid-uP8ZYLYJol .dropdown-item,
.cid-uP8ZYLYJol .nav-link,
.cid-uP8ZYLYJol .brand-name {
  font-style: normal;
}
.cid-uP8ZYLYJol .dropdown-item:hover,
.cid-uP8ZYLYJol .nav-link:hover,
.cid-uP8ZYLYJol .brand-name:hover {
  color: #ff3366 !important;
}
.cid-uP8ZYLYJol .dropdown-menu {
  background-color: #0a1c44;
}
.cid-uP8ZYLYJol .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-uP8ZYLYJol .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-uP8ZYLYJol .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-uP8ZYLYJol .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uP8ZYLYJol .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-uP8ZYLYJol .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-uP8ZYLYJol .content-text {
  margin-bottom: 0;
}
.cid-uP8ZYLYJol .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uP8ZYLYJol .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uP8ZYLYJol .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uP8ZYLYJol .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uP8ZYLYJol .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-uP8ZYLYJol .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uP8ZYLYJol .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uP8ZYLYJol .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uP8ZYLYJol .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uP8ZYLYJol .nav-dropdown .link {
  font-weight: 400;
}
.cid-uP8ZYLYJol .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uP8ZYLYJol .content-right-side {
  text-align: center;
}
.cid-uP8ZYLYJol .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uP8ZYLYJol .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uP8ZYLYJol .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-uP8ZYLYJol .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uP8ZYLYJol .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uP8ZYLYJol .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uP8ZYLYJol .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uP8ZYLYJol .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uP8ZYLYJol .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-uP8ZYLYJol .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-uP8ZYLYJol .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-uP8ZYLYJol .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uP8ZYLYJol .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uP8ZYLYJol .navbar {
    display: block;
    padding: 0;
  }
  .cid-uP8ZYLYJol .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uP8ZYLYJol .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uP8ZYLYJol .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uP8ZYLYJol .navbar-toggler {
    display: none;
  }
  .cid-uP8ZYLYJol .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uP8ZYLYJol .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uP8ZYLYJol .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uP8ZYLYJol .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uP8ZYLYJol .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uP8ZYLYJol .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uP8ZYLYJol .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uP8ZYLYJol .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uP8ZYLYJol .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uP8ZYLYJol .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uP8ZYLYJol .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uP8ZYLYJol .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uP8ZYLYJol .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uP8ZYLYJol .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uP8ZYLYJol .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-uP8ZYLYJol .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uP8ZYLYJol .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uP8ZYLYJol .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uP8ZYLYJol .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uP8ZYLYJol .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uP8ZYLYJol .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uP8ZYLYJol .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-uP8ZYLYJol .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uP8ZYLYJol button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-uP8ZYLYJol button.navbar-toggler:focus {
  outline: none;
}
.cid-uP8ZYLYJol button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-uP8ZYLYJol button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uP8ZYLYJol button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP8ZYLYJol button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP8ZYLYJol button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uP8ZYLYJol nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP8ZYLYJol nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uP8ZYLYJol nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uP8ZYLYJol nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP8ZYLYJol .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uP8ZYLYJol .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uP8ZYLYJol .collapsed .btn {
  display: flex;
}
.cid-uP8ZYLYJol .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uP8ZYLYJol .collapsed .navbar-collapse.collapsing,
.cid-uP8ZYLYJol .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uP8ZYLYJol .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uP8ZYLYJol .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uP8ZYLYJol .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uP8ZYLYJol .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uP8ZYLYJol .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uP8ZYLYJol .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uP8ZYLYJol .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uP8ZYLYJol .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-uP8ZYLYJol .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uP8ZYLYJol .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uP8ZYLYJol .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uP8ZYLYJol .collapsed button.navbar-toggler {
  display: block;
}
.cid-uP8ZYLYJol .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uP8ZYLYJol .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uP8ZYLYJol .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uP8ZYLYJol .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uP8ZYLYJol .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uP8ZYLYJol .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uP8ZYLYJol .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-uP8ZYLYJol .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-uP8ZYLYJol .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-uP8ZYLYJol .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-uP8ZYLYJol .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uP8ZYLYJol .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uP8ZYLYJol .navbar-collapse.collapsing,
  .cid-uP8ZYLYJol .navbar-collapse.show {
    display: block !important;
  }
  .cid-uP8ZYLYJol .navbar-collapse.collapsing .navbar-nav,
  .cid-uP8ZYLYJol .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uP8ZYLYJol .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uP8ZYLYJol .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uP8ZYLYJol .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uP8ZYLYJol .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uP8ZYLYJol .navbar-collapse.collapsing .navbar-buttons,
  .cid-uP8ZYLYJol .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uP8ZYLYJol .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uP8ZYLYJol .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uP8ZYLYJol img {
    height: 3.8rem !important;
  }
  .cid-uP8ZYLYJol .btn {
    display: flex;
  }
  .cid-uP8ZYLYJol button.navbar-toggler {
    display: block;
  }
  .cid-uP8ZYLYJol .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uP8ZYLYJol .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uP8ZYLYJol .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uP8ZYLYJol .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uP8ZYLYJol .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uP8ZYLYJol .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uP8ZYLYJol .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uP8ZYLYJol .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uP8ZYLYJol .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uP8ZYLYJol .nav-link:focus {
  outline: none;
}
.cid-uP8ZYLYJol .navbar-toggler {
  position: relative;
}
.cid-uP8ZYLYJol .dropdown-item.active,
.cid-uP8ZYLYJol .dropdown-item:active {
  color: initial;
}
.cid-uP8ZYLYJol .widget-title,
.cid-uP8ZYLYJol .widget-icon {
  color: #ffffff;
}
.cid-uP8ZYLYJol .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-uP8ZYLYJol .menu-logo {
    display: none;
  }
  .cid-uP8ZYLYJol .navbar {
    padding: 0;
  }
  .cid-uP8ZYLYJol .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uP8ZYLYJol button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-uP8ZYNitT3 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-uP8ZYNitT3 .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-uP8ZYNDGyN {
  padding-top: 120px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/16-1600x600.jpg");
}
.cid-uP8ZYNDGyN H3 {
  color: #ffffff;
}
.cid-uP8ZYNDGyN .mbr-text,
.cid-uP8ZYNDGyN .mbr-section-btn {
  color: #efefef;
}
.cid-uP8ZYNZARY {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efeeee;
}
.cid-uP8ZYNZARY .line {
  background-color: #0f7699;
  color: #0f7699;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uP8ZYNZARY .section-text {
  padding: 2rem 0;
  color: #073b4c;
}
.cid-uP8ZYNZARY .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uP8ZYNZARY .inner-container {
    width: 100% !important;
  }
}
.cid-uP8ZYOm5Ol {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-uP8ZYOm5Ol .mbr-section-subtitle {
  color: #333333;
  text-align: center;
}
.cid-uP8ZYOm5Ol .btn {
  margin: 0 0 .5rem 0;
}
.cid-uP8ZYOm5Ol .content-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-uP8ZYOm5Ol H2 {
  color: #000000;
  text-align: center;
}
.cid-uQP255PGAZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #073b4c;
}
.cid-uQP255PGAZ .plan {
  overflow: visible;
  word-break: break-word;
  background-color: #FFFFFF33;
  border-radius: 25px;
  box-shadow: 15px 17px 32px -2px rgba(0, 0, 0, 0.5);
  padding: 30px 30px 45px;
  transition-duration: all .3s;
}
.cid-uQP255PGAZ .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
@media (max-width: 991px) {
  .cid-uQP255PGAZ .align-center {
    margin-top: 2rem;
  }
  .cid-uQP255PGAZ .align-center:first-child {
    margin-top: 0rem;
  }
  .cid-uQP255PGAZ .align-center:nth-child(2) {
    margin-top: 0rem;
  }
}
.cid-uQP255PGAZ .list {
  text-align: left;
}
.cid-uQP255PGAZ .category {
  text-align: left;
  margin-bottom: 24px;
}
.cid-uQP255PGAZ .link {
  text-align: left;
}
.cid-uQP255PGAZ li {
  display: flex;
  align-items: center;
}
.cid-uQP255PGAZ li:last-child {
  margin-bottom: 0;
}
.cid-uQP255PGAZ ul {
  padding-inline-start: 0px;
  margin-bottom: 0rem;
}
.cid-uQP255PGAZ .card {
  border: 1px solid #eff0f6;
}
.cid-uQP255PGAZ .text {
  margin-bottom: 34px;
  text-align: left;
  color: #5f5d68;
}
.cid-uQP255PGAZ .text2 {
  margin-bottom: 34px;
  text-align: left;
  color: #14142b;
}
.cid-uQP255PGAZ .align {
  margin-bottom: 31px;
}
.cid-uQP255PGAZ .name {
  margin-bottom: 16px;
  text-align: center;
  color: #ffffff;
}
.cid-uQP255PGAZ .price,
.cid-uQP255PGAZ .montn,
.cid-uQP255PGAZ .month2 {
  display: inline !important;
}
.cid-uQP255PGAZ .mbr-text {
  display: inline;
  width: 100%;
}
.cid-uQP255PGAZ .month {
  width: auto;
  display: inline;
  color: #ffffff;
}
.cid-uQP255PGAZ .month2 {
  width: auto;
  display: inline;
  color: #14142b;
}
.cid-uQP255PGAZ span {
  color: #e5be8a;
  font-size: 0.6rem;
  margin-right: 6px;
  font-weight: 800;
}
.cid-uQP255PGAZ .mbr-section-title {
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
}
.cid-uQP255PGAZ .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 5.2px;
}
.cid-uQP255PGAZ .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
  padding-bottom: 56px;
  max-width: 715px;
  margin: auto;
}
.cid-uQP255PGAZ .card1:hover,
.cid-uQP255PGAZ .card2:hover,
.cid-uQP255PGAZ .card3:hover {
  transform: translate(0px, -6px);
}
@media (max-width: 768px) {
  .cid-uQP255PGAZ .align-center:nth-child(2) {
    margin-top: 2rem;
  }
}
.cid-uQP255PGAZ a.btn > span {
  margin-left: 0.5rem;
  background-color: transparent;
}
.cid-uQP255PGAZ .list,
.cid-uQP255PGAZ .link {
  color: #ffffff;
}
.cid-uQP255PGAZ .price {
  color: #75dbcd;
}
.cid-uQP255PGAZ .plan:hover {
  background-color: #FFFFFF4D;
}
.cid-uQP255PGAZ .btn {
  padding: 15px 30px !important;
  transition: all .3s !important;
  width: auto;
}
.cid-uQP255PGAZ a {
  font-weight: 400;
  letter-spacing: 5.2px;
  transition: all .3s;
}
.cid-uQP255PGAZ a.btn:hover {
  background-color: #8e443d !important;
  border-color: #8e443d !important;
}
.cid-uQP255PGAZ .button-align {
  margin-bottom: 25px;
  text-align: center;
}
.cid-uQP255PGAZ .btn span {
  color: currentColor;
}
.cid-vfmBySUFQN {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #073b4c;
}
.cid-vfmBySUFQN .plan {
  overflow: visible;
  word-break: break-word;
  background-color: #FFFFFF33;
  border-radius: 25px;
  box-shadow: 15px 17px 32px -2px rgba(0, 0, 0, 0.5);
  padding: 30px 30px 45px;
  transition-duration: all .3s;
}
.cid-vfmBySUFQN .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
@media (max-width: 991px) {
  .cid-vfmBySUFQN .align-center {
    margin-top: 2rem;
  }
  .cid-vfmBySUFQN .align-center:first-child {
    margin-top: 0rem;
  }
  .cid-vfmBySUFQN .align-center:nth-child(2) {
    margin-top: 0rem;
  }
}
.cid-vfmBySUFQN .list {
  text-align: left;
}
.cid-vfmBySUFQN .category {
  text-align: left;
  margin-bottom: 24px;
}
.cid-vfmBySUFQN .link {
  text-align: left;
}
.cid-vfmBySUFQN li {
  display: flex;
  align-items: center;
}
.cid-vfmBySUFQN li:last-child {
  margin-bottom: 0;
}
.cid-vfmBySUFQN ul {
  padding-inline-start: 0px;
  margin-bottom: 0rem;
}
.cid-vfmBySUFQN .card {
  border: 1px solid #eff0f6;
}
.cid-vfmBySUFQN .text {
  margin-bottom: 34px;
  text-align: left;
  color: #5f5d68;
}
.cid-vfmBySUFQN .text2 {
  margin-bottom: 34px;
  text-align: left;
  color: #14142b;
}
.cid-vfmBySUFQN .align {
  margin-bottom: 31px;
}
.cid-vfmBySUFQN .name {
  margin-bottom: 16px;
  text-align: center;
  color: #ffffff;
}
.cid-vfmBySUFQN .price,
.cid-vfmBySUFQN .montn,
.cid-vfmBySUFQN .month2 {
  display: inline !important;
}
.cid-vfmBySUFQN .mbr-text {
  display: inline;
  width: 100%;
}
.cid-vfmBySUFQN .month {
  width: auto;
  display: inline;
  color: #ffffff;
}
.cid-vfmBySUFQN .month2 {
  width: auto;
  display: inline;
  color: #14142b;
}
.cid-vfmBySUFQN span {
  color: #e5be8a;
  font-size: 0.6rem;
  margin-right: 6px;
  font-weight: 800;
}
.cid-vfmBySUFQN .mbr-section-title {
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
}
.cid-vfmBySUFQN .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 5.2px;
}
.cid-vfmBySUFQN .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
  padding-bottom: 56px;
  max-width: 715px;
  margin: auto;
}
.cid-vfmBySUFQN .card1:hover,
.cid-vfmBySUFQN .card2:hover,
.cid-vfmBySUFQN .card3:hover {
  transform: translate(0px, -6px);
}
@media (max-width: 768px) {
  .cid-vfmBySUFQN .align-center:nth-child(2) {
    margin-top: 2rem;
  }
}
.cid-vfmBySUFQN a.btn > span {
  margin-left: 0.5rem;
  background-color: transparent;
}
.cid-vfmBySUFQN .list,
.cid-vfmBySUFQN .link {
  color: #ffffff;
}
.cid-vfmBySUFQN .price {
  color: #75dbcd;
}
.cid-vfmBySUFQN .plan:hover {
  background-color: #FFFFFF4D;
}
.cid-vfmBySUFQN .btn {
  padding: 15px 30px !important;
  transition: all .3s !important;
  width: auto;
}
.cid-vfmBySUFQN a {
  font-weight: 400;
  letter-spacing: 5.2px;
  transition: all .3s;
}
.cid-vfmBySUFQN a.btn:hover {
  background-color: #8e443d !important;
  border-color: #8e443d !important;
}
.cid-vfmBySUFQN .button-align {
  margin-bottom: 25px;
  text-align: center;
}
.cid-vfmBySUFQN .btn span {
  color: currentColor;
}
.cid-uUe9m4WtOP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #efeeee;
}
.cid-uUe9m4WtOP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUe9m4WtOP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUe9m4WtOP .container {
  max-width: 1260px;
}
@media (max-width: 1199px) {
  .cid-uUe9m4WtOP .container {
    max-width: 960px;
  }
}
@media (max-width: 767px) {
  .cid-uUe9m4WtOP .container {
    max-width: 540px;
  }
}
.cid-uUe9m4WtOP .logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.cid-uUe9m4WtOP .logo-container img {
  width: 80px;
  height: auto;
  object-fit: cover;
}
.cid-uUe9m4WtOP .mbr-section-title {
  color: #121212;
}
.cid-uUe9m4WtOP .mbr-section-subtitle {
  color: #282124;
  margin-top: 15px;
}
.cid-uUe9m4WtOP .mbr-text {
  color: #878e99;
  margin-top: 20px;
}
.cid-uUe9m4WtOP .mbr-section-btn {
  margin-top: 25px;
}
.cid-uUe9m4WtOP .mbr-text,
.cid-uUe9m4WtOP .mbr-section-btn {
  color: #282124;
}
.cid-uP8ZYS7dx8 {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-uP8ZYS7dx8 h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-uP8ZYS7dx8 p {
  color: #767676;
}
.cid-uP8ZYS7dx8 .card-wrapper {
  border-top: 1px solid #efefef;
  background-color: #ffffff;
  position: relative;
  justify-content: unset;
}
.cid-uP8ZYS7dx8 .card-wrapper .card-box {
  padding: 2rem;
  width: 100%;
}
.cid-uP8ZYS7dx8 .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-uP8ZYS7dx8 .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-uP8ZYS7dx8 .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-uP8ZYS7dx8 .card-wrapper .card-box .bottom-line p {
    text-align: center;
    margin: 1rem 0 0 0;
  }
}
.cid-uP8ZYS7dx8 H2 {
  text-align: center;
}
.cid-uP8ZYTGMl8 {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-uP8ZYTGMl8 .container {
  max-width: 1400px;
}
.cid-uP8ZYTGMl8 .card-img2 span {
  padding-top: 6px;
}
.cid-uP8ZYTGMl8 .soc-item a {
  padding-top: 5px;
}
.cid-uP8ZYTGMl8 .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-uP8ZYTGMl8 .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-uP8ZYTGMl8 .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-uP8ZYTGMl8 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uP8ZYTGMl8 svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-uP8ZYTGMl8 #e2_shape {
  fill: #2681cd !important;
}
.cid-uP8ZYTGMl8 .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-uP8ZYTGMl8 .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-uP8ZYTGMl8 .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uP8ZYTGMl8 .card-img {
  width: auto;
}
.cid-uP8ZYTGMl8 .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-uP8ZYTGMl8 .soc-item span {
  font-size: 1.4rem;
}
.cid-uP8ZYTGMl8 .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-uP8ZYTGMl8 .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uP8ZYTGMl8 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uP8ZYTGMl8 .media-wrap {
  margin-bottom: 1rem;
}
.cid-uP8ZYTGMl8 .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uP8ZYTGMl8 img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-uP8ZYTGMl8 .item {
    justify-content: center;
  }
  .cid-uP8ZYTGMl8 .quote::after {
    left: 60px;
  }
}
.cid-uP8ZYTGMl8 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-uP8ZYTGMl8 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uP8ZYTGMl8 .text1 {
  color: #ffffff;
}
.cid-uP8ZYTGMl8 .item-title {
  color: #ffffff;
}
.cid-uP8ZYTGMl8 H5 {
  color: #ffffff;
  text-align: left;
}
.cid-uP8ZYTGMl8 .theme {
  color: #ffffff;
}
.cid-uP8ZYTGMl8 .copyright > p {
  color: #ff3366;
}
.cid-uP8ZYTGMl8 .text2 {
  color: #ffffff;
}
.cid-uPjrsuGJ5m {
  padding-top: 120px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/iptv-1920-1920x507.jpeg");
}
@media (min-width: 992px) {
  .cid-uPjrsuGJ5m .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uPjrsuGJ5m .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uPjrsuGJ5m .mbr-text {
    text-align: center;
  }
}
.cid-uPjrsuGJ5m .mbr-text,
.cid-uPjrsuGJ5m .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uPjrsuGJ5m H3 {
  text-align: center;
}
.cid-uPjrsvqgAj {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPjrsvqgAj .row {
  align-items: center;
}
.cid-uPjrsvqgAj .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uPjrsvqgAj .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uPjrsvqgAj .header-text {
    margin-bottom: 20px;
  }
}
.cid-uPjrsvqgAj .mbr-section-title {
  width: 100%;
  color: #111111;
  margin-bottom: 8px;
}
.cid-uPjrsvqgAj .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-uPjrsvLge4 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x912.jpg");
}
.cid-uPjrsvLge4 img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-uPjrsvLge4 img:hover {
  transform: scale(1.1);
}
.cid-uPjrsvLge4 .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-uPjrsvLge4 h2 {
  padding: 0;
  margin: 0;
}
.cid-uPjrsvLge4 .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPjrsvLge4 .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-uPjrsvLge4 .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-uPjrsvLge4 .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-uPjrsvLge4 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uPjrsvLge4 .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uPjrsvLge4 .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-uPjrsvLge4 .text-col {
    padding: 2rem 1rem;
  }
}
.cid-uPjrsvLge4 H2 {
  color: #333333;
}
.cid-uPjrsvLge4 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uPk1x4vu0y {
  padding-top: 30px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/334-1500x900.jpg");
}
.cid-uPk1x4vu0y .content-row {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  padding: 1rem;
}
.cid-uPk1x4vu0y .card-img span {
  font-size: 80px;
}
.cid-uPk1x4vu0y .title {
  letter-spacing: 0.1em;
  margin: 0px;
}
.cid-uPk1x4vu0y .price {
  padding: 35px 10px 10px;
  letter-spacing: 0.03em;
  text-align: center;
}
.cid-uPk1x4vu0y .mbr-section-btn {
  padding: 1rem;
}
.cid-uPk1x4vu0y .price-value {
  line-height: 60px;
  margin-top: 11px;
}
.cid-uPk1x4vu0y .plan {
  margin-bottom: 35px;
  padding-left: 15px;
  padding-right: 15px;
  word-break: break-word;
  position: relative;
  color: #333333;
}
.cid-uPk1x4vu0y .plan .list-group-item {
  border: none !important;
  position: relative;
  padding: 17px 10px;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-uPk1x4vu0y .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-uPk1x4vu0y .plan .list-group-item:last-child::after {
  height: 1px;
}
.cid-uPk1x4vu0y .plan-title {
  color: #232323;
  margin: 0px;
  letter-spacing: 0.1em;
  width: 100%;
}
.cid-uPk1x4vu0y .plan-header {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #e0dede;
  padding: 1rem;
}
.cid-uPk1x4vu0y .plan-body {
  border: 1px solid transparent;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  background-color: #efeeee;
}
.cid-uPk1x4vu0y .title,
.cid-uPk1x4vu0y .card-img {
  text-align: center;
}
.cid-uPk1x4vu0y .pricing-row {
  padding-top: 2rem;
}
.cid-uPk1x4vu0y UL {
  text-align: center;
}
.cid-uPjrsAFCmM {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-uPjrsAFCmM .container {
  max-width: 1400px;
}
.cid-uPjrsAFCmM .card-img2 span {
  padding-top: 6px;
}
.cid-uPjrsAFCmM .soc-item a {
  padding-top: 5px;
}
.cid-uPjrsAFCmM .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-uPjrsAFCmM .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-uPjrsAFCmM .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-uPjrsAFCmM .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uPjrsAFCmM svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-uPjrsAFCmM #e2_shape {
  fill: #2681cd !important;
}
.cid-uPjrsAFCmM .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-uPjrsAFCmM .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-uPjrsAFCmM .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPjrsAFCmM .card-img {
  width: auto;
}
.cid-uPjrsAFCmM .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-uPjrsAFCmM .soc-item span {
  font-size: 1.4rem;
}
.cid-uPjrsAFCmM .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-uPjrsAFCmM .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uPjrsAFCmM .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uPjrsAFCmM .media-wrap {
  margin-bottom: 1rem;
}
.cid-uPjrsAFCmM .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uPjrsAFCmM img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-uPjrsAFCmM .item {
    justify-content: center;
  }
  .cid-uPjrsAFCmM .quote::after {
    left: 60px;
  }
}
.cid-uPjrsAFCmM .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-uPjrsAFCmM .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPjrsAFCmM .text1 {
  color: #ffffff;
}
.cid-uPjrsAFCmM .item-title {
  color: #ffffff;
}
.cid-uPjrsAFCmM H5 {
  color: #ffffff;
  text-align: left;
}
.cid-uPjrsAFCmM .theme {
  color: #ffffff;
}
.cid-uPjrsAFCmM .copyright > p {
  color: #ff3366;
}
.cid-uPjrsAFCmM .text2 {
  color: #ffffff;
}
.cid-uPjrsBn1hS .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-uPjrsBn1hS .navbar-fixed-top {
  padding-top: 0;
}
.cid-uPjrsBn1hS .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uPjrsBn1hS .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uPjrsBn1hS .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uPjrsBn1hS .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uPjrsBn1hS .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uPjrsBn1hS .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uPjrsBn1hS .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uPjrsBn1hS .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uPjrsBn1hS .dropdown-item {
  padding: 0;
}
.cid-uPjrsBn1hS .dropdown-item,
.cid-uPjrsBn1hS .nav-link,
.cid-uPjrsBn1hS .brand-name {
  font-style: normal;
}
.cid-uPjrsBn1hS .dropdown-item:hover,
.cid-uPjrsBn1hS .nav-link:hover,
.cid-uPjrsBn1hS .brand-name:hover {
  color: #ff3366 !important;
}
.cid-uPjrsBn1hS .dropdown-menu {
  background-color: #0a1c44;
}
.cid-uPjrsBn1hS .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-uPjrsBn1hS .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-uPjrsBn1hS .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-uPjrsBn1hS .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uPjrsBn1hS .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-uPjrsBn1hS .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-uPjrsBn1hS .content-text {
  margin-bottom: 0;
}
.cid-uPjrsBn1hS .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uPjrsBn1hS .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uPjrsBn1hS .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uPjrsBn1hS .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uPjrsBn1hS .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-uPjrsBn1hS .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uPjrsBn1hS .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uPjrsBn1hS .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uPjrsBn1hS .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPjrsBn1hS .nav-dropdown .link {
  font-weight: 400;
}
.cid-uPjrsBn1hS .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uPjrsBn1hS .content-right-side {
  text-align: center;
}
.cid-uPjrsBn1hS .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uPjrsBn1hS .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uPjrsBn1hS .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-uPjrsBn1hS .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uPjrsBn1hS .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uPjrsBn1hS .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uPjrsBn1hS .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uPjrsBn1hS .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uPjrsBn1hS .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-uPjrsBn1hS .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-uPjrsBn1hS .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-uPjrsBn1hS .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uPjrsBn1hS .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uPjrsBn1hS .navbar {
    display: block;
    padding: 0;
  }
  .cid-uPjrsBn1hS .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uPjrsBn1hS .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uPjrsBn1hS .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uPjrsBn1hS .navbar-toggler {
    display: none;
  }
  .cid-uPjrsBn1hS .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uPjrsBn1hS .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uPjrsBn1hS .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uPjrsBn1hS .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uPjrsBn1hS .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uPjrsBn1hS .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uPjrsBn1hS .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPjrsBn1hS .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uPjrsBn1hS .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uPjrsBn1hS .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uPjrsBn1hS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPjrsBn1hS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPjrsBn1hS .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uPjrsBn1hS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPjrsBn1hS .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-uPjrsBn1hS .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uPjrsBn1hS .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPjrsBn1hS .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uPjrsBn1hS .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uPjrsBn1hS .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uPjrsBn1hS .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uPjrsBn1hS .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-uPjrsBn1hS .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uPjrsBn1hS button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-uPjrsBn1hS button.navbar-toggler:focus {
  outline: none;
}
.cid-uPjrsBn1hS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-uPjrsBn1hS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPjrsBn1hS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPjrsBn1hS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPjrsBn1hS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPjrsBn1hS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPjrsBn1hS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPjrsBn1hS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPjrsBn1hS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPjrsBn1hS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPjrsBn1hS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPjrsBn1hS .collapsed .btn {
  display: flex;
}
.cid-uPjrsBn1hS .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uPjrsBn1hS .collapsed .navbar-collapse.collapsing,
.cid-uPjrsBn1hS .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uPjrsBn1hS .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uPjrsBn1hS .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uPjrsBn1hS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uPjrsBn1hS .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uPjrsBn1hS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uPjrsBn1hS .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uPjrsBn1hS .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uPjrsBn1hS .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-uPjrsBn1hS .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uPjrsBn1hS .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uPjrsBn1hS .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uPjrsBn1hS .collapsed button.navbar-toggler {
  display: block;
}
.cid-uPjrsBn1hS .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uPjrsBn1hS .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uPjrsBn1hS .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uPjrsBn1hS .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uPjrsBn1hS .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uPjrsBn1hS .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uPjrsBn1hS .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-uPjrsBn1hS .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-uPjrsBn1hS .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-uPjrsBn1hS .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-uPjrsBn1hS .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uPjrsBn1hS .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uPjrsBn1hS .navbar-collapse.collapsing,
  .cid-uPjrsBn1hS .navbar-collapse.show {
    display: block !important;
  }
  .cid-uPjrsBn1hS .navbar-collapse.collapsing .navbar-nav,
  .cid-uPjrsBn1hS .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uPjrsBn1hS .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uPjrsBn1hS .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uPjrsBn1hS .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uPjrsBn1hS .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uPjrsBn1hS .navbar-collapse.collapsing .navbar-buttons,
  .cid-uPjrsBn1hS .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uPjrsBn1hS .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uPjrsBn1hS .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uPjrsBn1hS img {
    height: 3.8rem !important;
  }
  .cid-uPjrsBn1hS .btn {
    display: flex;
  }
  .cid-uPjrsBn1hS button.navbar-toggler {
    display: block;
  }
  .cid-uPjrsBn1hS .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uPjrsBn1hS .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uPjrsBn1hS .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uPjrsBn1hS .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uPjrsBn1hS .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uPjrsBn1hS .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uPjrsBn1hS .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uPjrsBn1hS .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uPjrsBn1hS .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uPjrsBn1hS .nav-link:focus {
  outline: none;
}
.cid-uPjrsBn1hS .navbar-toggler {
  position: relative;
}
.cid-uPjrsBn1hS .dropdown-item.active,
.cid-uPjrsBn1hS .dropdown-item:active {
  color: initial;
}
.cid-uPjrsBn1hS .widget-title,
.cid-uPjrsBn1hS .widget-icon {
  color: #ffffff;
}
.cid-uPjrsBn1hS .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-uPjrsBn1hS .menu-logo {
    display: none;
  }
  .cid-uPjrsBn1hS .navbar {
    padding: 0;
  }
  .cid-uPjrsBn1hS .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uPjrsBn1hS button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-uPjrsC5q7e {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-uPjrsC5q7e .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-uPjrsFiSAx {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-uPjrsFiSAx .media-container-row .mbr-text {
  color: #333333;
}
.cid-uPkgNfHVN3 {
  padding-top: 120px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/iptv-1920-1920x507.jpeg");
}
@media (min-width: 992px) {
  .cid-uPkgNfHVN3 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uPkgNfHVN3 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uPkgNfHVN3 .mbr-text {
    text-align: center;
  }
}
.cid-uPkgNfHVN3 .mbr-text,
.cid-uPkgNfHVN3 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uPkgNfHVN3 H3 {
  text-align: center;
}
.cid-uPkgNimWOk {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPkgNimWOk .row {
  align-items: center;
}
.cid-uPkgNimWOk .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uPkgNimWOk .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uPkgNimWOk .header-text {
    margin-bottom: 20px;
  }
}
.cid-uPkgNimWOk .mbr-section-title {
  width: 100%;
  color: #111111;
  margin-bottom: 8px;
}
.cid-uPkgNimWOk .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-uPkgNiG3qi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/iptv-590x590.jpeg");
}
.cid-uPkgNiG3qi img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-uPkgNiG3qi img:hover {
  transform: scale(1.1);
}
.cid-uPkgNiG3qi .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-uPkgNiG3qi h2 {
  padding: 0;
  margin: 0;
}
.cid-uPkgNiG3qi .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPkgNiG3qi .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-uPkgNiG3qi .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-uPkgNiG3qi .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 300px;
}
.cid-uPkgNiG3qi .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-uPkgNiG3qi .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0 !important;
}
.cid-uPkgNiG3qi .mbr-iconfont {
  margin: 0 !important;
}
.cid-uPkgNiG3qi .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uPkgNiG3qi .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uPkgNiG3qi .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-uPkgNiG3qi .btn {
    padding: 0.6rem 0.8rem !important;
    min-width: 200px !important;
  }
  .cid-uPkgNiG3qi .text-col {
    padding: 2rem 1rem;
  }
}
.cid-uPkgNiG3qi H2 {
  color: #333333;
}
.cid-uPkgNiG3qi .mbr-text {
  color: #767676;
}
.cid-uPkgNiYYB9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efeeee;
}
.cid-uPkgNiYYB9 .container {
  max-width: 1500px;
}
.cid-uPkgNiYYB9 img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-uPkgNiYYB9 img:hover {
  transform: scale(1.1);
}
.cid-uPkgNiYYB9 .row {
  background: #ffffff;
}
.cid-uPkgNiYYB9 .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-uPkgNiYYB9 h2 {
  padding: 0;
  margin: 0;
}
.cid-uPkgNiYYB9 .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPkgNiYYB9 .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-uPkgNiYYB9 .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-uPkgNiYYB9 .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-uPkgNiYYB9 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-uPkgNiYYB9 .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-uPkgNiYYB9 .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uPkgNiYYB9 .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-uPkgNiYYB9 .row {
    margin: 0rem;
  }
  .cid-uPkgNiYYB9 .text-col {
    padding: 2rem 1rem;
  }
  .cid-uPkgNiYYB9 .number {
    margin-right: 2rem;
  }
  .cid-uPkgNiYYB9 .img-col {
    margin-bottom: 3rem;
  }
}
.cid-uPkgNiYYB9 H2 {
  color: #333333;
}
.cid-uPkgNiYYB9 .mbr-text {
  color: #767676;
}
.cid-uPkgNjfikB {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-uPkgNjfikB .container {
  max-width: 1400px;
}
.cid-uPkgNjfikB .card-img2 span {
  padding-top: 6px;
}
.cid-uPkgNjfikB .soc-item a {
  padding-top: 5px;
}
.cid-uPkgNjfikB .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-uPkgNjfikB .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-uPkgNjfikB .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-uPkgNjfikB .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uPkgNjfikB svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-uPkgNjfikB #e2_shape {
  fill: #2681cd !important;
}
.cid-uPkgNjfikB .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-uPkgNjfikB .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-uPkgNjfikB .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPkgNjfikB .card-img {
  width: auto;
}
.cid-uPkgNjfikB .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-uPkgNjfikB .soc-item span {
  font-size: 1.4rem;
}
.cid-uPkgNjfikB .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-uPkgNjfikB .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uPkgNjfikB .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uPkgNjfikB .media-wrap {
  margin-bottom: 1rem;
}
.cid-uPkgNjfikB .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uPkgNjfikB img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-uPkgNjfikB .item {
    justify-content: center;
  }
  .cid-uPkgNjfikB .quote::after {
    left: 60px;
  }
}
.cid-uPkgNjfikB .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-uPkgNjfikB .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPkgNjfikB .text1 {
  color: #ffffff;
}
.cid-uPkgNjfikB .item-title {
  color: #ffffff;
}
.cid-uPkgNjfikB H5 {
  color: #ffffff;
  text-align: left;
}
.cid-uPkgNjfikB .theme {
  color: #ffffff;
}
.cid-uPkgNjfikB .copyright > p {
  color: #ff3366;
}
.cid-uPkgNjfikB .text2 {
  color: #ffffff;
}
.cid-uPkgNjTzV3 .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-uPkgNjTzV3 .navbar-fixed-top {
  padding-top: 0;
}
.cid-uPkgNjTzV3 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uPkgNjTzV3 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uPkgNjTzV3 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uPkgNjTzV3 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uPkgNjTzV3 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uPkgNjTzV3 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uPkgNjTzV3 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uPkgNjTzV3 .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uPkgNjTzV3 .dropdown-item {
  padding: 0;
}
.cid-uPkgNjTzV3 .dropdown-item,
.cid-uPkgNjTzV3 .nav-link,
.cid-uPkgNjTzV3 .brand-name {
  font-style: normal;
}
.cid-uPkgNjTzV3 .dropdown-item:hover,
.cid-uPkgNjTzV3 .nav-link:hover,
.cid-uPkgNjTzV3 .brand-name:hover {
  color: #ff3366 !important;
}
.cid-uPkgNjTzV3 .dropdown-menu {
  background-color: #0a1c44;
}
.cid-uPkgNjTzV3 .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-uPkgNjTzV3 .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-uPkgNjTzV3 .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-uPkgNjTzV3 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uPkgNjTzV3 .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-uPkgNjTzV3 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-uPkgNjTzV3 .content-text {
  margin-bottom: 0;
}
.cid-uPkgNjTzV3 .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uPkgNjTzV3 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uPkgNjTzV3 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uPkgNjTzV3 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uPkgNjTzV3 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-uPkgNjTzV3 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uPkgNjTzV3 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uPkgNjTzV3 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uPkgNjTzV3 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPkgNjTzV3 .nav-dropdown .link {
  font-weight: 400;
}
.cid-uPkgNjTzV3 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uPkgNjTzV3 .content-right-side {
  text-align: center;
}
.cid-uPkgNjTzV3 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uPkgNjTzV3 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uPkgNjTzV3 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-uPkgNjTzV3 .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uPkgNjTzV3 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uPkgNjTzV3 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uPkgNjTzV3 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uPkgNjTzV3 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uPkgNjTzV3 .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-uPkgNjTzV3 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-uPkgNjTzV3 .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-uPkgNjTzV3 .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uPkgNjTzV3 .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uPkgNjTzV3 .navbar {
    display: block;
    padding: 0;
  }
  .cid-uPkgNjTzV3 .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uPkgNjTzV3 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uPkgNjTzV3 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uPkgNjTzV3 .navbar-toggler {
    display: none;
  }
  .cid-uPkgNjTzV3 .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uPkgNjTzV3 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uPkgNjTzV3 .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uPkgNjTzV3 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uPkgNjTzV3 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uPkgNjTzV3 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uPkgNjTzV3 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPkgNjTzV3 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uPkgNjTzV3 .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uPkgNjTzV3 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uPkgNjTzV3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPkgNjTzV3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPkgNjTzV3 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uPkgNjTzV3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPkgNjTzV3 .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-uPkgNjTzV3 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uPkgNjTzV3 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPkgNjTzV3 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uPkgNjTzV3 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uPkgNjTzV3 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uPkgNjTzV3 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uPkgNjTzV3 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-uPkgNjTzV3 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uPkgNjTzV3 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-uPkgNjTzV3 button.navbar-toggler:focus {
  outline: none;
}
.cid-uPkgNjTzV3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-uPkgNjTzV3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPkgNjTzV3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPkgNjTzV3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPkgNjTzV3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPkgNjTzV3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPkgNjTzV3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPkgNjTzV3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPkgNjTzV3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPkgNjTzV3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPkgNjTzV3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPkgNjTzV3 .collapsed .btn {
  display: flex;
}
.cid-uPkgNjTzV3 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uPkgNjTzV3 .collapsed .navbar-collapse.collapsing,
.cid-uPkgNjTzV3 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uPkgNjTzV3 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uPkgNjTzV3 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uPkgNjTzV3 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uPkgNjTzV3 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uPkgNjTzV3 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uPkgNjTzV3 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uPkgNjTzV3 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uPkgNjTzV3 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-uPkgNjTzV3 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uPkgNjTzV3 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uPkgNjTzV3 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uPkgNjTzV3 .collapsed button.navbar-toggler {
  display: block;
}
.cid-uPkgNjTzV3 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uPkgNjTzV3 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uPkgNjTzV3 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uPkgNjTzV3 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uPkgNjTzV3 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uPkgNjTzV3 .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uPkgNjTzV3 .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-uPkgNjTzV3 .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-uPkgNjTzV3 .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-uPkgNjTzV3 .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-uPkgNjTzV3 .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uPkgNjTzV3 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uPkgNjTzV3 .navbar-collapse.collapsing,
  .cid-uPkgNjTzV3 .navbar-collapse.show {
    display: block !important;
  }
  .cid-uPkgNjTzV3 .navbar-collapse.collapsing .navbar-nav,
  .cid-uPkgNjTzV3 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uPkgNjTzV3 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uPkgNjTzV3 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uPkgNjTzV3 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uPkgNjTzV3 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uPkgNjTzV3 .navbar-collapse.collapsing .navbar-buttons,
  .cid-uPkgNjTzV3 .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uPkgNjTzV3 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uPkgNjTzV3 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uPkgNjTzV3 img {
    height: 3.8rem !important;
  }
  .cid-uPkgNjTzV3 .btn {
    display: flex;
  }
  .cid-uPkgNjTzV3 button.navbar-toggler {
    display: block;
  }
  .cid-uPkgNjTzV3 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uPkgNjTzV3 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uPkgNjTzV3 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uPkgNjTzV3 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uPkgNjTzV3 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uPkgNjTzV3 .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uPkgNjTzV3 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uPkgNjTzV3 .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uPkgNjTzV3 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uPkgNjTzV3 .nav-link:focus {
  outline: none;
}
.cid-uPkgNjTzV3 .navbar-toggler {
  position: relative;
}
.cid-uPkgNjTzV3 .dropdown-item.active,
.cid-uPkgNjTzV3 .dropdown-item:active {
  color: initial;
}
.cid-uPkgNjTzV3 .widget-title,
.cid-uPkgNjTzV3 .widget-icon {
  color: #ffffff;
}
.cid-uPkgNjTzV3 .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-uPkgNjTzV3 .menu-logo {
    display: none;
  }
  .cid-uPkgNjTzV3 .navbar {
    padding: 0;
  }
  .cid-uPkgNjTzV3 .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uPkgNjTzV3 button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-uPkgNkyS2P {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-uPkgNkyS2P .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-uPkgNkNcJL.popup-builder {
  background-color: #ffffff;
}
.cid-uPkgNkNcJL.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uPkgNkNcJL.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uPkgNkNcJL .modal-content,
.cid-uPkgNkNcJL .modal-dialog {
  height: auto;
}
.cid-uPkgNkNcJL .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uPkgNkNcJL .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uPkgNkNcJL .form-wrapper .mbr-form .form-group,
  .cid-uPkgNkNcJL .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uPkgNkNcJL .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uPkgNkNcJL .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPkgNkNcJL .mbr-text {
  text-align: center;
}
.cid-uPkgNkNcJL .pt-0 {
  padding-top: 0 !important;
}
.cid-uPkgNkNcJL .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uPkgNkNcJL .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uPkgNkNcJL .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uPkgNkNcJL .modal-open {
  overflow: hidden;
}
.cid-uPkgNkNcJL .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uPkgNkNcJL .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uPkgNkNcJL .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uPkgNkNcJL .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uPkgNkNcJL .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uPkgNkNcJL .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uPkgNkNcJL .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uPkgNkNcJL .modal-content {
  background: #efeeee;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uPkgNkNcJL .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uPkgNkNcJL .modal-backdrop.fade {
  opacity: 0;
}
.cid-uPkgNkNcJL .modal-backdrop.show {
  opacity: .5;
}
.cid-uPkgNkNcJL .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-uPkgNkNcJL .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uPkgNkNcJL .modal-header .close:hover {
  opacity: 1;
}
.cid-uPkgNkNcJL .modal-header .close:focus {
  outline: none;
}
.cid-uPkgNkNcJL .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #073b4c;
}
.cid-uPkgNkNcJL .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-uPkgNkNcJL .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-uPkgNkNcJL .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uPkgNkNcJL .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uPkgNkNcJL .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uPkgNkNcJL .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uPkgNkNcJL .modal-sm {
    max-width: 300px;
  }
  .cid-uPkgNkNcJL .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uPkgNkNcJL .modal-lg,
  .cid-uPkgNkNcJL .modal-xl {
    max-width: 800px;
  }
  .cid-uPkgNkNcJL .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uPkgNkNcJL .modal-xl {
    max-width: 1140px;
  }
  .cid-uPkgNkNcJL .container {
    max-width: 1140px;
  }
}
.cid-uPkgNkNcJL .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uPkgNkNcJL .container {
    max-width: 720px;
  }
}
.cid-uPkgNkNcJL .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uPkgNkNcJL .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uPkgNkNcJL .form-group {
  margin-bottom: 1rem;
}
.cid-uPkgNkNcJL .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uPkgNkNcJL .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uPkgNkNcJL .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uPkgNlj2Tc {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-uPkgNlj2Tc .media-container-row .mbr-text {
  color: #333333;
}
.cid-uQrG9y2LUS .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-uQrG9y2LUS .navbar-fixed-top {
  padding-top: 0;
}
.cid-uQrG9y2LUS .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uQrG9y2LUS .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uQrG9y2LUS .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uQrG9y2LUS .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uQrG9y2LUS .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uQrG9y2LUS .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uQrG9y2LUS .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uQrG9y2LUS .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uQrG9y2LUS .dropdown-item {
  padding: 0;
}
.cid-uQrG9y2LUS .dropdown-item,
.cid-uQrG9y2LUS .nav-link,
.cid-uQrG9y2LUS .brand-name {
  font-style: normal;
}
.cid-uQrG9y2LUS .dropdown-item:hover,
.cid-uQrG9y2LUS .nav-link:hover,
.cid-uQrG9y2LUS .brand-name:hover {
  color: #ff3366 !important;
}
.cid-uQrG9y2LUS .dropdown-menu {
  background-color: #0a1c44;
}
.cid-uQrG9y2LUS .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-uQrG9y2LUS .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-uQrG9y2LUS .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-uQrG9y2LUS .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uQrG9y2LUS .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-uQrG9y2LUS .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-uQrG9y2LUS .content-text {
  margin-bottom: 0;
}
.cid-uQrG9y2LUS .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uQrG9y2LUS .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uQrG9y2LUS .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uQrG9y2LUS .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uQrG9y2LUS .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-uQrG9y2LUS .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uQrG9y2LUS .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uQrG9y2LUS .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uQrG9y2LUS .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uQrG9y2LUS .nav-dropdown .link {
  font-weight: 400;
}
.cid-uQrG9y2LUS .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uQrG9y2LUS .content-right-side {
  text-align: center;
}
.cid-uQrG9y2LUS .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uQrG9y2LUS .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uQrG9y2LUS .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-uQrG9y2LUS .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uQrG9y2LUS .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uQrG9y2LUS .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uQrG9y2LUS .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uQrG9y2LUS .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uQrG9y2LUS .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-uQrG9y2LUS .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-uQrG9y2LUS .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-uQrG9y2LUS .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uQrG9y2LUS .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uQrG9y2LUS .navbar {
    display: block;
    padding: 0;
  }
  .cid-uQrG9y2LUS .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uQrG9y2LUS .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uQrG9y2LUS .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uQrG9y2LUS .navbar-toggler {
    display: none;
  }
  .cid-uQrG9y2LUS .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uQrG9y2LUS .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uQrG9y2LUS .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uQrG9y2LUS .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uQrG9y2LUS .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uQrG9y2LUS .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uQrG9y2LUS .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uQrG9y2LUS .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uQrG9y2LUS .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uQrG9y2LUS .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uQrG9y2LUS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQrG9y2LUS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQrG9y2LUS .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uQrG9y2LUS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQrG9y2LUS .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-uQrG9y2LUS .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uQrG9y2LUS .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQrG9y2LUS .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uQrG9y2LUS .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uQrG9y2LUS .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uQrG9y2LUS .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uQrG9y2LUS .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-uQrG9y2LUS .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uQrG9y2LUS button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-uQrG9y2LUS button.navbar-toggler:focus {
  outline: none;
}
.cid-uQrG9y2LUS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-uQrG9y2LUS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQrG9y2LUS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQrG9y2LUS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQrG9y2LUS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQrG9y2LUS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQrG9y2LUS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQrG9y2LUS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQrG9y2LUS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQrG9y2LUS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQrG9y2LUS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQrG9y2LUS .collapsed .btn {
  display: flex;
}
.cid-uQrG9y2LUS .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uQrG9y2LUS .collapsed .navbar-collapse.collapsing,
.cid-uQrG9y2LUS .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uQrG9y2LUS .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uQrG9y2LUS .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uQrG9y2LUS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uQrG9y2LUS .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uQrG9y2LUS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uQrG9y2LUS .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uQrG9y2LUS .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uQrG9y2LUS .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-uQrG9y2LUS .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uQrG9y2LUS .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uQrG9y2LUS .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uQrG9y2LUS .collapsed button.navbar-toggler {
  display: block;
}
.cid-uQrG9y2LUS .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uQrG9y2LUS .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uQrG9y2LUS .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uQrG9y2LUS .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uQrG9y2LUS .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uQrG9y2LUS .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uQrG9y2LUS .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-uQrG9y2LUS .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-uQrG9y2LUS .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-uQrG9y2LUS .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-uQrG9y2LUS .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uQrG9y2LUS .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uQrG9y2LUS .navbar-collapse.collapsing,
  .cid-uQrG9y2LUS .navbar-collapse.show {
    display: block !important;
  }
  .cid-uQrG9y2LUS .navbar-collapse.collapsing .navbar-nav,
  .cid-uQrG9y2LUS .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uQrG9y2LUS .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uQrG9y2LUS .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uQrG9y2LUS .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uQrG9y2LUS .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uQrG9y2LUS .navbar-collapse.collapsing .navbar-buttons,
  .cid-uQrG9y2LUS .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uQrG9y2LUS .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uQrG9y2LUS .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uQrG9y2LUS img {
    height: 3.8rem !important;
  }
  .cid-uQrG9y2LUS .btn {
    display: flex;
  }
  .cid-uQrG9y2LUS button.navbar-toggler {
    display: block;
  }
  .cid-uQrG9y2LUS .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uQrG9y2LUS .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uQrG9y2LUS .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uQrG9y2LUS .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uQrG9y2LUS .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uQrG9y2LUS .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uQrG9y2LUS .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uQrG9y2LUS .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uQrG9y2LUS .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uQrG9y2LUS .nav-link:focus {
  outline: none;
}
.cid-uQrG9y2LUS .navbar-toggler {
  position: relative;
}
.cid-uQrG9y2LUS .dropdown-item.active,
.cid-uQrG9y2LUS .dropdown-item:active {
  color: initial;
}
.cid-uQrG9y2LUS .widget-title,
.cid-uQrG9y2LUS .widget-icon {
  color: #ffffff;
}
.cid-uQrG9y2LUS .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-uQrG9y2LUS .menu-logo {
    display: none;
  }
  .cid-uQrG9y2LUS .navbar {
    padding: 0;
  }
  .cid-uQrG9y2LUS .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uQrG9y2LUS button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-uQrG9yK9UT {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-uQrG9yK9UT .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-uQrG9z8EkI {
  padding-top: 120px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/h-free-router-1536x1024.png");
}
.cid-uQrG9z8EkI H3 {
  color: #c7eaf3;
}
.cid-uQrG9z8EkI .mbr-text,
.cid-uQrG9z8EkI .mbr-section-btn {
  color: #efefef;
}
.cid-uQrG9z8EkI H1 {
  color: #ffda00;
}
.cid-uQrG9zzSzi {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efeeee;
}
.cid-uQrG9zzSzi .line {
  background-color: #0f7699;
  color: #0f7699;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uQrG9zzSzi .section-text {
  padding: 2rem 0;
  color: #073b4c;
}
.cid-uQrG9zzSzi .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uQrG9zzSzi .inner-container {
    width: 100% !important;
  }
}
.cid-uQrG9zO56z {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-uQrG9zO56z .mbr-section-subtitle {
  color: #333333;
  text-align: center;
}
.cid-uQrG9zO56z .btn {
  margin: 0 0 .5rem 0;
}
.cid-uQrG9zO56z .content-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-uQrG9zO56z H2 {
  color: #000000;
  text-align: center;
}
.cid-uQrG9A70ge {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #073b4c;
}
.cid-uQrG9A70ge .plan {
  overflow: visible;
  word-break: break-word;
  background-color: #FFFFFF33;
  border-radius: 25px;
  box-shadow: 15px 17px 32px -2px rgba(0, 0, 0, 0.5);
  padding: 30px 30px 45px;
  transition-duration: all .3s;
}
.cid-uQrG9A70ge .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
@media (max-width: 991px) {
  .cid-uQrG9A70ge .align-center {
    margin-top: 2rem;
  }
  .cid-uQrG9A70ge .align-center:first-child {
    margin-top: 0rem;
  }
  .cid-uQrG9A70ge .align-center:nth-child(2) {
    margin-top: 0rem;
  }
}
.cid-uQrG9A70ge .list {
  text-align: left;
}
.cid-uQrG9A70ge .category {
  text-align: left;
  margin-bottom: 24px;
}
.cid-uQrG9A70ge .link {
  text-align: left;
}
.cid-uQrG9A70ge li {
  display: flex;
  align-items: center;
}
.cid-uQrG9A70ge li:last-child {
  margin-bottom: 0;
}
.cid-uQrG9A70ge ul {
  padding-inline-start: 0px;
  margin-bottom: 0rem;
}
.cid-uQrG9A70ge .card {
  border: 1px solid #eff0f6;
}
.cid-uQrG9A70ge .text {
  margin-bottom: 34px;
  text-align: left;
  color: #5f5d68;
}
.cid-uQrG9A70ge .text2 {
  margin-bottom: 34px;
  text-align: left;
  color: #14142b;
}
.cid-uQrG9A70ge .align {
  margin-bottom: 31px;
}
.cid-uQrG9A70ge .name {
  margin-bottom: 16px;
  text-align: center;
  color: #ffffff;
}
.cid-uQrG9A70ge .price,
.cid-uQrG9A70ge .montn,
.cid-uQrG9A70ge .month2 {
  display: inline !important;
}
.cid-uQrG9A70ge .mbr-text {
  display: inline;
  width: 100%;
}
.cid-uQrG9A70ge .month {
  width: auto;
  display: inline;
  color: #ffffff;
}
.cid-uQrG9A70ge .month2 {
  width: auto;
  display: inline;
  color: #14142b;
}
.cid-uQrG9A70ge span {
  color: #e5be8a;
  font-size: 0.6rem;
  margin-right: 6px;
  font-weight: 800;
}
.cid-uQrG9A70ge .mbr-section-title {
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
}
.cid-uQrG9A70ge .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 5.2px;
}
.cid-uQrG9A70ge .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
  padding-bottom: 56px;
  max-width: 715px;
  margin: auto;
}
.cid-uQrG9A70ge .card1:hover,
.cid-uQrG9A70ge .card2:hover,
.cid-uQrG9A70ge .card3:hover {
  transform: translate(0px, -6px);
}
@media (max-width: 768px) {
  .cid-uQrG9A70ge .align-center:nth-child(2) {
    margin-top: 2rem;
  }
}
.cid-uQrG9A70ge a.btn > span {
  margin-left: 0.5rem;
  background-color: transparent;
}
.cid-uQrG9A70ge .list,
.cid-uQrG9A70ge .link {
  color: #ffffff;
}
.cid-uQrG9A70ge .price {
  color: #75dbcd;
}
.cid-uQrG9A70ge .plan:hover {
  background-color: #FFFFFF4D;
}
.cid-uQrG9A70ge .btn {
  padding: 15px 30px !important;
  transition: all .3s !important;
  width: auto;
}
.cid-uQrG9A70ge a {
  font-weight: 400;
  letter-spacing: 5.2px;
  transition: all .3s;
}
.cid-uQrG9A70ge a.btn:hover {
  background-color: #8e443d !important;
  border-color: #8e443d !important;
}
.cid-uQrG9A70ge .button-align {
  margin-bottom: 25px;
  text-align: center;
}
.cid-uQrG9A70ge .btn span {
  color: currentColor;
}
.cid-vfmFhUm3zz {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #073b4c;
}
.cid-vfmFhUm3zz .plan {
  overflow: visible;
  word-break: break-word;
  background-color: #FFFFFF33;
  border-radius: 25px;
  box-shadow: 15px 17px 32px -2px rgba(0, 0, 0, 0.5);
  padding: 30px 30px 45px;
  transition-duration: all .3s;
}
.cid-vfmFhUm3zz .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
@media (max-width: 991px) {
  .cid-vfmFhUm3zz .align-center {
    margin-top: 2rem;
  }
  .cid-vfmFhUm3zz .align-center:first-child {
    margin-top: 0rem;
  }
  .cid-vfmFhUm3zz .align-center:nth-child(2) {
    margin-top: 0rem;
  }
}
.cid-vfmFhUm3zz .list {
  text-align: left;
}
.cid-vfmFhUm3zz .category {
  text-align: left;
  margin-bottom: 24px;
}
.cid-vfmFhUm3zz .link {
  text-align: left;
}
.cid-vfmFhUm3zz li {
  display: flex;
  align-items: center;
}
.cid-vfmFhUm3zz li:last-child {
  margin-bottom: 0;
}
.cid-vfmFhUm3zz ul {
  padding-inline-start: 0px;
  margin-bottom: 0rem;
}
.cid-vfmFhUm3zz .card {
  border: 1px solid #eff0f6;
}
.cid-vfmFhUm3zz .text {
  margin-bottom: 34px;
  text-align: left;
  color: #5f5d68;
}
.cid-vfmFhUm3zz .text2 {
  margin-bottom: 34px;
  text-align: left;
  color: #14142b;
}
.cid-vfmFhUm3zz .align {
  margin-bottom: 31px;
}
.cid-vfmFhUm3zz .name {
  margin-bottom: 16px;
  text-align: center;
  color: #ffffff;
}
.cid-vfmFhUm3zz .price,
.cid-vfmFhUm3zz .montn,
.cid-vfmFhUm3zz .month2 {
  display: inline !important;
}
.cid-vfmFhUm3zz .mbr-text {
  display: inline;
  width: 100%;
}
.cid-vfmFhUm3zz .month {
  width: auto;
  display: inline;
  color: #ffffff;
}
.cid-vfmFhUm3zz .month2 {
  width: auto;
  display: inline;
  color: #14142b;
}
.cid-vfmFhUm3zz span {
  color: #e5be8a;
  font-size: 0.6rem;
  margin-right: 6px;
  font-weight: 800;
}
.cid-vfmFhUm3zz .mbr-section-title {
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
}
.cid-vfmFhUm3zz .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 5.2px;
}
.cid-vfmFhUm3zz .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
  padding-bottom: 56px;
  max-width: 715px;
  margin: auto;
}
.cid-vfmFhUm3zz .card1:hover,
.cid-vfmFhUm3zz .card2:hover,
.cid-vfmFhUm3zz .card3:hover {
  transform: translate(0px, -6px);
}
@media (max-width: 768px) {
  .cid-vfmFhUm3zz .align-center:nth-child(2) {
    margin-top: 2rem;
  }
}
.cid-vfmFhUm3zz a.btn > span {
  margin-left: 0.5rem;
  background-color: transparent;
}
.cid-vfmFhUm3zz .list,
.cid-vfmFhUm3zz .link {
  color: #ffffff;
}
.cid-vfmFhUm3zz .price {
  color: #75dbcd;
}
.cid-vfmFhUm3zz .plan:hover {
  background-color: #FFFFFF4D;
}
.cid-vfmFhUm3zz .btn {
  padding: 15px 30px !important;
  transition: all .3s !important;
  width: auto;
}
.cid-vfmFhUm3zz a {
  font-weight: 400;
  letter-spacing: 5.2px;
  transition: all .3s;
}
.cid-vfmFhUm3zz a.btn:hover {
  background-color: #8e443d !important;
  border-color: #8e443d !important;
}
.cid-vfmFhUm3zz .button-align {
  margin-bottom: 25px;
  text-align: center;
}
.cid-vfmFhUm3zz .btn span {
  color: currentColor;
}
.cid-vceYDbql3r {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background: #073b4c;
}
.cid-vceYDbql3r .plan {
  overflow: visible;
  word-break: break-word;
  background-color: #FFFFFF33;
  border-radius: 25px;
  box-shadow: 15px 17px 32px -2px rgba(0, 0, 0, 0.5);
  padding: 30px 30px 45px;
  transition-duration: all .3s;
}
.cid-vceYDbql3r .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
@media (max-width: 991px) {
  .cid-vceYDbql3r .align-center {
    margin-top: 2rem;
  }
  .cid-vceYDbql3r .align-center:first-child {
    margin-top: 0rem;
  }
  .cid-vceYDbql3r .align-center:nth-child(2) {
    margin-top: 0rem;
  }
}
.cid-vceYDbql3r .list {
  text-align: left;
}
.cid-vceYDbql3r .category {
  text-align: left;
  margin-bottom: 24px;
}
.cid-vceYDbql3r .link {
  text-align: left;
}
.cid-vceYDbql3r li {
  display: flex;
  align-items: center;
}
.cid-vceYDbql3r li:last-child {
  margin-bottom: 0;
}
.cid-vceYDbql3r ul {
  padding-inline-start: 0px;
  margin-bottom: 0rem;
}
.cid-vceYDbql3r .card {
  border: 1px solid #eff0f6;
}
.cid-vceYDbql3r .text {
  margin-bottom: 34px;
  text-align: left;
  color: #5f5d68;
}
.cid-vceYDbql3r .text2 {
  margin-bottom: 34px;
  text-align: left;
  color: #14142b;
}
.cid-vceYDbql3r .align {
  margin-bottom: 31px;
}
.cid-vceYDbql3r .name {
  margin-bottom: 16px;
  text-align: center;
  color: #f9f295;
}
.cid-vceYDbql3r .price,
.cid-vceYDbql3r .montn,
.cid-vceYDbql3r .month2 {
  display: inline !important;
}
.cid-vceYDbql3r .mbr-text {
  display: inline;
  width: 100%;
}
.cid-vceYDbql3r .month {
  width: auto;
  display: inline;
  color: #ffffff;
}
.cid-vceYDbql3r .month2 {
  width: auto;
  display: inline;
  color: #14142b;
}
.cid-vceYDbql3r span {
  color: #e5be8a;
  font-size: 0.6rem;
  margin-right: 6px;
  font-weight: 800;
}
.cid-vceYDbql3r .mbr-section-title {
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
}
.cid-vceYDbql3r .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 5.2px;
}
.cid-vceYDbql3r .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
  padding-bottom: 56px;
  max-width: 715px;
  margin: auto;
}
.cid-vceYDbql3r .card1:hover,
.cid-vceYDbql3r .card2:hover,
.cid-vceYDbql3r .card3:hover {
  transform: translate(0px, -6px);
}
@media (max-width: 768px) {
  .cid-vceYDbql3r .align-center:nth-child(2) {
    margin-top: 2rem;
  }
}
.cid-vceYDbql3r a.btn > span {
  margin-left: 0.5rem;
  background-color: transparent;
}
.cid-vceYDbql3r .list,
.cid-vceYDbql3r .link {
  color: #ffffff;
}
.cid-vceYDbql3r .price {
  color: #75dbcd;
}
.cid-vceYDbql3r .plan:hover {
  background-color: #FFFFFF4D;
}
.cid-vceYDbql3r .btn {
  padding: 15px 30px !important;
  transition: all .3s !important;
  width: auto;
}
.cid-vceYDbql3r a {
  font-weight: 400;
  letter-spacing: 5.2px;
  transition: all .3s;
}
.cid-vceYDbql3r a.btn:hover {
  background-color: #8e443d !important;
  border-color: #8e443d !important;
}
.cid-vceYDbql3r .button-align {
  margin-bottom: 25px;
  text-align: center;
}
.cid-vceYDbql3r .btn span {
  color: currentColor;
}
.cid-uXxMCMNda4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #efeeee;
}
.cid-uXxMCMNda4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXxMCMNda4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXxMCMNda4 .container {
  max-width: 1260px;
}
@media (max-width: 1199px) {
  .cid-uXxMCMNda4 .container {
    max-width: 960px;
  }
}
@media (max-width: 767px) {
  .cid-uXxMCMNda4 .container {
    max-width: 540px;
  }
}
.cid-uXxMCMNda4 .logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.cid-uXxMCMNda4 .logo-container img {
  width: 80px;
  height: auto;
  object-fit: cover;
}
.cid-uXxMCMNda4 .mbr-section-title {
  color: #121212;
}
.cid-uXxMCMNda4 .mbr-section-subtitle {
  color: #282124;
  margin-top: 15px;
}
.cid-uXxMCMNda4 .mbr-text {
  color: #878e99;
  margin-top: 20px;
}
.cid-uXxMCMNda4 .mbr-section-btn {
  margin-top: 25px;
}
.cid-uXxMCMNda4 .mbr-text,
.cid-uXxMCMNda4 .mbr-section-btn {
  color: #282124;
}
.cid-uXBSOXF9dk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #073b4c;
}
.cid-uXBSOXF9dk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXBSOXF9dk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXBSOXF9dk .content-wrapper {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-uXBSOXF9dk .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uXBSOXF9dk .content-wrapper .label-wrapper {
  margin-bottom: 32px;
}
.cid-uXBSOXF9dk .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-top: 2px solid #ffffff;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.cid-uXBSOXF9dk .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  display: inline-block;
  margin-right: 8px;
}
.cid-uXBSOXF9dk .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-uXBSOXF9dk .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #396270, #149dcc 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-uXBSOXF9dk .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uXBSOXF9dk .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uXBSOXF9dk .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uXBSOXF9dk .items-wrapper {
  margin: 0 -12px;
  justify-content: center;
}
.cid-uXBSOXF9dk .items-wrapper .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uXBSOXF9dk .items-wrapper .item {
    margin-bottom: 18px;
  }
}
.cid-uXBSOXF9dk .items-wrapper .item .item-wrapper {
  background-color: #3d626c;
  border-top: 3px solid #55b4d4;
  box-shadow: 0 8px 15px -8px #149dcc;
  padding: 30px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uXBSOXF9dk .items-wrapper .item .item-wrapper {
    padding: 24px;
  }
}
.cid-uXBSOXF9dk .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 24px;
}
.cid-uXBSOXF9dk .items-wrapper .item .item-wrapper .item-content .middle-border {
  width: 100%;
  border-bottom: 2px dashed #3d626c;
  margin-bottom: 24px;
}
.cid-uXBSOXF9dk .items-wrapper .item .item-wrapper .item-content .list {
  padding: 0;
  margin: 24px 0 0 0;
  list-style: none;
}
.cid-uXBSOXF9dk .items-wrapper .item .item-wrapper .item-content .list .item-wrap {
  margin-bottom: 16px;
  padding-left: 24px;
  position: relative;
}
.cid-uXBSOXF9dk .items-wrapper .item .item-wrapper .item-content .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uXBSOXF9dk .items-wrapper .item .item-wrapper .item-content .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  color: #ffffff;
}
.cid-uXBSOXF9dk .items-wrapper .item .item-wrapper .item-content .mbr-section-btn {
  width: 100%;
  margin-top: 14px;
}
.cid-uXBSOXF9dk .items-wrapper .item .item-wrapper .item-content .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
}
.cid-uXBSOXF9dk .mbr-label,
.cid-uXBSOXF9dk .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uXBSOXF9dk .mbr-section-title,
.cid-uXBSOXF9dk .title-wrapper {
  color: #073b4c;
  text-align: center;
}
.cid-uXBSOXF9dk .mbr-text,
.cid-uXBSOXF9dk .text-wrapper {
  color: #efeeee;
  text-align: center;
}
.cid-uXBSOXF9dk .item-title {
  color: #000000;
  text-align: center;
}
.cid-uXBSOXF9dk .list {
  color: #515151;
}
.cid-uXBSOXF9dk .item-title,
.cid-uXBSOXF9dk .mbr-section-btn {
  color: #ffffff;
}
.cid-uXBSOXF9dk .list,
.cid-uXBSOXF9dk .item-wrap {
  color: #efeeee;
}
.cid-vgnbBJd0uU {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #efeeee;
}
.cid-vgnbBJd0uU .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #073b4c;
}
.cid-vgnbBJd0uU img {
  width: 100%;
}
.cid-vgnbBJd0uU .mbr-text {
  margin-top: 6rem;
}
.cid-vgnbBJd0uU .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-vgnbBJd0uU .content-wrapper {
  padding-top: 6rem;
}
.cid-vgnbBJd0uU .mbr-section-subtitle {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-vgnbBJd0uU .content-wrapper {
    padding-top: 0rem;
  }
  .cid-vgnbBJd0uU .mbr-text {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-vgnbBJd0uU .back {
    width: 100%;
    height: 75%;
  }
  .cid-vgnbBJd0uU .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-vgnbBJd0uU .mbr-text {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-vgnbBJd0uU .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-vgnbBJd0uU .mbr-section-subtitle {
    right: 2rem;
  }
}
.cid-vgnbBJd0uU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgnbBJd0uU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgnbBJd0uU .mbr-section-title {
  color: #ffda00;
}
.cid-vgnbBJd0uU .mbr-text,
.cid-vgnbBJd0uU .mbr-section-btn {
  color: #ffffff;
}
.cid-uQrG9BVNea {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-uQrG9BVNea h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-uQrG9BVNea p {
  color: #767676;
}
.cid-uQrG9BVNea .card-wrapper {
  border-top: 1px solid #efefef;
  background-color: #ffffff;
  position: relative;
  justify-content: unset;
}
.cid-uQrG9BVNea .card-wrapper .card-box {
  padding: 2rem;
  width: 100%;
}
.cid-uQrG9BVNea .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-uQrG9BVNea .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-uQrG9BVNea .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-uQrG9BVNea .card-wrapper .card-box .bottom-line p {
    text-align: center;
    margin: 1rem 0 0 0;
  }
}
.cid-uQrG9BVNea H2 {
  text-align: center;
}
.cid-uQrG9CAE0I {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-uQrG9CAE0I .container {
  max-width: 1400px;
}
.cid-uQrG9CAE0I .card-img2 span {
  padding-top: 6px;
}
.cid-uQrG9CAE0I .soc-item a {
  padding-top: 5px;
}
.cid-uQrG9CAE0I .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-uQrG9CAE0I .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-uQrG9CAE0I .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-uQrG9CAE0I .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uQrG9CAE0I svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-uQrG9CAE0I #e2_shape {
  fill: #2681cd !important;
}
.cid-uQrG9CAE0I .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-uQrG9CAE0I .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-uQrG9CAE0I .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uQrG9CAE0I .card-img {
  width: auto;
}
.cid-uQrG9CAE0I .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-uQrG9CAE0I .soc-item span {
  font-size: 1.4rem;
}
.cid-uQrG9CAE0I .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-uQrG9CAE0I .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uQrG9CAE0I .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uQrG9CAE0I .media-wrap {
  margin-bottom: 1rem;
}
.cid-uQrG9CAE0I .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uQrG9CAE0I img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-uQrG9CAE0I .item {
    justify-content: center;
  }
  .cid-uQrG9CAE0I .quote::after {
    left: 60px;
  }
}
.cid-uQrG9CAE0I .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-uQrG9CAE0I .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uQrG9CAE0I .text1 {
  color: #ffffff;
}
.cid-uQrG9CAE0I .item-title {
  color: #ffffff;
}
.cid-uQrG9CAE0I H5 {
  color: #ffffff;
  text-align: left;
}
.cid-uQrG9CAE0I .theme {
  color: #ffffff;
}
.cid-uQrG9CAE0I .copyright > p {
  color: #ff3366;
}
.cid-uQrG9CAE0I .text2 {
  color: #ffffff;
}
.cid-uQsr3PmndE .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-uQsr3PmndE .navbar-fixed-top {
  padding-top: 0;
}
.cid-uQsr3PmndE .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uQsr3PmndE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uQsr3PmndE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uQsr3PmndE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uQsr3PmndE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uQsr3PmndE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uQsr3PmndE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uQsr3PmndE .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uQsr3PmndE .dropdown-item {
  padding: 0;
}
.cid-uQsr3PmndE .dropdown-item,
.cid-uQsr3PmndE .nav-link,
.cid-uQsr3PmndE .brand-name {
  font-style: normal;
}
.cid-uQsr3PmndE .dropdown-item:hover,
.cid-uQsr3PmndE .nav-link:hover,
.cid-uQsr3PmndE .brand-name:hover {
  color: #ff3366 !important;
}
.cid-uQsr3PmndE .dropdown-menu {
  background-color: #0a1c44;
}
.cid-uQsr3PmndE .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-uQsr3PmndE .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-uQsr3PmndE .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-uQsr3PmndE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uQsr3PmndE .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-uQsr3PmndE .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-uQsr3PmndE .content-text {
  margin-bottom: 0;
}
.cid-uQsr3PmndE .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uQsr3PmndE .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uQsr3PmndE .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uQsr3PmndE .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uQsr3PmndE .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-uQsr3PmndE .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uQsr3PmndE .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uQsr3PmndE .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uQsr3PmndE .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uQsr3PmndE .nav-dropdown .link {
  font-weight: 400;
}
.cid-uQsr3PmndE .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uQsr3PmndE .content-right-side {
  text-align: center;
}
.cid-uQsr3PmndE .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uQsr3PmndE .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uQsr3PmndE .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-uQsr3PmndE .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uQsr3PmndE .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uQsr3PmndE .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uQsr3PmndE .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uQsr3PmndE .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uQsr3PmndE .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-uQsr3PmndE .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-uQsr3PmndE .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-uQsr3PmndE .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uQsr3PmndE .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uQsr3PmndE .navbar {
    display: block;
    padding: 0;
  }
  .cid-uQsr3PmndE .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uQsr3PmndE .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uQsr3PmndE .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uQsr3PmndE .navbar-toggler {
    display: none;
  }
  .cid-uQsr3PmndE .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uQsr3PmndE .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uQsr3PmndE .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uQsr3PmndE .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uQsr3PmndE .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uQsr3PmndE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uQsr3PmndE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uQsr3PmndE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uQsr3PmndE .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uQsr3PmndE .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uQsr3PmndE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQsr3PmndE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQsr3PmndE .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uQsr3PmndE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQsr3PmndE .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-uQsr3PmndE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uQsr3PmndE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQsr3PmndE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uQsr3PmndE .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uQsr3PmndE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uQsr3PmndE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uQsr3PmndE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-uQsr3PmndE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uQsr3PmndE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-uQsr3PmndE button.navbar-toggler:focus {
  outline: none;
}
.cid-uQsr3PmndE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-uQsr3PmndE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQsr3PmndE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQsr3PmndE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQsr3PmndE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQsr3PmndE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQsr3PmndE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQsr3PmndE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQsr3PmndE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQsr3PmndE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQsr3PmndE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQsr3PmndE .collapsed .btn {
  display: flex;
}
.cid-uQsr3PmndE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uQsr3PmndE .collapsed .navbar-collapse.collapsing,
.cid-uQsr3PmndE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uQsr3PmndE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uQsr3PmndE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uQsr3PmndE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uQsr3PmndE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uQsr3PmndE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uQsr3PmndE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uQsr3PmndE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uQsr3PmndE .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-uQsr3PmndE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uQsr3PmndE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uQsr3PmndE .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uQsr3PmndE .collapsed button.navbar-toggler {
  display: block;
}
.cid-uQsr3PmndE .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uQsr3PmndE .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uQsr3PmndE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uQsr3PmndE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uQsr3PmndE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uQsr3PmndE .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uQsr3PmndE .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-uQsr3PmndE .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-uQsr3PmndE .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-uQsr3PmndE .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-uQsr3PmndE .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uQsr3PmndE .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uQsr3PmndE .navbar-collapse.collapsing,
  .cid-uQsr3PmndE .navbar-collapse.show {
    display: block !important;
  }
  .cid-uQsr3PmndE .navbar-collapse.collapsing .navbar-nav,
  .cid-uQsr3PmndE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uQsr3PmndE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uQsr3PmndE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uQsr3PmndE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uQsr3PmndE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uQsr3PmndE .navbar-collapse.collapsing .navbar-buttons,
  .cid-uQsr3PmndE .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uQsr3PmndE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uQsr3PmndE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uQsr3PmndE img {
    height: 3.8rem !important;
  }
  .cid-uQsr3PmndE .btn {
    display: flex;
  }
  .cid-uQsr3PmndE button.navbar-toggler {
    display: block;
  }
  .cid-uQsr3PmndE .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uQsr3PmndE .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uQsr3PmndE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uQsr3PmndE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uQsr3PmndE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uQsr3PmndE .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uQsr3PmndE .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uQsr3PmndE .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uQsr3PmndE .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uQsr3PmndE .nav-link:focus {
  outline: none;
}
.cid-uQsr3PmndE .navbar-toggler {
  position: relative;
}
.cid-uQsr3PmndE .dropdown-item.active,
.cid-uQsr3PmndE .dropdown-item:active {
  color: initial;
}
.cid-uQsr3PmndE .widget-title,
.cid-uQsr3PmndE .widget-icon {
  color: #ffffff;
}
.cid-uQsr3PmndE .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-uQsr3PmndE .menu-logo {
    display: none;
  }
  .cid-uQsr3PmndE .navbar {
    padding: 0;
  }
  .cid-uQsr3PmndE .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uQsr3PmndE button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-uQsr3QdEFC {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-uQsr3QdEFC .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-uQsr3QNpLv {
  padding-top: 120px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/16-1600x600.jpg");
}
.cid-uQsr3QNpLv H3 {
  color: #ffffff;
}
.cid-uQsr3QNpLv .mbr-text,
.cid-uQsr3QNpLv .mbr-section-btn {
  color: #efefef;
}
.cid-uQsr3ReJ8P {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efeeee;
}
.cid-uQsr3ReJ8P .line {
  background-color: #0f7699;
  color: #0f7699;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uQsr3ReJ8P .section-text {
  padding: 2rem 0;
  color: #e8543e;
}
.cid-uQsr3ReJ8P .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uQsr3ReJ8P .inner-container {
    width: 100% !important;
  }
}
.cid-uQss8CzFKF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-uQss8CzFKF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQss8CzFKF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQss8CzFKF .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uQss8CzFKF .items-wrapper {
    display: block;
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uQss8CzFKF .items-wrapper .item {
    margin-bottom: 12px;
  }
  .cid-uQss8CzFKF .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uQss8CzFKF .items-wrapper .item .item-wrapper {
  position: relative;
  background-color: #ffb2ef;
  padding: 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uQss8CzFKF .items-wrapper .item .item-wrapper {
    padding: 32px 16px;
  }
}
.cid-uQss8CzFKF .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uQss8CzFKF .items-wrapper .item .item-wrapper .card-box .item-title {
    margin-bottom: 24px;
  }
}
.cid-uQss8CzFKF .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uQss8CzFKF .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 24px;
}
@media (max-width: 992px) {
  .cid-uQss8CzFKF .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
    margin-bottom: 16px;
  }
}
.cid-uQss8CzFKF .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  position: absolute;
  bottom: -1.8rem;
  left: 0;
  width: 100%;
  padding: 0 48px;
}
@media (max-width: 992px) {
  .cid-uQss8CzFKF .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
    padding: 0 16px;
    bottom: -1rem;
  }
}
.cid-uQss8CzFKF .items-wrapper .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  font-size: 70px;
  -webkit-text-stroke-width: .125rem;
  -webkit-text-stroke-color: #050f0f;
  color: #ffe66d;
}
@media (max-width: 992px) {
  .cid-uQss8CzFKF .items-wrapper .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
    font-size: 48px;
    -webkit-text-stroke-width: .1rem;
  }
}
.cid-uQss8CzFKF .item-title {
  color: #050f0f;
}
.cid-uQss8CzFKF .item-text {
  color: #050f0f;
}
.cid-uQss8CzFKF .icon-wrapper {
  text-align: right;
}
.cid-uQsr3RFHA9 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-uQsr3RFHA9 .mbr-section-subtitle {
  color: #333333;
  text-align: center;
}
.cid-uQsr3RFHA9 .btn {
  margin: 0 0 .5rem 0;
}
.cid-uQsr3RFHA9 .content-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-uQsr3RFHA9 H2 {
  color: #000000;
  text-align: center;
}
.cid-uQsr3UkIfz {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uQsr3UkIfz h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uQsr3UkIfz p {
  color: #767676;
  text-align: left;
  margin-bottom: 0;
}
.cid-uQsr3UkIfz .card-img {
  text-align: left;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
  width: auto;
}
.cid-uQsr3UkIfz .card-img span {
  font-size: 72px;
  color: #ff3366;
}
.cid-uQsr3UkIfz .card-box {
  padding-left: 1rem;
  word-break: break-word;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uQsr3UkIfz .card-img {
    text-align: left;
    padding-bottom: 0.75rem;
  }
  .cid-uQsr3UkIfz .card-box {
    padding-left: 0;
  }
}
.cid-uQsr3V6LRA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
.cid-uQsr3V6LRA h2 {
  margin-bottom: 0;
}
.cid-uQsr3V6LRA h4 {
  font-weight: 500;
  margin-bottom: 0;
  width: 80%;
}
.cid-uQsr3V6LRA p {
  color: #767676;
  margin-bottom: 0;
}
.cid-uQsr3V6LRA .card-wrapper {
  border-top: 1px solid #efefef;
  background-color: #ffffff;
  position: relative;
  justify-content: unset;
}
.cid-uQsr3V6LRA .card-wrapper .card-box {
  padding: 2rem 1rem;
  width: 100%;
}
.cid-uQsr3V6LRA .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-uQsr3V6LRA .card-wrapper .card-box .bottom-line {
  width: 70%;
}
@media (max-width: 767px) {
  .cid-uQsr3V6LRA .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-uQsr3V6LRA .card-wrapper .card-box .bottom-line p {
    text-align: center;
    margin: 1rem 0 0 0;
  }
}
.cid-uQsr3V6LRA H2 {
  text-align: center;
}
.cid-uQsr3VZDbr {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-uQsr3VZDbr h4 {
  width: 85%;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-uQsr3VZDbr p {
  color: #767676;
}
.cid-uQsr3VZDbr .card-wrapper {
  border-top: 1px solid #efefef;
  background-color: #ffffff;
  position: relative;
  justify-content: unset;
}
.cid-uQsr3VZDbr .card-wrapper .card-box {
  padding: 2rem;
  width: 100%;
}
.cid-uQsr3VZDbr .card-wrapper .card-box .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-uQsr3VZDbr .card-wrapper .card-box .bottom-line {
  width: 85%;
}
@media (max-width: 767px) {
  .cid-uQsr3VZDbr .card-wrapper .card-box .bottom-line {
    width: 100%;
  }
  .cid-uQsr3VZDbr .card-wrapper .card-box .bottom-line p {
    text-align: center;
    margin: 1rem 0 0 0;
  }
}
.cid-uQsr3VZDbr H2 {
  text-align: center;
}
.cid-uQsr3WSRoB {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-uQsr3WSRoB .container {
  max-width: 1400px;
}
.cid-uQsr3WSRoB .card-img2 span {
  padding-top: 6px;
}
.cid-uQsr3WSRoB .soc-item a {
  padding-top: 5px;
}
.cid-uQsr3WSRoB .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-uQsr3WSRoB .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-uQsr3WSRoB .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-uQsr3WSRoB .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uQsr3WSRoB svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-uQsr3WSRoB #e2_shape {
  fill: #2681cd !important;
}
.cid-uQsr3WSRoB .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-uQsr3WSRoB .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-uQsr3WSRoB .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uQsr3WSRoB .card-img {
  width: auto;
}
.cid-uQsr3WSRoB .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-uQsr3WSRoB .soc-item span {
  font-size: 1.4rem;
}
.cid-uQsr3WSRoB .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-uQsr3WSRoB .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uQsr3WSRoB .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uQsr3WSRoB .media-wrap {
  margin-bottom: 1rem;
}
.cid-uQsr3WSRoB .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uQsr3WSRoB img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-uQsr3WSRoB .item {
    justify-content: center;
  }
  .cid-uQsr3WSRoB .quote::after {
    left: 60px;
  }
}
.cid-uQsr3WSRoB .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-uQsr3WSRoB .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uQsr3WSRoB .text1 {
  color: #ffffff;
}
.cid-uQsr3WSRoB .item-title {
  color: #ffffff;
}
.cid-uQsr3WSRoB H5 {
  color: #ffffff;
  text-align: left;
}
.cid-uQsr3WSRoB .theme {
  color: #ffffff;
}
.cid-uQsr3WSRoB .copyright > p {
  color: #ff3366;
}
.cid-uQsr3WSRoB .text2 {
  color: #ffffff;
}
.cid-uQKRemyqmd .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-uQKRemyqmd .navbar-fixed-top {
  padding-top: 0;
}
.cid-uQKRemyqmd .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uQKRemyqmd .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uQKRemyqmd .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uQKRemyqmd .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uQKRemyqmd .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uQKRemyqmd .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uQKRemyqmd .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uQKRemyqmd .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uQKRemyqmd .dropdown-item {
  padding: 0;
}
.cid-uQKRemyqmd .dropdown-item,
.cid-uQKRemyqmd .nav-link,
.cid-uQKRemyqmd .brand-name {
  font-style: normal;
}
.cid-uQKRemyqmd .dropdown-item:hover,
.cid-uQKRemyqmd .nav-link:hover,
.cid-uQKRemyqmd .brand-name:hover {
  color: #ff3366 !important;
}
.cid-uQKRemyqmd .dropdown-menu {
  background-color: #0a1c44;
}
.cid-uQKRemyqmd .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-uQKRemyqmd .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-uQKRemyqmd .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-uQKRemyqmd .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uQKRemyqmd .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-uQKRemyqmd .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-uQKRemyqmd .content-text {
  margin-bottom: 0;
}
.cid-uQKRemyqmd .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uQKRemyqmd .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uQKRemyqmd .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uQKRemyqmd .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uQKRemyqmd .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-uQKRemyqmd .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uQKRemyqmd .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uQKRemyqmd .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uQKRemyqmd .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uQKRemyqmd .nav-dropdown .link {
  font-weight: 400;
}
.cid-uQKRemyqmd .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uQKRemyqmd .content-right-side {
  text-align: center;
}
.cid-uQKRemyqmd .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uQKRemyqmd .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uQKRemyqmd .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-uQKRemyqmd .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uQKRemyqmd .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uQKRemyqmd .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uQKRemyqmd .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uQKRemyqmd .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uQKRemyqmd .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-uQKRemyqmd .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-uQKRemyqmd .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-uQKRemyqmd .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uQKRemyqmd .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uQKRemyqmd .navbar {
    display: block;
    padding: 0;
  }
  .cid-uQKRemyqmd .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uQKRemyqmd .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uQKRemyqmd .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uQKRemyqmd .navbar-toggler {
    display: none;
  }
  .cid-uQKRemyqmd .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uQKRemyqmd .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uQKRemyqmd .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uQKRemyqmd .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uQKRemyqmd .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uQKRemyqmd .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uQKRemyqmd .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uQKRemyqmd .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uQKRemyqmd .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uQKRemyqmd .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uQKRemyqmd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQKRemyqmd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQKRemyqmd .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uQKRemyqmd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQKRemyqmd .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-uQKRemyqmd .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uQKRemyqmd .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQKRemyqmd .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uQKRemyqmd .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uQKRemyqmd .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uQKRemyqmd .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uQKRemyqmd .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-uQKRemyqmd .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uQKRemyqmd button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-uQKRemyqmd button.navbar-toggler:focus {
  outline: none;
}
.cid-uQKRemyqmd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-uQKRemyqmd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQKRemyqmd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQKRemyqmd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQKRemyqmd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQKRemyqmd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQKRemyqmd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQKRemyqmd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQKRemyqmd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQKRemyqmd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQKRemyqmd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQKRemyqmd .collapsed .btn {
  display: flex;
}
.cid-uQKRemyqmd .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uQKRemyqmd .collapsed .navbar-collapse.collapsing,
.cid-uQKRemyqmd .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uQKRemyqmd .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uQKRemyqmd .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uQKRemyqmd .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uQKRemyqmd .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uQKRemyqmd .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uQKRemyqmd .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uQKRemyqmd .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uQKRemyqmd .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-uQKRemyqmd .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uQKRemyqmd .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uQKRemyqmd .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uQKRemyqmd .collapsed button.navbar-toggler {
  display: block;
}
.cid-uQKRemyqmd .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uQKRemyqmd .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uQKRemyqmd .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uQKRemyqmd .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uQKRemyqmd .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uQKRemyqmd .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uQKRemyqmd .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-uQKRemyqmd .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-uQKRemyqmd .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-uQKRemyqmd .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-uQKRemyqmd .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uQKRemyqmd .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uQKRemyqmd .navbar-collapse.collapsing,
  .cid-uQKRemyqmd .navbar-collapse.show {
    display: block !important;
  }
  .cid-uQKRemyqmd .navbar-collapse.collapsing .navbar-nav,
  .cid-uQKRemyqmd .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uQKRemyqmd .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uQKRemyqmd .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uQKRemyqmd .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uQKRemyqmd .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uQKRemyqmd .navbar-collapse.collapsing .navbar-buttons,
  .cid-uQKRemyqmd .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uQKRemyqmd .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uQKRemyqmd .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uQKRemyqmd img {
    height: 3.8rem !important;
  }
  .cid-uQKRemyqmd .btn {
    display: flex;
  }
  .cid-uQKRemyqmd button.navbar-toggler {
    display: block;
  }
  .cid-uQKRemyqmd .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uQKRemyqmd .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uQKRemyqmd .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uQKRemyqmd .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uQKRemyqmd .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uQKRemyqmd .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uQKRemyqmd .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uQKRemyqmd .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uQKRemyqmd .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uQKRemyqmd .nav-link:focus {
  outline: none;
}
.cid-uQKRemyqmd .navbar-toggler {
  position: relative;
}
.cid-uQKRemyqmd .dropdown-item.active,
.cid-uQKRemyqmd .dropdown-item:active {
  color: initial;
}
.cid-uQKRemyqmd .widget-title,
.cid-uQKRemyqmd .widget-icon {
  color: #ffffff;
}
.cid-uQKRemyqmd .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-uQKRemyqmd .menu-logo {
    display: none;
  }
  .cid-uQKRemyqmd .navbar {
    padding: 0;
  }
  .cid-uQKRemyqmd .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uQKRemyqmd button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-uQKRer0lFA {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uQKRer0lFA .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uQKRer0lFA .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uQKRer0lFA .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uQKRer0lFA .mbr-text {
    text-align: center;
  }
}
.cid-uQKRer0lFA .mbr-text,
.cid-uQKRer0lFA .mbr-section-btn {
  color: #ffffff;
}
.cid-uQLvm3Ugws {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1-1920x1440.jpg");
}
.cid-uQLvm3Ugws .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQLvm3Ugws .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQLvm3Ugws .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uQLvm3Ugws .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uQLvm3Ugws .container {
    padding: 0 30px;
  }
}
.cid-uQLvm3Ugws .card {
  justify-content: center;
}
.cid-uQLvm3Ugws .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 992px) {
  .cid-uQLvm3Ugws .items-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-uQLvm3Ugws .items-wrapper .item {
  padding: 60px;
  background-color: #073b4c;
}
.cid-uQLvm3Ugws .items-wrapper .item:nth-child(2n) {
  background-color: #2681cd;
}
@media (max-width: 992px) {
  .cid-uQLvm3Ugws .items-wrapper .item {
    padding: 40px;
  }
}
.cid-uQLvm3Ugws .items-wrapper .item .item-wrapper .card-box .item-title_1,
.cid-uQLvm3Ugws .items-wrapper .item .item-wrapper .card-box .item-title_2 {
  margin-bottom: 40px;
}
.cid-uQLvm3Ugws .item-title_1 {
  color: #bee0d6;
}
.cid-uQLvm3Ugws .item-title_2 {
  color: #254b45;
}
.cid-uQLvm3Ugws .mbr-section-btn {
  text-align: right;
}
.cid-uQLvm3Ugws .item-title_2,
.cid-uQLvm3Ugws .mbr-section-btn {
  color: #073b4c;
}
.cid-uQOWMWGLqP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-uQOWMWGLqP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQOWMWGLqP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQOWMWGLqP .container-fluid {
  padding: 0 28px;
}
@media (max-width: 992px) {
  .cid-uQOWMWGLqP .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uQOWMWGLqP .container-fluid {
    padding: 0 14px;
  }
}
@media (max-width: 992px) {
  .cid-uQOWMWGLqP .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uQOWMWGLqP .container {
    padding: 0 14px;
  }
}
.cid-uQOWMWGLqP .content-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-uQOWMWGLqP .content-wrapper .link-wrapper {
  display: block;
}
.cid-uQOWMWGLqP .content-wrapper .link-wrapper:hover .mbr-link,
.cid-uQOWMWGLqP .content-wrapper .link-wrapper:focus .mbr-link {
  color: #01004c;
}
.cid-uQOWMWGLqP .content-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uQOWMWGLqP .mbr-text {
  color: #01004c;
  text-align: center;
}
.cid-uQOWMWGLqP .mbr-link {
  color: #1a449a;
  text-align: center;
}
.cid-uQKReym6In {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uQKReym6In .card-box {
  background-color: #073b4c;
  padding: 4rem 4rem;
  margin: 0.5rem;
  width: 100%;
}
@media (min-width: 80%) {
  .cid-uQKReym6In .row {
    padding: 0 4rem;
  }
}
.cid-uQKReym6In .container {
  max-width: 1500px;
}
.cid-uQKReym6In .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-uQKReym6In .mbr-iconfont {
  font-size: 9rem;
  color: #86e0ff;
  padding-bottom: 2rem;
  display: block;
}
.cid-uQKReym6In P {
  color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-uQKReym6In .card-box {
    margin: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uQKReym6In .card-box {
    padding: 2rem 1rem;
  }
}
.cid-uQKReAYbA9 {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-uQKReAYbA9 .container {
  max-width: 1400px;
}
.cid-uQKReAYbA9 .card-img2 span {
  padding-top: 6px;
}
.cid-uQKReAYbA9 .soc-item a {
  padding-top: 5px;
}
.cid-uQKReAYbA9 .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-uQKReAYbA9 .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-uQKReAYbA9 .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-uQKReAYbA9 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uQKReAYbA9 svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-uQKReAYbA9 #e2_shape {
  fill: #2681cd !important;
}
.cid-uQKReAYbA9 .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-uQKReAYbA9 .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-uQKReAYbA9 .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uQKReAYbA9 .card-img {
  width: auto;
}
.cid-uQKReAYbA9 .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-uQKReAYbA9 .soc-item span {
  font-size: 1.4rem;
}
.cid-uQKReAYbA9 .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-uQKReAYbA9 .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uQKReAYbA9 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uQKReAYbA9 .media-wrap {
  margin-bottom: 1rem;
}
.cid-uQKReAYbA9 .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uQKReAYbA9 img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-uQKReAYbA9 .item {
    justify-content: center;
  }
  .cid-uQKReAYbA9 .quote::after {
    left: 60px;
  }
}
.cid-uQKReAYbA9 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-uQKReAYbA9 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uQKReAYbA9 .text1 {
  color: #ffffff;
}
.cid-uQKReAYbA9 .item-title {
  color: #ffffff;
}
.cid-uQKReAYbA9 H5 {
  color: #ffffff;
  text-align: left;
}
.cid-uQKReAYbA9 .theme {
  color: #ffffff;
}
.cid-uQKReAYbA9 .copyright > p {
  color: #ff3366;
}
.cid-uQKReAYbA9 .text2 {
  color: #ffffff;
}
.cid-uQKReDI5Ju {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-uQKReDI5Ju .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-uQLBjLPlzP .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-uQLBjLPlzP .navbar-fixed-top {
  padding-top: 0;
}
.cid-uQLBjLPlzP .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uQLBjLPlzP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uQLBjLPlzP .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uQLBjLPlzP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uQLBjLPlzP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uQLBjLPlzP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uQLBjLPlzP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uQLBjLPlzP .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uQLBjLPlzP .dropdown-item {
  padding: 0;
}
.cid-uQLBjLPlzP .dropdown-item,
.cid-uQLBjLPlzP .nav-link,
.cid-uQLBjLPlzP .brand-name {
  font-style: normal;
}
.cid-uQLBjLPlzP .dropdown-item:hover,
.cid-uQLBjLPlzP .nav-link:hover,
.cid-uQLBjLPlzP .brand-name:hover {
  color: #ff3366 !important;
}
.cid-uQLBjLPlzP .dropdown-menu {
  background-color: #0a1c44;
}
.cid-uQLBjLPlzP .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-uQLBjLPlzP .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-uQLBjLPlzP .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-uQLBjLPlzP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uQLBjLPlzP .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-uQLBjLPlzP .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-uQLBjLPlzP .content-text {
  margin-bottom: 0;
}
.cid-uQLBjLPlzP .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uQLBjLPlzP .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uQLBjLPlzP .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uQLBjLPlzP .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uQLBjLPlzP .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-uQLBjLPlzP .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uQLBjLPlzP .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uQLBjLPlzP .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uQLBjLPlzP .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uQLBjLPlzP .nav-dropdown .link {
  font-weight: 400;
}
.cid-uQLBjLPlzP .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uQLBjLPlzP .content-right-side {
  text-align: center;
}
.cid-uQLBjLPlzP .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uQLBjLPlzP .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uQLBjLPlzP .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-uQLBjLPlzP .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uQLBjLPlzP .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uQLBjLPlzP .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uQLBjLPlzP .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uQLBjLPlzP .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uQLBjLPlzP .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-uQLBjLPlzP .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-uQLBjLPlzP .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-uQLBjLPlzP .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uQLBjLPlzP .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uQLBjLPlzP .navbar {
    display: block;
    padding: 0;
  }
  .cid-uQLBjLPlzP .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uQLBjLPlzP .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uQLBjLPlzP .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uQLBjLPlzP .navbar-toggler {
    display: none;
  }
  .cid-uQLBjLPlzP .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uQLBjLPlzP .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uQLBjLPlzP .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uQLBjLPlzP .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uQLBjLPlzP .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uQLBjLPlzP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uQLBjLPlzP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uQLBjLPlzP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uQLBjLPlzP .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uQLBjLPlzP .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uQLBjLPlzP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQLBjLPlzP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQLBjLPlzP .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uQLBjLPlzP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQLBjLPlzP .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-uQLBjLPlzP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uQLBjLPlzP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQLBjLPlzP .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uQLBjLPlzP .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uQLBjLPlzP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uQLBjLPlzP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uQLBjLPlzP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-uQLBjLPlzP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uQLBjLPlzP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-uQLBjLPlzP button.navbar-toggler:focus {
  outline: none;
}
.cid-uQLBjLPlzP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-uQLBjLPlzP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQLBjLPlzP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQLBjLPlzP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQLBjLPlzP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQLBjLPlzP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQLBjLPlzP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQLBjLPlzP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQLBjLPlzP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQLBjLPlzP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQLBjLPlzP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQLBjLPlzP .collapsed .btn {
  display: flex;
}
.cid-uQLBjLPlzP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uQLBjLPlzP .collapsed .navbar-collapse.collapsing,
.cid-uQLBjLPlzP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uQLBjLPlzP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uQLBjLPlzP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uQLBjLPlzP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uQLBjLPlzP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uQLBjLPlzP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uQLBjLPlzP .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uQLBjLPlzP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uQLBjLPlzP .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-uQLBjLPlzP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uQLBjLPlzP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uQLBjLPlzP .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uQLBjLPlzP .collapsed button.navbar-toggler {
  display: block;
}
.cid-uQLBjLPlzP .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uQLBjLPlzP .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uQLBjLPlzP .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uQLBjLPlzP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uQLBjLPlzP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uQLBjLPlzP .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uQLBjLPlzP .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-uQLBjLPlzP .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-uQLBjLPlzP .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-uQLBjLPlzP .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-uQLBjLPlzP .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uQLBjLPlzP .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uQLBjLPlzP .navbar-collapse.collapsing,
  .cid-uQLBjLPlzP .navbar-collapse.show {
    display: block !important;
  }
  .cid-uQLBjLPlzP .navbar-collapse.collapsing .navbar-nav,
  .cid-uQLBjLPlzP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uQLBjLPlzP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uQLBjLPlzP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uQLBjLPlzP .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uQLBjLPlzP .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uQLBjLPlzP .navbar-collapse.collapsing .navbar-buttons,
  .cid-uQLBjLPlzP .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uQLBjLPlzP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uQLBjLPlzP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uQLBjLPlzP img {
    height: 3.8rem !important;
  }
  .cid-uQLBjLPlzP .btn {
    display: flex;
  }
  .cid-uQLBjLPlzP button.navbar-toggler {
    display: block;
  }
  .cid-uQLBjLPlzP .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uQLBjLPlzP .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uQLBjLPlzP .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uQLBjLPlzP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uQLBjLPlzP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uQLBjLPlzP .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uQLBjLPlzP .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uQLBjLPlzP .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uQLBjLPlzP .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uQLBjLPlzP .nav-link:focus {
  outline: none;
}
.cid-uQLBjLPlzP .navbar-toggler {
  position: relative;
}
.cid-uQLBjLPlzP .dropdown-item.active,
.cid-uQLBjLPlzP .dropdown-item:active {
  color: initial;
}
.cid-uQLBjLPlzP .widget-title,
.cid-uQLBjLPlzP .widget-icon {
  color: #ffffff;
}
.cid-uQLBjLPlzP .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-uQLBjLPlzP .menu-logo {
    display: none;
  }
  .cid-uQLBjLPlzP .navbar {
    padding: 0;
  }
  .cid-uQLBjLPlzP .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uQLBjLPlzP button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-uQLBjO1h16 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uQLBjO1h16 .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uQLBjO1h16 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uQLBjO1h16 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uQLBjO1h16 .mbr-text {
    text-align: center;
  }
}
.cid-uQLBjO1h16 .mbr-text,
.cid-uQLBjO1h16 .mbr-section-btn {
  color: #ffffff;
}
.cid-uQLBjPFMlj {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1-1920x1440.jpg");
}
.cid-uQLBjPFMlj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQLBjPFMlj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQLBjPFMlj .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uQLBjPFMlj .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uQLBjPFMlj .container {
    padding: 0 30px;
  }
}
.cid-uQLBjPFMlj .card {
  justify-content: center;
}
.cid-uQLBjPFMlj .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 992px) {
  .cid-uQLBjPFMlj .items-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-uQLBjPFMlj .items-wrapper .item {
  padding: 60px;
  background-color: #073b4c;
}
.cid-uQLBjPFMlj .items-wrapper .item:nth-child(2n) {
  background-color: #2681cd;
}
@media (max-width: 992px) {
  .cid-uQLBjPFMlj .items-wrapper .item {
    padding: 40px;
  }
}
.cid-uQLBjPFMlj .items-wrapper .item .item-wrapper .card-box .item-title_1,
.cid-uQLBjPFMlj .items-wrapper .item .item-wrapper .card-box .item-title_2 {
  margin-bottom: 40px;
}
.cid-uQLBjPFMlj .item-title_1 {
  color: #bee0d6;
}
.cid-uQLBjPFMlj .item-title_2 {
  color: #254b45;
}
.cid-uQLBjPFMlj .mbr-section-btn {
  text-align: right;
}
.cid-uQLBjPFMlj .item-title_2,
.cid-uQLBjPFMlj .mbr-section-btn {
  color: #073b4c;
}
.cid-uQLBjR8VsE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1-1920x1440.jpg");
}
.cid-uQLBjR8VsE .card-box {
  background-color: #073b4c;
  padding: 4rem 4rem;
  margin: 0.5rem;
  width: 100%;
}
@media (min-width: 767px) {
  .cid-uQLBjR8VsE .row {
    padding: 0 4rem;
  }
}
.cid-uQLBjR8VsE .container {
  max-width: 1500px;
}
.cid-uQLBjR8VsE .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-uQLBjR8VsE .mbr-iconfont {
  font-size: 9rem;
  color: #86e0ff;
  padding-bottom: 2rem;
  display: block;
}
.cid-uQLBjR8VsE P {
  color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-uQLBjR8VsE .card-box {
    margin: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uQLBjR8VsE .card-box {
    padding: 2rem 1rem;
  }
}
.cid-uQLBjSOSRB {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-uQLBjSOSRB .container {
  max-width: 1400px;
}
.cid-uQLBjSOSRB .card-img2 span {
  padding-top: 6px;
}
.cid-uQLBjSOSRB .soc-item a {
  padding-top: 5px;
}
.cid-uQLBjSOSRB .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-uQLBjSOSRB .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-uQLBjSOSRB .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-uQLBjSOSRB .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uQLBjSOSRB svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-uQLBjSOSRB #e2_shape {
  fill: #2681cd !important;
}
.cid-uQLBjSOSRB .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-uQLBjSOSRB .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-uQLBjSOSRB .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uQLBjSOSRB .card-img {
  width: auto;
}
.cid-uQLBjSOSRB .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-uQLBjSOSRB .soc-item span {
  font-size: 1.4rem;
}
.cid-uQLBjSOSRB .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-uQLBjSOSRB .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uQLBjSOSRB .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uQLBjSOSRB .media-wrap {
  margin-bottom: 1rem;
}
.cid-uQLBjSOSRB .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uQLBjSOSRB img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-uQLBjSOSRB .item {
    justify-content: center;
  }
  .cid-uQLBjSOSRB .quote::after {
    left: 60px;
  }
}
.cid-uQLBjSOSRB .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-uQLBjSOSRB .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uQLBjSOSRB .text1 {
  color: #ffffff;
}
.cid-uQLBjSOSRB .item-title {
  color: #ffffff;
}
.cid-uQLBjSOSRB H5 {
  color: #ffffff;
  text-align: left;
}
.cid-uQLBjSOSRB .theme {
  color: #ffffff;
}
.cid-uQLBjSOSRB .copyright > p {
  color: #ff3366;
}
.cid-uQLBjSOSRB .text2 {
  color: #ffffff;
}
.cid-uQLBjUzvdB {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-uQLBjUzvdB .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-uQP05EMz8R .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-uQP05EMz8R .navbar-fixed-top {
  padding-top: 0;
}
.cid-uQP05EMz8R .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uQP05EMz8R .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uQP05EMz8R .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uQP05EMz8R .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uQP05EMz8R .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uQP05EMz8R .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uQP05EMz8R .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uQP05EMz8R .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uQP05EMz8R .dropdown-item {
  padding: 0;
}
.cid-uQP05EMz8R .dropdown-item,
.cid-uQP05EMz8R .nav-link,
.cid-uQP05EMz8R .brand-name {
  font-style: normal;
}
.cid-uQP05EMz8R .dropdown-item:hover,
.cid-uQP05EMz8R .nav-link:hover,
.cid-uQP05EMz8R .brand-name:hover {
  color: #ff3366 !important;
}
.cid-uQP05EMz8R .dropdown-menu {
  background-color: #0a1c44;
}
.cid-uQP05EMz8R .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-uQP05EMz8R .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-uQP05EMz8R .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-uQP05EMz8R .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uQP05EMz8R .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-uQP05EMz8R .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-uQP05EMz8R .content-text {
  margin-bottom: 0;
}
.cid-uQP05EMz8R .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uQP05EMz8R .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uQP05EMz8R .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uQP05EMz8R .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uQP05EMz8R .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-uQP05EMz8R .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uQP05EMz8R .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uQP05EMz8R .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uQP05EMz8R .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uQP05EMz8R .nav-dropdown .link {
  font-weight: 400;
}
.cid-uQP05EMz8R .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uQP05EMz8R .content-right-side {
  text-align: center;
}
.cid-uQP05EMz8R .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uQP05EMz8R .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uQP05EMz8R .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-uQP05EMz8R .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uQP05EMz8R .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uQP05EMz8R .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uQP05EMz8R .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uQP05EMz8R .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uQP05EMz8R .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-uQP05EMz8R .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-uQP05EMz8R .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-uQP05EMz8R .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uQP05EMz8R .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uQP05EMz8R .navbar {
    display: block;
    padding: 0;
  }
  .cid-uQP05EMz8R .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uQP05EMz8R .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uQP05EMz8R .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uQP05EMz8R .navbar-toggler {
    display: none;
  }
  .cid-uQP05EMz8R .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uQP05EMz8R .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uQP05EMz8R .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uQP05EMz8R .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uQP05EMz8R .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uQP05EMz8R .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uQP05EMz8R .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uQP05EMz8R .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uQP05EMz8R .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uQP05EMz8R .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uQP05EMz8R .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQP05EMz8R .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQP05EMz8R .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uQP05EMz8R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQP05EMz8R .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-uQP05EMz8R .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uQP05EMz8R .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQP05EMz8R .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uQP05EMz8R .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uQP05EMz8R .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uQP05EMz8R .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uQP05EMz8R .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-uQP05EMz8R .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uQP05EMz8R button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-uQP05EMz8R button.navbar-toggler:focus {
  outline: none;
}
.cid-uQP05EMz8R button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-uQP05EMz8R button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQP05EMz8R button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQP05EMz8R button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQP05EMz8R button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQP05EMz8R nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQP05EMz8R nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQP05EMz8R nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQP05EMz8R nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQP05EMz8R .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQP05EMz8R .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQP05EMz8R .collapsed .btn {
  display: flex;
}
.cid-uQP05EMz8R .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uQP05EMz8R .collapsed .navbar-collapse.collapsing,
.cid-uQP05EMz8R .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uQP05EMz8R .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uQP05EMz8R .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uQP05EMz8R .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uQP05EMz8R .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uQP05EMz8R .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uQP05EMz8R .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uQP05EMz8R .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uQP05EMz8R .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-uQP05EMz8R .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uQP05EMz8R .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uQP05EMz8R .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uQP05EMz8R .collapsed button.navbar-toggler {
  display: block;
}
.cid-uQP05EMz8R .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uQP05EMz8R .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uQP05EMz8R .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uQP05EMz8R .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uQP05EMz8R .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uQP05EMz8R .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uQP05EMz8R .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-uQP05EMz8R .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-uQP05EMz8R .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-uQP05EMz8R .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-uQP05EMz8R .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uQP05EMz8R .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uQP05EMz8R .navbar-collapse.collapsing,
  .cid-uQP05EMz8R .navbar-collapse.show {
    display: block !important;
  }
  .cid-uQP05EMz8R .navbar-collapse.collapsing .navbar-nav,
  .cid-uQP05EMz8R .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uQP05EMz8R .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uQP05EMz8R .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uQP05EMz8R .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uQP05EMz8R .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uQP05EMz8R .navbar-collapse.collapsing .navbar-buttons,
  .cid-uQP05EMz8R .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uQP05EMz8R .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uQP05EMz8R .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uQP05EMz8R img {
    height: 3.8rem !important;
  }
  .cid-uQP05EMz8R .btn {
    display: flex;
  }
  .cid-uQP05EMz8R button.navbar-toggler {
    display: block;
  }
  .cid-uQP05EMz8R .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uQP05EMz8R .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uQP05EMz8R .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uQP05EMz8R .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uQP05EMz8R .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uQP05EMz8R .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uQP05EMz8R .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uQP05EMz8R .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uQP05EMz8R .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uQP05EMz8R .nav-link:focus {
  outline: none;
}
.cid-uQP05EMz8R .navbar-toggler {
  position: relative;
}
.cid-uQP05EMz8R .dropdown-item.active,
.cid-uQP05EMz8R .dropdown-item:active {
  color: initial;
}
.cid-uQP05EMz8R .widget-title,
.cid-uQP05EMz8R .widget-icon {
  color: #ffffff;
}
.cid-uQP05EMz8R .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-uQP05EMz8R .menu-logo {
    display: none;
  }
  .cid-uQP05EMz8R .navbar {
    padding: 0;
  }
  .cid-uQP05EMz8R .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uQP05EMz8R button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-uQP05FkJp7 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-uQP05FkJp7 .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uQP05FkJp7 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uQP05FkJp7 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uQP05FkJp7 .mbr-text {
    text-align: center;
  }
}
.cid-uQP05FkJp7 .mbr-text,
.cid-uQP05FkJp7 .mbr-section-btn {
  color: #ffffff;
}
.cid-uQP05G2PpJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #073b4c;
}
.cid-uQP05G2PpJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQP05G2PpJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQP05G2PpJ .container-fluid {
  padding: 0 28px;
}
@media (max-width: 992px) {
  .cid-uQP05G2PpJ .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uQP05G2PpJ .container-fluid {
    padding: 0 14px;
  }
}
@media (max-width: 992px) {
  .cid-uQP05G2PpJ .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uQP05G2PpJ .container {
    padding: 0 14px;
  }
}
.cid-uQP05G2PpJ .content-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-uQP05G2PpJ .content-wrapper .link-wrapper {
  display: block;
}
.cid-uQP05G2PpJ .content-wrapper .link-wrapper:hover .mbr-link,
.cid-uQP05G2PpJ .content-wrapper .link-wrapper:focus .mbr-link {
  color: #2681cd;
}
.cid-uQP05G2PpJ .content-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uQP05G2PpJ .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uQP05G2PpJ .mbr-link {
  color: #efeeee;
  text-align: center;
}
.cid-uQP05GEO3j {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-uQP05GEO3j .container {
  max-width: 1400px;
}
.cid-uQP05GEO3j .card-img2 span {
  padding-top: 6px;
}
.cid-uQP05GEO3j .soc-item a {
  padding-top: 5px;
}
.cid-uQP05GEO3j .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-uQP05GEO3j .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-uQP05GEO3j .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-uQP05GEO3j .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uQP05GEO3j svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-uQP05GEO3j #e2_shape {
  fill: #2681cd !important;
}
.cid-uQP05GEO3j .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-uQP05GEO3j .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-uQP05GEO3j .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uQP05GEO3j .card-img {
  width: auto;
}
.cid-uQP05GEO3j .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-uQP05GEO3j .soc-item span {
  font-size: 1.4rem;
}
.cid-uQP05GEO3j .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-uQP05GEO3j .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uQP05GEO3j .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uQP05GEO3j .media-wrap {
  margin-bottom: 1rem;
}
.cid-uQP05GEO3j .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uQP05GEO3j img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-uQP05GEO3j .item {
    justify-content: center;
  }
  .cid-uQP05GEO3j .quote::after {
    left: 60px;
  }
}
.cid-uQP05GEO3j .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-uQP05GEO3j .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uQP05GEO3j .text1 {
  color: #ffffff;
}
.cid-uQP05GEO3j .item-title {
  color: #ffffff;
}
.cid-uQP05GEO3j H5 {
  color: #ffffff;
  text-align: left;
}
.cid-uQP05GEO3j .theme {
  color: #ffffff;
}
.cid-uQP05GEO3j .copyright > p {
  color: #ff3366;
}
.cid-uQP05GEO3j .text2 {
  color: #ffffff;
}
.cid-uQP05Hg1VI {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-uQP05Hg1VI .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-sDGpPnPCpz .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-sDGpPnPCpz .navbar-fixed-top {
  padding-top: 0;
}
.cid-sDGpPnPCpz .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sDGpPnPCpz .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sDGpPnPCpz .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sDGpPnPCpz .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sDGpPnPCpz .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sDGpPnPCpz .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sDGpPnPCpz .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sDGpPnPCpz .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-sDGpPnPCpz .dropdown-item {
  padding: 0;
}
.cid-sDGpPnPCpz .dropdown-item,
.cid-sDGpPnPCpz .nav-link,
.cid-sDGpPnPCpz .brand-name {
  font-style: normal;
}
.cid-sDGpPnPCpz .dropdown-item:hover,
.cid-sDGpPnPCpz .nav-link:hover,
.cid-sDGpPnPCpz .brand-name:hover {
  color: #ff3366 !important;
}
.cid-sDGpPnPCpz .dropdown-menu {
  background-color: #0a1c44;
}
.cid-sDGpPnPCpz .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-sDGpPnPCpz .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-sDGpPnPCpz .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-sDGpPnPCpz .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sDGpPnPCpz .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sDGpPnPCpz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-sDGpPnPCpz .content-text {
  margin-bottom: 0;
}
.cid-sDGpPnPCpz .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sDGpPnPCpz .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sDGpPnPCpz .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sDGpPnPCpz .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sDGpPnPCpz .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sDGpPnPCpz .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sDGpPnPCpz .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sDGpPnPCpz .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sDGpPnPCpz .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sDGpPnPCpz .nav-dropdown .link {
  font-weight: 400;
}
.cid-sDGpPnPCpz .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sDGpPnPCpz .content-right-side {
  text-align: center;
}
.cid-sDGpPnPCpz .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sDGpPnPCpz .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sDGpPnPCpz .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sDGpPnPCpz .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sDGpPnPCpz .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sDGpPnPCpz .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sDGpPnPCpz .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sDGpPnPCpz .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sDGpPnPCpz .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sDGpPnPCpz .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sDGpPnPCpz .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-sDGpPnPCpz .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sDGpPnPCpz .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-sDGpPnPCpz .navbar {
    display: block;
    padding: 0;
  }
  .cid-sDGpPnPCpz .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sDGpPnPCpz .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sDGpPnPCpz .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sDGpPnPCpz .navbar-toggler {
    display: none;
  }
  .cid-sDGpPnPCpz .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sDGpPnPCpz .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sDGpPnPCpz .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sDGpPnPCpz .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sDGpPnPCpz .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sDGpPnPCpz .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sDGpPnPCpz .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sDGpPnPCpz .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sDGpPnPCpz .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sDGpPnPCpz .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sDGpPnPCpz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sDGpPnPCpz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDGpPnPCpz .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sDGpPnPCpz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sDGpPnPCpz .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-sDGpPnPCpz .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sDGpPnPCpz .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDGpPnPCpz .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sDGpPnPCpz .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sDGpPnPCpz .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sDGpPnPCpz .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sDGpPnPCpz .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sDGpPnPCpz .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sDGpPnPCpz button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-sDGpPnPCpz button.navbar-toggler:focus {
  outline: none;
}
.cid-sDGpPnPCpz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sDGpPnPCpz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sDGpPnPCpz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDGpPnPCpz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDGpPnPCpz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sDGpPnPCpz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDGpPnPCpz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sDGpPnPCpz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sDGpPnPCpz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDGpPnPCpz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sDGpPnPCpz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sDGpPnPCpz .collapsed .btn {
  display: flex;
}
.cid-sDGpPnPCpz .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sDGpPnPCpz .collapsed .navbar-collapse.collapsing,
.cid-sDGpPnPCpz .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sDGpPnPCpz .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sDGpPnPCpz .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sDGpPnPCpz .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sDGpPnPCpz .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sDGpPnPCpz .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sDGpPnPCpz .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sDGpPnPCpz .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sDGpPnPCpz .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sDGpPnPCpz .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sDGpPnPCpz .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sDGpPnPCpz .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sDGpPnPCpz .collapsed button.navbar-toggler {
  display: block;
}
.cid-sDGpPnPCpz .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sDGpPnPCpz .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sDGpPnPCpz .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sDGpPnPCpz .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sDGpPnPCpz .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sDGpPnPCpz .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sDGpPnPCpz .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-sDGpPnPCpz .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-sDGpPnPCpz .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-sDGpPnPCpz .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sDGpPnPCpz .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-sDGpPnPCpz .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sDGpPnPCpz .navbar-collapse.collapsing,
  .cid-sDGpPnPCpz .navbar-collapse.show {
    display: block !important;
  }
  .cid-sDGpPnPCpz .navbar-collapse.collapsing .navbar-nav,
  .cid-sDGpPnPCpz .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sDGpPnPCpz .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sDGpPnPCpz .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sDGpPnPCpz .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sDGpPnPCpz .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sDGpPnPCpz .navbar-collapse.collapsing .navbar-buttons,
  .cid-sDGpPnPCpz .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sDGpPnPCpz .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sDGpPnPCpz .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sDGpPnPCpz img {
    height: 3.8rem !important;
  }
  .cid-sDGpPnPCpz .btn {
    display: flex;
  }
  .cid-sDGpPnPCpz button.navbar-toggler {
    display: block;
  }
  .cid-sDGpPnPCpz .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sDGpPnPCpz .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sDGpPnPCpz .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sDGpPnPCpz .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sDGpPnPCpz .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sDGpPnPCpz .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sDGpPnPCpz .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sDGpPnPCpz .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sDGpPnPCpz .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sDGpPnPCpz .nav-link:focus {
  outline: none;
}
.cid-sDGpPnPCpz .navbar-toggler {
  position: relative;
}
.cid-sDGpPnPCpz .dropdown-item.active,
.cid-sDGpPnPCpz .dropdown-item:active {
  color: initial;
}
.cid-sDGpPnPCpz .widget-title,
.cid-sDGpPnPCpz .widget-icon {
  color: #ffffff;
}
.cid-sDGpPnPCpz .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-sDGpPnPCpz .menu-logo {
    display: none;
  }
  .cid-sDGpPnPCpz .navbar {
    padding: 0;
  }
  .cid-sDGpPnPCpz .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sDGpPnPCpz button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-sEfsmdQDEu {
  padding-top: 165px;
  padding-bottom: 90px;
  background-color: #efeeee;
}
.cid-sEfsmdQDEu .mbr-text,
.cid-sEfsmdQDEu .mbr-section-btn {
  text-align: left;
}
.cid-sDGpPqb4qs {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sDGpPqb4qs *:focus {
  outline: none;
}
.cid-sDGpPqb4qs .form-group {
  margin-bottom: 2rem;
}
.cid-sDGpPqb4qs .form-control {
  width: 100%;
  border: none;
  background: transparent;
  border-bottom: 2px solid #282124;
  color: #282124;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1px;
  min-height: 35px;
}
.cid-sDGpPqb4qs .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-sDGpPqb4qs .form-control::-webkit-input-placeholder {
  color: #282124;
}
.cid-sDGpPqb4qs .form-control::-moz-placeholder {
  color: #282124;
}
.cid-sDGpPqb4qs .form-control:-ms-input-placeholder {
  color: #282124;
}
.cid-sDGpPqb4qs .form-control:-moz-placeholder {
  color: #282124;
}
.cid-sDGpPqb4qs input.form-control {
  padding: 1px 0;
}
.cid-sDGpPqb4qs .soc-item {
  display: inline-block;
  margin: 0 .2rem;
}
.cid-sDGpPqb4qs .soc-item .socicon {
  font-size: 1.5rem;
  color: #073b4c;
  opacity: 1;
}
.cid-sDGpPqb4qs .soc-item .socicon:hover {
  opacity: .5;
}
.cid-sDGpPqb4qs .input-group-btn {
  display: block;
}
@media (max-width: 767px) {
  .cid-sDGpPqb4qs .first-column,
  .cid-sDGpPqb4qs .form-1 {
    text-align: center;
  }
}
.cid-sDGpPqW8PV {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-sDGpPqW8PV .container {
  max-width: 1400px;
}
.cid-sDGpPqW8PV .card-img2 span {
  padding-top: 6px;
}
.cid-sDGpPqW8PV .soc-item a {
  padding-top: 5px;
}
.cid-sDGpPqW8PV .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-sDGpPqW8PV .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sDGpPqW8PV .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sDGpPqW8PV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sDGpPqW8PV svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sDGpPqW8PV #e2_shape {
  fill: #2681cd !important;
}
.cid-sDGpPqW8PV .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-sDGpPqW8PV .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sDGpPqW8PV .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sDGpPqW8PV .card-img {
  width: auto;
}
.cid-sDGpPqW8PV .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sDGpPqW8PV .soc-item span {
  font-size: 1.4rem;
}
.cid-sDGpPqW8PV .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-sDGpPqW8PV .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sDGpPqW8PV .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sDGpPqW8PV .media-wrap {
  margin-bottom: 1rem;
}
.cid-sDGpPqW8PV .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sDGpPqW8PV img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-sDGpPqW8PV .item {
    justify-content: center;
  }
  .cid-sDGpPqW8PV .quote::after {
    left: 60px;
  }
}
.cid-sDGpPqW8PV .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sDGpPqW8PV .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sDGpPqW8PV .text1 {
  color: #ffffff;
}
.cid-sDGpPqW8PV .item-title {
  color: #ffffff;
}
.cid-sDGpPqW8PV H5 {
  color: #ffffff;
  text-align: left;
}
.cid-sDGpPqW8PV .theme {
  color: #ffffff;
}
.cid-sDGpPqW8PV .copyright > p {
  color: #ff3366;
}
.cid-sDGpPqW8PV .text2 {
  color: #ffffff;
}
.cid-sDGpPrNH15 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-sDGpPrNH15 .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-sDGpPnPCpz .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-sDGpPnPCpz .navbar-fixed-top {
  padding-top: 0;
}
.cid-sDGpPnPCpz .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sDGpPnPCpz .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sDGpPnPCpz .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sDGpPnPCpz .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sDGpPnPCpz .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sDGpPnPCpz .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sDGpPnPCpz .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sDGpPnPCpz .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-sDGpPnPCpz .dropdown-item {
  padding: 0;
}
.cid-sDGpPnPCpz .dropdown-item,
.cid-sDGpPnPCpz .nav-link,
.cid-sDGpPnPCpz .brand-name {
  font-style: normal;
}
.cid-sDGpPnPCpz .dropdown-item:hover,
.cid-sDGpPnPCpz .nav-link:hover,
.cid-sDGpPnPCpz .brand-name:hover {
  color: #ff3366 !important;
}
.cid-sDGpPnPCpz .dropdown-menu {
  background-color: #0a1c44;
}
.cid-sDGpPnPCpz .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-sDGpPnPCpz .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-sDGpPnPCpz .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-sDGpPnPCpz .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sDGpPnPCpz .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sDGpPnPCpz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-sDGpPnPCpz .content-text {
  margin-bottom: 0;
}
.cid-sDGpPnPCpz .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sDGpPnPCpz .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sDGpPnPCpz .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sDGpPnPCpz .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sDGpPnPCpz .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sDGpPnPCpz .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sDGpPnPCpz .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sDGpPnPCpz .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sDGpPnPCpz .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sDGpPnPCpz .nav-dropdown .link {
  font-weight: 400;
}
.cid-sDGpPnPCpz .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sDGpPnPCpz .content-right-side {
  text-align: center;
}
.cid-sDGpPnPCpz .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sDGpPnPCpz .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sDGpPnPCpz .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sDGpPnPCpz .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sDGpPnPCpz .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sDGpPnPCpz .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sDGpPnPCpz .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sDGpPnPCpz .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sDGpPnPCpz .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sDGpPnPCpz .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sDGpPnPCpz .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-sDGpPnPCpz .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sDGpPnPCpz .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-sDGpPnPCpz .navbar {
    display: block;
    padding: 0;
  }
  .cid-sDGpPnPCpz .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sDGpPnPCpz .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sDGpPnPCpz .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sDGpPnPCpz .navbar-toggler {
    display: none;
  }
  .cid-sDGpPnPCpz .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sDGpPnPCpz .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sDGpPnPCpz .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sDGpPnPCpz .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sDGpPnPCpz .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sDGpPnPCpz .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sDGpPnPCpz .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sDGpPnPCpz .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sDGpPnPCpz .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sDGpPnPCpz .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sDGpPnPCpz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sDGpPnPCpz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDGpPnPCpz .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sDGpPnPCpz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sDGpPnPCpz .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-sDGpPnPCpz .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sDGpPnPCpz .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDGpPnPCpz .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sDGpPnPCpz .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sDGpPnPCpz .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sDGpPnPCpz .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sDGpPnPCpz .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sDGpPnPCpz .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sDGpPnPCpz button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-sDGpPnPCpz button.navbar-toggler:focus {
  outline: none;
}
.cid-sDGpPnPCpz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-sDGpPnPCpz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sDGpPnPCpz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDGpPnPCpz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDGpPnPCpz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sDGpPnPCpz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDGpPnPCpz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sDGpPnPCpz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sDGpPnPCpz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDGpPnPCpz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sDGpPnPCpz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sDGpPnPCpz .collapsed .btn {
  display: flex;
}
.cid-sDGpPnPCpz .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sDGpPnPCpz .collapsed .navbar-collapse.collapsing,
.cid-sDGpPnPCpz .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sDGpPnPCpz .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sDGpPnPCpz .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sDGpPnPCpz .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sDGpPnPCpz .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sDGpPnPCpz .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sDGpPnPCpz .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sDGpPnPCpz .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sDGpPnPCpz .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sDGpPnPCpz .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sDGpPnPCpz .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sDGpPnPCpz .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sDGpPnPCpz .collapsed button.navbar-toggler {
  display: block;
}
.cid-sDGpPnPCpz .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sDGpPnPCpz .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sDGpPnPCpz .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sDGpPnPCpz .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sDGpPnPCpz .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sDGpPnPCpz .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sDGpPnPCpz .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-sDGpPnPCpz .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-sDGpPnPCpz .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-sDGpPnPCpz .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sDGpPnPCpz .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-sDGpPnPCpz .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sDGpPnPCpz .navbar-collapse.collapsing,
  .cid-sDGpPnPCpz .navbar-collapse.show {
    display: block !important;
  }
  .cid-sDGpPnPCpz .navbar-collapse.collapsing .navbar-nav,
  .cid-sDGpPnPCpz .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sDGpPnPCpz .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sDGpPnPCpz .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sDGpPnPCpz .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sDGpPnPCpz .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sDGpPnPCpz .navbar-collapse.collapsing .navbar-buttons,
  .cid-sDGpPnPCpz .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sDGpPnPCpz .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sDGpPnPCpz .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sDGpPnPCpz img {
    height: 3.8rem !important;
  }
  .cid-sDGpPnPCpz .btn {
    display: flex;
  }
  .cid-sDGpPnPCpz button.navbar-toggler {
    display: block;
  }
  .cid-sDGpPnPCpz .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sDGpPnPCpz .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sDGpPnPCpz .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sDGpPnPCpz .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sDGpPnPCpz .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sDGpPnPCpz .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sDGpPnPCpz .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sDGpPnPCpz .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sDGpPnPCpz .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sDGpPnPCpz .nav-link:focus {
  outline: none;
}
.cid-sDGpPnPCpz .navbar-toggler {
  position: relative;
}
.cid-sDGpPnPCpz .dropdown-item.active,
.cid-sDGpPnPCpz .dropdown-item:active {
  color: initial;
}
.cid-sDGpPnPCpz .widget-title,
.cid-sDGpPnPCpz .widget-icon {
  color: #ffffff;
}
.cid-sDGpPnPCpz .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-sDGpPnPCpz .menu-logo {
    display: none;
  }
  .cid-sDGpPnPCpz .navbar {
    padding: 0;
  }
  .cid-sDGpPnPCpz .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sDGpPnPCpz button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-sDGpPrNH15 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-sDGpPrNH15 .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-uZ8socZ4Ku {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-2-1920x1440.jpg");
}
.cid-uZ8socZ4Ku .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8socZ4Ku .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ8socZ4Ku .content-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uZ8socZ4Ku .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uZ8socZ4Ku .content-wrapper .mbr-label {
  margin-bottom: 32px;
}
.cid-uZ8socZ4Ku .content-wrapper .title-wrapper {
  margin-bottom: 16px;
}
.cid-uZ8socZ4Ku .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uZ8socZ4Ku .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uZ8socZ4Ku .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uZ8socZ4Ku .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uZ8socZ4Ku .google-map iframe {
  height: 600px;
  filter: hue-rotate(45deg);
}
@media (max-width: 992px) {
  .cid-uZ8socZ4Ku .google-map iframe {
    height: 350px;
  }
}
.cid-uZ8socZ4Ku .mbr-label {
  color: #a6adbf;
  text-align: center;
}
.cid-uZ8socZ4Ku .mbr-section-title {
  color: #111111;
  text-align: center;
}
.cid-uZ8socZ4Ku .mbr-section-subtitle {
  color: #073b4c;
  text-align: center;
}
.cid-uZ8socZ4Ku .mbr-text,
.cid-uZ8socZ4Ku .text-wrapper {
  color: #666666;
  text-align: center;
}
.cid-uZ8socZ4Ku h2#forma_block {
  width: 750px;
  max-width: 100%;
}
.cid-uZ8socZ4Ku #map-canvas {
  height: 600px;
  margin: 50px;
  padding: 50px;
}
.cid-uZ8socZ4Ku #panel {
  position: absolute;
  z-index: 5;
  padding: 10px;
}
.cid-uZ8sbhVQUF {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-uZ8sbhVQUF .container {
  max-width: 1400px;
}
.cid-uZ8sbhVQUF .card-img2 span {
  padding-top: 6px;
}
.cid-uZ8sbhVQUF .soc-item a {
  padding-top: 5px;
}
.cid-uZ8sbhVQUF .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-uZ8sbhVQUF .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-uZ8sbhVQUF .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-uZ8sbhVQUF .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uZ8sbhVQUF svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-uZ8sbhVQUF #e2_shape {
  fill: #2681cd !important;
}
.cid-uZ8sbhVQUF .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-uZ8sbhVQUF .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-uZ8sbhVQUF .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uZ8sbhVQUF .card-img {
  width: auto;
}
.cid-uZ8sbhVQUF .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-uZ8sbhVQUF .soc-item span {
  font-size: 1.4rem;
}
.cid-uZ8sbhVQUF .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-uZ8sbhVQUF .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uZ8sbhVQUF .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uZ8sbhVQUF .media-wrap {
  margin-bottom: 1rem;
}
.cid-uZ8sbhVQUF .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uZ8sbhVQUF img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-uZ8sbhVQUF .item {
    justify-content: center;
  }
  .cid-uZ8sbhVQUF .quote::after {
    left: 60px;
  }
}
.cid-uZ8sbhVQUF .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-uZ8sbhVQUF .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uZ8sbhVQUF .text1 {
  color: #ffffff;
}
.cid-uZ8sbhVQUF .item-title {
  color: #ffffff;
}
.cid-uZ8sbhVQUF H5 {
  color: #ffffff;
  text-align: left;
}
.cid-uZ8sbhVQUF .theme {
  color: #ffffff;
}
.cid-uZ8sbhVQUF .copyright > p {
  color: #ff3366;
}
.cid-uZ8sbhVQUF .text2 {
  color: #ffffff;
}
.cid-uZ97yTTpDQ .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-uZ97yTTpDQ .navbar-fixed-top {
  padding-top: 0;
}
.cid-uZ97yTTpDQ .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uZ97yTTpDQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uZ97yTTpDQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uZ97yTTpDQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uZ97yTTpDQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uZ97yTTpDQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uZ97yTTpDQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uZ97yTTpDQ .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uZ97yTTpDQ .dropdown-item {
  padding: 0;
}
.cid-uZ97yTTpDQ .dropdown-item,
.cid-uZ97yTTpDQ .nav-link,
.cid-uZ97yTTpDQ .brand-name {
  font-style: normal;
}
.cid-uZ97yTTpDQ .dropdown-item:hover,
.cid-uZ97yTTpDQ .nav-link:hover,
.cid-uZ97yTTpDQ .brand-name:hover {
  color: #ff3366 !important;
}
.cid-uZ97yTTpDQ .dropdown-menu {
  background-color: #0a1c44;
}
.cid-uZ97yTTpDQ .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-uZ97yTTpDQ .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-uZ97yTTpDQ .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-uZ97yTTpDQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uZ97yTTpDQ .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-uZ97yTTpDQ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-uZ97yTTpDQ .content-text {
  margin-bottom: 0;
}
.cid-uZ97yTTpDQ .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uZ97yTTpDQ .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uZ97yTTpDQ .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uZ97yTTpDQ .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uZ97yTTpDQ .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-uZ97yTTpDQ .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uZ97yTTpDQ .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uZ97yTTpDQ .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uZ97yTTpDQ .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uZ97yTTpDQ .nav-dropdown .link {
  font-weight: 400;
}
.cid-uZ97yTTpDQ .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uZ97yTTpDQ .content-right-side {
  text-align: center;
}
.cid-uZ97yTTpDQ .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uZ97yTTpDQ .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uZ97yTTpDQ .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-uZ97yTTpDQ .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uZ97yTTpDQ .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uZ97yTTpDQ .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uZ97yTTpDQ .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uZ97yTTpDQ .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uZ97yTTpDQ .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-uZ97yTTpDQ .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-uZ97yTTpDQ .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-uZ97yTTpDQ .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uZ97yTTpDQ .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uZ97yTTpDQ .navbar {
    display: block;
    padding: 0;
  }
  .cid-uZ97yTTpDQ .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uZ97yTTpDQ .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uZ97yTTpDQ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uZ97yTTpDQ .navbar-toggler {
    display: none;
  }
  .cid-uZ97yTTpDQ .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uZ97yTTpDQ .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uZ97yTTpDQ .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uZ97yTTpDQ .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uZ97yTTpDQ .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uZ97yTTpDQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uZ97yTTpDQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uZ97yTTpDQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uZ97yTTpDQ .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uZ97yTTpDQ .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uZ97yTTpDQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uZ97yTTpDQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZ97yTTpDQ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uZ97yTTpDQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uZ97yTTpDQ .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-uZ97yTTpDQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uZ97yTTpDQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ97yTTpDQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uZ97yTTpDQ .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uZ97yTTpDQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uZ97yTTpDQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uZ97yTTpDQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-uZ97yTTpDQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uZ97yTTpDQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-uZ97yTTpDQ button.navbar-toggler:focus {
  outline: none;
}
.cid-uZ97yTTpDQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-uZ97yTTpDQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uZ97yTTpDQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ97yTTpDQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ97yTTpDQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uZ97yTTpDQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ97yTTpDQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uZ97yTTpDQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uZ97yTTpDQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ97yTTpDQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZ97yTTpDQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZ97yTTpDQ .collapsed .btn {
  display: flex;
}
.cid-uZ97yTTpDQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uZ97yTTpDQ .collapsed .navbar-collapse.collapsing,
.cid-uZ97yTTpDQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uZ97yTTpDQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uZ97yTTpDQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uZ97yTTpDQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uZ97yTTpDQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uZ97yTTpDQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uZ97yTTpDQ .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uZ97yTTpDQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uZ97yTTpDQ .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-uZ97yTTpDQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uZ97yTTpDQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uZ97yTTpDQ .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uZ97yTTpDQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uZ97yTTpDQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uZ97yTTpDQ .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uZ97yTTpDQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uZ97yTTpDQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uZ97yTTpDQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uZ97yTTpDQ .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uZ97yTTpDQ .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-uZ97yTTpDQ .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-uZ97yTTpDQ .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-uZ97yTTpDQ .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-uZ97yTTpDQ .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uZ97yTTpDQ .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uZ97yTTpDQ .navbar-collapse.collapsing,
  .cid-uZ97yTTpDQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uZ97yTTpDQ .navbar-collapse.collapsing .navbar-nav,
  .cid-uZ97yTTpDQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uZ97yTTpDQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uZ97yTTpDQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uZ97yTTpDQ .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uZ97yTTpDQ .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uZ97yTTpDQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uZ97yTTpDQ .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uZ97yTTpDQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uZ97yTTpDQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uZ97yTTpDQ img {
    height: 3.8rem !important;
  }
  .cid-uZ97yTTpDQ .btn {
    display: flex;
  }
  .cid-uZ97yTTpDQ button.navbar-toggler {
    display: block;
  }
  .cid-uZ97yTTpDQ .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uZ97yTTpDQ .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uZ97yTTpDQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uZ97yTTpDQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uZ97yTTpDQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uZ97yTTpDQ .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uZ97yTTpDQ .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uZ97yTTpDQ .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uZ97yTTpDQ .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uZ97yTTpDQ .nav-link:focus {
  outline: none;
}
.cid-uZ97yTTpDQ .navbar-toggler {
  position: relative;
}
.cid-uZ97yTTpDQ .dropdown-item.active,
.cid-uZ97yTTpDQ .dropdown-item:active {
  color: initial;
}
.cid-uZ97yTTpDQ .widget-title,
.cid-uZ97yTTpDQ .widget-icon {
  color: #ffffff;
}
.cid-uZ97yTTpDQ .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-uZ97yTTpDQ .menu-logo {
    display: none;
  }
  .cid-uZ97yTTpDQ .navbar {
    padding: 0;
  }
  .cid-uZ97yTTpDQ .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uZ97yTTpDQ button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-uZ97yWtAMw {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-uZ97yWtAMw .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-uZ97yX8F4G {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-2-1920x1440.jpg");
}
.cid-uZ97yX8F4G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ97yX8F4G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ97yX8F4G .content-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uZ97yX8F4G .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uZ97yX8F4G .content-wrapper .mbr-label {
  margin-bottom: 32px;
}
.cid-uZ97yX8F4G .content-wrapper .title-wrapper {
  margin-bottom: 16px;
}
.cid-uZ97yX8F4G .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uZ97yX8F4G .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uZ97yX8F4G .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uZ97yX8F4G .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uZ97yX8F4G .google-map iframe {
  height: 600px;
  filter: hue-rotate(45deg);
}
@media (max-width: 992px) {
  .cid-uZ97yX8F4G .google-map iframe {
    height: 350px;
  }
}
.cid-uZ97yX8F4G .mbr-label {
  color: #a6adbf;
  text-align: center;
}
.cid-uZ97yX8F4G .mbr-section-title {
  color: #111111;
  text-align: center;
}
.cid-uZ97yX8F4G .mbr-section-subtitle {
  color: #073b4c;
  text-align: center;
}
.cid-uZ97yX8F4G .mbr-text,
.cid-uZ97yX8F4G .text-wrapper {
  color: #666666;
  text-align: center;
}
.cid-uZ97yX8F4G h2#forma_block {
  width: 750px;
  max-width: 100%;
}
.cid-uZ97yX8F4G #map-canvas {
  height: 600px;
  margin: 50px;
  padding: 50px;
}
.cid-uZ97yX8F4G #panel {
  position: absolute;
  z-index: 5;
  padding: 10px;
}
.cid-uZ97yYKZIl {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-uZ97yYKZIl .container {
  max-width: 1400px;
}
.cid-uZ97yYKZIl .card-img2 span {
  padding-top: 6px;
}
.cid-uZ97yYKZIl .soc-item a {
  padding-top: 5px;
}
.cid-uZ97yYKZIl .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-uZ97yYKZIl .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-uZ97yYKZIl .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-uZ97yYKZIl .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uZ97yYKZIl svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-uZ97yYKZIl #e2_shape {
  fill: #2681cd !important;
}
.cid-uZ97yYKZIl .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-uZ97yYKZIl .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-uZ97yYKZIl .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uZ97yYKZIl .card-img {
  width: auto;
}
.cid-uZ97yYKZIl .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-uZ97yYKZIl .soc-item span {
  font-size: 1.4rem;
}
.cid-uZ97yYKZIl .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-uZ97yYKZIl .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uZ97yYKZIl .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uZ97yYKZIl .media-wrap {
  margin-bottom: 1rem;
}
.cid-uZ97yYKZIl .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uZ97yYKZIl img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-uZ97yYKZIl .item {
    justify-content: center;
  }
  .cid-uZ97yYKZIl .quote::after {
    left: 60px;
  }
}
.cid-uZ97yYKZIl .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-uZ97yYKZIl .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uZ97yYKZIl .text1 {
  color: #ffffff;
}
.cid-uZ97yYKZIl .item-title {
  color: #ffffff;
}
.cid-uZ97yYKZIl H5 {
  color: #ffffff;
  text-align: left;
}
.cid-uZ97yYKZIl .theme {
  color: #ffffff;
}
.cid-uZ97yYKZIl .copyright > p {
  color: #ff3366;
}
.cid-uZ97yYKZIl .text2 {
  color: #ffffff;
}
.cid-vgnkShoage .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-vgnkShoage .navbar-fixed-top {
  padding-top: 0;
}
.cid-vgnkShoage .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-vgnkShoage .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vgnkShoage .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-vgnkShoage .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-vgnkShoage .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-vgnkShoage .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-vgnkShoage .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-vgnkShoage .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-vgnkShoage .dropdown-item {
  padding: 0;
}
.cid-vgnkShoage .dropdown-item,
.cid-vgnkShoage .nav-link,
.cid-vgnkShoage .brand-name {
  font-style: normal;
}
.cid-vgnkShoage .dropdown-item:hover,
.cid-vgnkShoage .nav-link:hover,
.cid-vgnkShoage .brand-name:hover {
  color: #ff3366 !important;
}
.cid-vgnkShoage .dropdown-menu {
  background-color: #0a1c44;
}
.cid-vgnkShoage .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-vgnkShoage .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-vgnkShoage .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-vgnkShoage .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-vgnkShoage .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-vgnkShoage .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-vgnkShoage .content-text {
  margin-bottom: 0;
}
.cid-vgnkShoage .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-vgnkShoage .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-vgnkShoage .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-vgnkShoage .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-vgnkShoage .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-vgnkShoage .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-vgnkShoage .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-vgnkShoage .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-vgnkShoage .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vgnkShoage .nav-dropdown .link {
  font-weight: 400;
}
.cid-vgnkShoage .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-vgnkShoage .content-right-side {
  text-align: center;
}
.cid-vgnkShoage .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-vgnkShoage .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-vgnkShoage .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-vgnkShoage .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vgnkShoage .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vgnkShoage .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-vgnkShoage .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-vgnkShoage .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-vgnkShoage .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-vgnkShoage .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-vgnkShoage .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-vgnkShoage .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-vgnkShoage .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-vgnkShoage .navbar {
    display: block;
    padding: 0;
  }
  .cid-vgnkShoage .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-vgnkShoage .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-vgnkShoage .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-vgnkShoage .navbar-toggler {
    display: none;
  }
  .cid-vgnkShoage .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-vgnkShoage .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-vgnkShoage .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-vgnkShoage .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-vgnkShoage .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-vgnkShoage .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-vgnkShoage .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-vgnkShoage .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-vgnkShoage .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-vgnkShoage .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-vgnkShoage .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vgnkShoage .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vgnkShoage .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-vgnkShoage .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vgnkShoage .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-vgnkShoage .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-vgnkShoage .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vgnkShoage .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-vgnkShoage .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-vgnkShoage .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-vgnkShoage .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-vgnkShoage .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-vgnkShoage .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-vgnkShoage button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-vgnkShoage button.navbar-toggler:focus {
  outline: none;
}
.cid-vgnkShoage button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-vgnkShoage button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vgnkShoage button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vgnkShoage button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vgnkShoage button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vgnkShoage nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vgnkShoage nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vgnkShoage nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vgnkShoage nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vgnkShoage .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vgnkShoage .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vgnkShoage .collapsed .btn {
  display: flex;
}
.cid-vgnkShoage .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-vgnkShoage .collapsed .navbar-collapse.collapsing,
.cid-vgnkShoage .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-vgnkShoage .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-vgnkShoage .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-vgnkShoage .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-vgnkShoage .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-vgnkShoage .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-vgnkShoage .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-vgnkShoage .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-vgnkShoage .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-vgnkShoage .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-vgnkShoage .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-vgnkShoage .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-vgnkShoage .collapsed button.navbar-toggler {
  display: block;
}
.cid-vgnkShoage .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-vgnkShoage .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-vgnkShoage .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-vgnkShoage .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-vgnkShoage .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-vgnkShoage .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-vgnkShoage .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-vgnkShoage .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-vgnkShoage .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-vgnkShoage .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-vgnkShoage .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-vgnkShoage .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-vgnkShoage .navbar-collapse.collapsing,
  .cid-vgnkShoage .navbar-collapse.show {
    display: block !important;
  }
  .cid-vgnkShoage .navbar-collapse.collapsing .navbar-nav,
  .cid-vgnkShoage .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-vgnkShoage .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-vgnkShoage .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-vgnkShoage .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-vgnkShoage .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-vgnkShoage .navbar-collapse.collapsing .navbar-buttons,
  .cid-vgnkShoage .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-vgnkShoage .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-vgnkShoage .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-vgnkShoage img {
    height: 3.8rem !important;
  }
  .cid-vgnkShoage .btn {
    display: flex;
  }
  .cid-vgnkShoage button.navbar-toggler {
    display: block;
  }
  .cid-vgnkShoage .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-vgnkShoage .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-vgnkShoage .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-vgnkShoage .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-vgnkShoage .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-vgnkShoage .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-vgnkShoage .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-vgnkShoage .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-vgnkShoage .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-vgnkShoage .nav-link:focus {
  outline: none;
}
.cid-vgnkShoage .navbar-toggler {
  position: relative;
}
.cid-vgnkShoage .dropdown-item.active,
.cid-vgnkShoage .dropdown-item:active {
  color: initial;
}
.cid-vgnkShoage .widget-title,
.cid-vgnkShoage .widget-icon {
  color: #ffffff;
}
.cid-vgnkShoage .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-vgnkShoage .menu-logo {
    display: none;
  }
  .cid-vgnkShoage .navbar {
    padding: 0;
  }
  .cid-vgnkShoage .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-vgnkShoage button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-vgnkSiXEFR {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-vgnkSiXEFR .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-vgnkSk0Xf8 {
  padding-top: 120px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1-1920x1438.jpg");
}
.cid-vgnkSk0Xf8 H3 {
  color: #073b4c;
}
.cid-vgnkSk0Xf8 .mbr-text,
.cid-vgnkSk0Xf8 .mbr-section-btn {
  color: #efefef;
}
.cid-vgnkSk0Xf8 H1 {
  color: #ffda00;
}
.cid-vgnkSmaRmP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-vgnkSmaRmP .mbr-section-subtitle {
  color: #333333;
  text-align: center;
}
.cid-vgnkSmaRmP .btn {
  margin: 0 0 .5rem 0;
}
.cid-vgnkSmaRmP .content-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-vgnkSmaRmP H2 {
  color: #232323;
  text-align: center;
}
.cid-vgQ6EdVGq9 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-4-1920x1280.jpeg");
}
.cid-vgQ6EdVGq9 .row {
  justify-content: flex-end;
}
.cid-vgQ6EdVGq9 .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background-color: #073b4c;
}
.cid-vgQ6EdVGq9 .block {
  background-color: #ffda00;
}
.cid-vgQ6EdVGq9 img {
  width: 100%;
}
.cid-vgQ6EdVGq9 .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-vgQ6EdVGq9 .content {
  max-width: 600px;
}
.cid-vgQ6EdVGq9 .mbr-head-title {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 19rem;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-vgQ6EdVGq9 .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-vgQ6EdVGq9 .mbr-head-title {
    right: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-vgQ6EdVGq9 .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-vgQ6EdVGq9 .mbr-head-title {
    right: 2rem;
    bottom: 30%;
  }
}
.cid-vgQ6EdVGq9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgQ6EdVGq9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgEpAxE6Qk {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffda00;
}
.cid-vgEpAxE6Qk .row {
  position: relative;
}
.cid-vgEpAxE6Qk .container {
  max-width: 1500px;
}
.cid-vgEpAxE6Qk .container {
  padding-right: 8rem !important;
}
.cid-vgEpAxE6Qk .mbr-section-subtitle {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-vgEpAxE6Qk .content-wrapper {
  max-width: 800px;
}
.cid-vgEpAxE6Qk .mbr-section-title {
  color: #333333;
}
.cid-vgEpAxE6Qk .mbr-text,
.cid-vgEpAxE6Qk .mbr-section-btn {
  color: #333333;
}
.cid-vgEpAxE6Qk .mbr-head-title {
  color: #333333;
}
@media (min-width: 767px) {
  .cid-vgEpAxE6Qk .container {
    padding: 0 4rem;
  }
}
@media (max-width: 767px) {
  .cid-vgEpAxE6Qk .container {
    padding-right: 4rem !important;
  }
}
.cid-vgEpAxE6Qk .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgEpAxE6Qk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgnmZx5hIW {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #073b4c;
}
.cid-vgnmZx5hIW .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #ffda00;
}
.cid-vgnmZx5hIW img {
  width: 100%;
}
.cid-vgnmZx5hIW .mbr-text {
  margin-top: 6rem;
}
.cid-vgnmZx5hIW .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-vgnmZx5hIW .content-wrapper {
  padding-top: 6rem;
}
.cid-vgnmZx5hIW .mbr-section-subtitle {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-vgnmZx5hIW .content-wrapper {
    padding-top: 0rem;
  }
  .cid-vgnmZx5hIW .mbr-text {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-vgnmZx5hIW .back {
    width: 100%;
    height: 75%;
  }
  .cid-vgnmZx5hIW .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-vgnmZx5hIW .mbr-text {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-vgnmZx5hIW .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-vgnmZx5hIW .mbr-section-subtitle {
    right: 2rem;
  }
}
.cid-vgnmZx5hIW .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgnmZx5hIW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgQ6c6nuK5 {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffda00;
  position: relative;
}
.cid-vgQ6c6nuK5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgQ6c6nuK5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgQ6c6nuK5 .container,
.cid-vgQ6c6nuK5 .container-fluid {
  position: static;
}
.cid-vgQ6c6nuK5 .mbr-section-title {
  margin-bottom: 25px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-vgQ6c6nuK5 .mbr-section-title {
    margin-bottom: 5px;
  }
}
.cid-vgQ6c6nuK5 .mbr-section-subtitle {
  color: #131313;
}
.cid-vgQ6c6nuK5 .mbr-text {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-vgQ6c6nuK5 .mbr-text {
    margin-top: 18px;
  }
}
.cid-vgQ6c6nuK5 .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-vgQ6c6nuK5 .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-vgQ6c6nuK5 .item-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 42%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
}
.cid-vgQ6c6nuK5 .item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-vgQ6c6nuK5 .item-img {
    display: none;
  }
}
.cid-vgnyLspDsr {
  padding-top: 0px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/12221-643x360.jpeg");
}
.cid-vgnyLspDsr .row {
  justify-content: flex-end;
}
.cid-vgnyLspDsr .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background-color: #073b4c;
}
.cid-vgnyLspDsr .block {
  background-color: #ffda00;
}
.cid-vgnyLspDsr img {
  width: 100%;
}
.cid-vgnyLspDsr .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-vgnyLspDsr .content {
  max-width: 600px;
}
.cid-vgnyLspDsr .mbr-head-title {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 19rem;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-vgnyLspDsr .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-vgnyLspDsr .mbr-head-title {
    right: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-vgnyLspDsr .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-vgnyLspDsr .mbr-head-title {
    right: 2rem;
    bottom: 30%;
  }
}
.cid-vgnyLspDsr .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgnyLspDsr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgnkSl9S9O {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efeeee;
}
.cid-vgnkSl9S9O .line {
  background-color: #0f7699;
  color: #0f7699;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-vgnkSl9S9O .section-text {
  padding: 2rem 0;
  color: #073b4c;
}
.cid-vgnkSl9S9O .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-vgnkSl9S9O .inner-container {
    width: 100% !important;
  }
}
.cid-vgnkSujN2b {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-vgnkSujN2b .container {
  max-width: 1400px;
}
.cid-vgnkSujN2b .card-img2 span {
  padding-top: 6px;
}
.cid-vgnkSujN2b .soc-item a {
  padding-top: 5px;
}
.cid-vgnkSujN2b .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-vgnkSujN2b .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-vgnkSujN2b .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-vgnkSujN2b .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vgnkSujN2b svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-vgnkSujN2b #e2_shape {
  fill: #2681cd !important;
}
.cid-vgnkSujN2b .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-vgnkSujN2b .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-vgnkSujN2b .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vgnkSujN2b .card-img {
  width: auto;
}
.cid-vgnkSujN2b .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-vgnkSujN2b .soc-item span {
  font-size: 1.4rem;
}
.cid-vgnkSujN2b .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-vgnkSujN2b .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-vgnkSujN2b .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vgnkSujN2b .media-wrap {
  margin-bottom: 1rem;
}
.cid-vgnkSujN2b .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vgnkSujN2b img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-vgnkSujN2b .item {
    justify-content: center;
  }
  .cid-vgnkSujN2b .quote::after {
    left: 60px;
  }
}
.cid-vgnkSujN2b .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-vgnkSujN2b .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vgnkSujN2b .text1 {
  color: #ffffff;
}
.cid-vgnkSujN2b .item-title {
  color: #ffffff;
}
.cid-vgnkSujN2b H5 {
  color: #ffffff;
  text-align: left;
}
.cid-vgnkSujN2b .theme {
  color: #ffffff;
}
.cid-vgnkSujN2b .copyright > p {
  color: #ff3366;
}
.cid-vgnkSujN2b .text2 {
  color: #ffffff;
}
.cid-vkNXpdgWOY .navbar {
  padding: 0.5rem 0;
  background: #cccccc;
  transition: none;
  min-height: 50px;
}
.cid-vkNXpdgWOY .navbar-fixed-top {
  padding-top: 0;
}
.cid-vkNXpdgWOY .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-vkNXpdgWOY .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vkNXpdgWOY .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-vkNXpdgWOY .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-vkNXpdgWOY .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-vkNXpdgWOY .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-vkNXpdgWOY .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-vkNXpdgWOY .menu-content-top {
  background: #073b4c;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-vkNXpdgWOY .dropdown-item {
  padding: 0;
}
.cid-vkNXpdgWOY .dropdown-item,
.cid-vkNXpdgWOY .nav-link,
.cid-vkNXpdgWOY .brand-name {
  font-style: normal;
}
.cid-vkNXpdgWOY .dropdown-item:hover,
.cid-vkNXpdgWOY .nav-link:hover,
.cid-vkNXpdgWOY .brand-name:hover {
  color: #ff3366 !important;
}
.cid-vkNXpdgWOY .dropdown-menu {
  background-color: #0a1c44;
}
.cid-vkNXpdgWOY .dropdown-item:active {
  background-color: #0a1c44;
}
.cid-vkNXpdgWOY .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-vkNXpdgWOY .navbar-dropdown.bg-color.transparent.opened {
  background: #cccccc;
}
.cid-vkNXpdgWOY .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-vkNXpdgWOY .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-vkNXpdgWOY .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-vkNXpdgWOY .content-text {
  margin-bottom: 0;
}
.cid-vkNXpdgWOY .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-vkNXpdgWOY .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff3366;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-vkNXpdgWOY .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-vkNXpdgWOY .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-vkNXpdgWOY .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-vkNXpdgWOY .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-vkNXpdgWOY .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-vkNXpdgWOY .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-vkNXpdgWOY .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vkNXpdgWOY .nav-dropdown .link {
  font-weight: 400;
}
.cid-vkNXpdgWOY .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-vkNXpdgWOY .content-right-side {
  text-align: center;
}
.cid-vkNXpdgWOY .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-vkNXpdgWOY .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-vkNXpdgWOY .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-vkNXpdgWOY .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vkNXpdgWOY .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vkNXpdgWOY .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-vkNXpdgWOY .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-vkNXpdgWOY .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-vkNXpdgWOY .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-vkNXpdgWOY .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-vkNXpdgWOY .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-vkNXpdgWOY .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-vkNXpdgWOY .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-vkNXpdgWOY .navbar {
    display: block;
    padding: 0;
  }
  .cid-vkNXpdgWOY .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-vkNXpdgWOY .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-vkNXpdgWOY .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-vkNXpdgWOY .navbar-toggler {
    display: none;
  }
  .cid-vkNXpdgWOY .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-vkNXpdgWOY .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-vkNXpdgWOY .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-vkNXpdgWOY .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-vkNXpdgWOY .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-vkNXpdgWOY .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-vkNXpdgWOY .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-vkNXpdgWOY .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-vkNXpdgWOY .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-vkNXpdgWOY .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-vkNXpdgWOY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vkNXpdgWOY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vkNXpdgWOY .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-vkNXpdgWOY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vkNXpdgWOY .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-vkNXpdgWOY .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-vkNXpdgWOY .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vkNXpdgWOY .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-vkNXpdgWOY .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-vkNXpdgWOY .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-vkNXpdgWOY .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-vkNXpdgWOY .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-vkNXpdgWOY .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-vkNXpdgWOY button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-vkNXpdgWOY button.navbar-toggler:focus {
  outline: none;
}
.cid-vkNXpdgWOY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-vkNXpdgWOY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vkNXpdgWOY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vkNXpdgWOY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vkNXpdgWOY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vkNXpdgWOY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vkNXpdgWOY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vkNXpdgWOY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vkNXpdgWOY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vkNXpdgWOY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vkNXpdgWOY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vkNXpdgWOY .collapsed .btn {
  display: flex;
}
.cid-vkNXpdgWOY .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-vkNXpdgWOY .collapsed .navbar-collapse.collapsing,
.cid-vkNXpdgWOY .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-vkNXpdgWOY .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-vkNXpdgWOY .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-vkNXpdgWOY .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-vkNXpdgWOY .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-vkNXpdgWOY .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-vkNXpdgWOY .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-vkNXpdgWOY .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-vkNXpdgWOY .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-vkNXpdgWOY .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-vkNXpdgWOY .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-vkNXpdgWOY .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-vkNXpdgWOY .collapsed button.navbar-toggler {
  display: block;
}
.cid-vkNXpdgWOY .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-vkNXpdgWOY .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-vkNXpdgWOY .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-vkNXpdgWOY .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-vkNXpdgWOY .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-vkNXpdgWOY .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-vkNXpdgWOY .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-vkNXpdgWOY .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ffda00;
  }
  .cid-vkNXpdgWOY .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ffda00;
  }
}
@media (max-width: 991px) {
  .cid-vkNXpdgWOY .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-vkNXpdgWOY .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-vkNXpdgWOY .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-vkNXpdgWOY .navbar-collapse.collapsing,
  .cid-vkNXpdgWOY .navbar-collapse.show {
    display: block !important;
  }
  .cid-vkNXpdgWOY .navbar-collapse.collapsing .navbar-nav,
  .cid-vkNXpdgWOY .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-vkNXpdgWOY .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-vkNXpdgWOY .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-vkNXpdgWOY .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-vkNXpdgWOY .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-vkNXpdgWOY .navbar-collapse.collapsing .navbar-buttons,
  .cid-vkNXpdgWOY .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-vkNXpdgWOY .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-vkNXpdgWOY .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-vkNXpdgWOY img {
    height: 3.8rem !important;
  }
  .cid-vkNXpdgWOY .btn {
    display: flex;
  }
  .cid-vkNXpdgWOY button.navbar-toggler {
    display: block;
  }
  .cid-vkNXpdgWOY .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-vkNXpdgWOY .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-vkNXpdgWOY .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-vkNXpdgWOY .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-vkNXpdgWOY .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-vkNXpdgWOY .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-vkNXpdgWOY .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-vkNXpdgWOY .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-vkNXpdgWOY .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-vkNXpdgWOY .nav-link:focus {
  outline: none;
}
.cid-vkNXpdgWOY .navbar-toggler {
  position: relative;
}
.cid-vkNXpdgWOY .dropdown-item.active,
.cid-vkNXpdgWOY .dropdown-item:active {
  color: initial;
}
.cid-vkNXpdgWOY .widget-title,
.cid-vkNXpdgWOY .widget-icon {
  color: #ffffff;
}
.cid-vkNXpdgWOY .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-vkNXpdgWOY .menu-logo {
    display: none;
  }
  .cid-vkNXpdgWOY .navbar {
    padding: 0;
  }
  .cid-vkNXpdgWOY .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-vkNXpdgWOY button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-vkNXpejx0u {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1200.jpg");
}
@media (min-width: 992px) {
  .cid-vkNXpejx0u .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-vkNXpejx0u .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vkNXpejx0u .mbr-text {
    text-align: center;
  }
}
.cid-vkNXpejx0u .mbr-text,
.cid-vkNXpejx0u .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-vkO2r6TuVj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #cccccc;
}
.cid-vkO2r6TuVj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkO2r6TuVj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkO2r6TuVj .container-fluid {
  padding: 0 28px;
}
@media (max-width: 992px) {
  .cid-vkO2r6TuVj .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-vkO2r6TuVj .container-fluid {
    padding: 0 14px;
  }
}
@media (max-width: 992px) {
  .cid-vkO2r6TuVj .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-vkO2r6TuVj .container {
    padding: 0 14px;
  }
}
.cid-vkO2r6TuVj .content-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-vkO2r6TuVj .content-wrapper .link-wrapper {
  display: block;
}
.cid-vkO2r6TuVj .content-wrapper .link-wrapper:hover .mbr-link,
.cid-vkO2r6TuVj .content-wrapper .link-wrapper:focus .mbr-link {
  color: #01004c;
}
.cid-vkO2r6TuVj .content-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-vkO2r6TuVj .mbr-text {
  color: #01004c;
  text-align: center;
}
.cid-vkO2r6TuVj .mbr-link {
  color: #1a449a;
  text-align: center;
}
.cid-vkNXNJLSHh {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vkNXNJLSHh .mbr-text,
.cid-vkNXNJLSHh blockquote {
  color: #767676;
}
.cid-vkNXNJLSHh .mbr-text P {
  text-align: center;
}
.cid-vkNXPo4ccu {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-vkNXPo4ccu h4 {
  text-align: left;
  font-weight: 500;
}
.cid-vkNXPo4ccu p {
  color: #767676;
  text-align: left;
  margin-bottom: 0;
}
.cid-vkNXPo4ccu .card-img {
  width: auto;
}
.cid-vkNXPo4ccu .card-img span {
  font-size: 72px;
  color: #707070;
}
.cid-vkNXPo4ccu .card-box {
  padding-left: 1rem;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-vkNXPo4ccu .card-img {
    text-align: left;
    padding-bottom: 0.75rem;
  }
}
@media (max-width: 300px) {
  .cid-vkNXPo4ccu .card-img span {
    font-size: 40px !important;
  }
}
.cid-vkNXQQKhTH {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-vkNXQQKhTH h4 {
  text-align: left;
  font-weight: 500;
}
.cid-vkNXQQKhTH p {
  color: #767676;
  text-align: left;
  margin-bottom: 0;
}
.cid-vkNXQQKhTH .card-img {
  width: auto;
}
.cid-vkNXQQKhTH .card-img span {
  font-size: 72px;
  color: #707070;
}
.cid-vkNXQQKhTH .card-box {
  padding-left: 1rem;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-vkNXQQKhTH .card-img {
    text-align: left;
    padding-bottom: 0.75rem;
  }
}
@media (max-width: 300px) {
  .cid-vkNXQQKhTH .card-img span {
    font-size: 40px !important;
  }
}
.cid-vkQsNMNyZJ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-vkQsNMNyZJ .mbr-text,
.cid-vkQsNMNyZJ blockquote {
  color: #767676;
}
.cid-vkNXpgDXef {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #073b4c;
  position: relative;
  overflow: hidden;
}
.cid-vkNXpgDXef .container {
  max-width: 1400px;
}
.cid-vkNXpgDXef .card-img2 span {
  padding-top: 6px;
}
.cid-vkNXpgDXef .soc-item a {
  padding-top: 5px;
}
.cid-vkNXpgDXef .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-vkNXpgDXef .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-vkNXpgDXef .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-vkNXpgDXef .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vkNXpgDXef svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-vkNXpgDXef #e2_shape {
  fill: #2681cd !important;
}
.cid-vkNXpgDXef .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-vkNXpgDXef .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-vkNXpgDXef .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #2681cd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vkNXpgDXef .card-img {
  width: auto;
}
.cid-vkNXpgDXef .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-vkNXpgDXef .soc-item span {
  font-size: 1.4rem;
}
.cid-vkNXpgDXef .soc-item:hover span {
  color: #ff3366 !important;
}
.cid-vkNXpgDXef .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-vkNXpgDXef .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vkNXpgDXef .media-wrap {
  margin-bottom: 1rem;
}
.cid-vkNXpgDXef .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vkNXpgDXef img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-vkNXpgDXef .item {
    justify-content: center;
  }
  .cid-vkNXpgDXef .quote::after {
    left: 60px;
  }
}
.cid-vkNXpgDXef .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-vkNXpgDXef .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vkNXpgDXef .text1 {
  color: #ffffff;
}
.cid-vkNXpgDXef .item-title {
  color: #ffffff;
}
.cid-vkNXpgDXef H5 {
  color: #ffffff;
  text-align: left;
}
.cid-vkNXpgDXef .theme {
  color: #ffffff;
}
.cid-vkNXpgDXef .copyright > p {
  color: #ff3366;
}
.cid-vkNXpgDXef .text2 {
  color: #ffffff;
}
.cid-vkNXphTdIA {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-vkNXphTdIA .media-container-row .mbr-text {
  color: #efeeee;
}
.cid-vkNXpijXcn.popup-builder {
  background-color: #ffffff;
}
.cid-vkNXpijXcn.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-vkNXpijXcn.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-vkNXpijXcn .modal-content,
.cid-vkNXpijXcn .modal-dialog {
  height: auto;
}
.cid-vkNXpijXcn .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-vkNXpijXcn .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-vkNXpijXcn .form-wrapper .mbr-form .form-group,
  .cid-vkNXpijXcn .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-vkNXpijXcn .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-vkNXpijXcn .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vkNXpijXcn .mbr-text {
  text-align: center;
}
.cid-vkNXpijXcn .pt-0 {
  padding-top: 0 !important;
}
.cid-vkNXpijXcn .pb-0 {
  padding-bottom: 0 !important;
}
.cid-vkNXpijXcn .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-vkNXpijXcn .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-vkNXpijXcn .modal-open {
  overflow: hidden;
}
.cid-vkNXpijXcn .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-vkNXpijXcn .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-vkNXpijXcn .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-vkNXpijXcn .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-vkNXpijXcn .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-vkNXpijXcn .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-vkNXpijXcn .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-vkNXpijXcn .modal-content {
  background: #efeeee;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-vkNXpijXcn .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-vkNXpijXcn .modal-backdrop.fade {
  opacity: 0;
}
.cid-vkNXpijXcn .modal-backdrop.show {
  opacity: .5;
}
.cid-vkNXpijXcn .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-vkNXpijXcn .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-vkNXpijXcn .modal-header .close:hover {
  opacity: 1;
}
.cid-vkNXpijXcn .modal-header .close:focus {
  outline: none;
}
.cid-vkNXpijXcn .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #073b4c;
}
.cid-vkNXpijXcn .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-vkNXpijXcn .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-vkNXpijXcn .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-vkNXpijXcn .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-vkNXpijXcn .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-vkNXpijXcn .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-vkNXpijXcn .modal-sm {
    max-width: 300px;
  }
  .cid-vkNXpijXcn .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-vkNXpijXcn .modal-lg,
  .cid-vkNXpijXcn .modal-xl {
    max-width: 800px;
  }
  .cid-vkNXpijXcn .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-vkNXpijXcn .modal-xl {
    max-width: 1140px;
  }
  .cid-vkNXpijXcn .container {
    max-width: 1140px;
  }
}
.cid-vkNXpijXcn .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-vkNXpijXcn .container {
    max-width: 720px;
  }
}
.cid-vkNXpijXcn .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-vkNXpijXcn .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-vkNXpijXcn .form-group {
  margin-bottom: 1rem;
}
.cid-vkNXpijXcn .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-vkNXpijXcn .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vkNXpijXcn .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
