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.4rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.84rem;
}
.display-4 {
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.4rem;
  letter-spacing: -1px;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 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: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #073b4c !important;
}
.bg-success {
  background-color: #ffda00 !important;
}
.bg-info {
  background-color: #073b4c !important;
}
.bg-warning {
  background-color: #036808 !important;
}
.bg-danger {
  background-color: #03035b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #073b4c !important;
  border-color: #073b4c !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0d7192 !important;
  border-color: #0d7192 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0d7192 !important;
  border-color: #0d7192 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff809f !important;
  border-color: #ff809f !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff809f !important;
  border-color: #ff809f !important;
}
.btn-info,
.btn-info:active {
  background-color: #073b4c !important;
  border-color: #073b4c !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #0d7192 !important;
  border-color: #0d7192 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0d7192 !important;
  border-color: #0d7192 !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: #036808 !important;
  border-color: #036808 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #05b20e !important;
  border-color: #05b20e !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #05b20e !important;
  border-color: #05b20e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #03035b !important;
  border-color: #03035b !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #0505a5 !important;
  border-color: #0505a5 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0505a5 !important;
  border-color: #0505a5 !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: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #073b4c;
  border-color: #073b4c;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #073b4c !important;
  border-color: #073b4c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cc0033;
  color: #cc0033;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff3366;
  border-color: #ff3366;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !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: #073b4c;
  border-color: #073b4c;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #073b4c !important;
  border-color: #073b4c !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: #000500;
  color: #000500;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #036808;
  border-color: #036808;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #036808 !important;
  border-color: #036808 !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: #03035b;
  border-color: #03035b;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #03035b !important;
  border-color: #03035b !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: #073b4c !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #ffda00 !important;
}
.text-info {
  color: #073b4c !important;
}
.text-warning {
  color: #036808 !important;
}
.text-danger {
  color: #03035b !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #1084a9 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #ff99b3 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ffe966 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #1084a9 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #06cb10 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #0606be !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: #073b4c;
}
.alert-warning {
  background-color: #036808;
}
.alert-danger {
  background-color: #03035b;
}
.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: #073b4c;
  border-color: #073b4c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #073b4c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #4ac6ee;
}
.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: #4ac6ee;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #07e412;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #0707d6;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}
.form-control > .mbr-iconfont {
  font-size: 1.76rem;
}
blockquote {
  border-color: #073b4c;
}
/* 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: #073b4c;
  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: #073b4c;
  border-bottom-color: #073b4c;
}
.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: #073b4c !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: #ff3366 !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='%23073b4c' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-tO8HyP2PaP .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
}
.cid-tO8HyP2PaP .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-tO8HyP2PaP a {
  font-style: normal;
}
.cid-tO8HyP2PaP .show {
  overflow: visible;
}
.cid-tO8HyP2PaP .dropdown-menu {
  max-height: 400px;
}
.cid-tO8HyP2PaP .dropdown-item:active {
  background-color: transparent;
}
.cid-tO8HyP2PaP .nav-link {
  font-weight: 600 !important;
}
.cid-tO8HyP2PaP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tO8HyP2PaP .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
  -webkit-align-items: center;
}
.cid-tO8HyP2PaP .nav-item:focus,
.cid-tO8HyP2PaP .nav-link:focus {
  outline: none;
}
.cid-tO8HyP2PaP .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tO8HyP2PaP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tO8HyP2PaP .menu-logo {
  margin-right: auto;
}
.cid-tO8HyP2PaP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tO8HyP2PaP .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-tO8HyP2PaP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  font-weight: 600 !important;
  padding-right: 2rem;
}
.cid-tO8HyP2PaP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tO8HyP2PaP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tO8HyP2PaP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tO8HyP2PaP .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tO8HyP2PaP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
}
.cid-tO8HyP2PaP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tO8HyP2PaP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tO8HyP2PaP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tO8HyP2PaP .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tO8HyP2PaP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  color: #ffffff !important;
  padding: 0.2em 1em 0.2em 1em !important;
}
.cid-tO8HyP2PaP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tO8HyP2PaP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tO8HyP2PaP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tO8HyP2PaP .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tO8HyP2PaP .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-tO8HyP2PaP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tO8HyP2PaP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tO8HyP2PaP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tO8HyP2PaP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tO8HyP2PaP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tO8HyP2PaP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tO8HyP2PaP button.navbar-toggler:focus {
  outline: none;
}
.cid-tO8HyP2PaP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tO8HyP2PaP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tO8HyP2PaP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO8HyP2PaP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO8HyP2PaP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tO8HyP2PaP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO8HyP2PaP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tO8HyP2PaP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tO8HyP2PaP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO8HyP2PaP .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tO8HyP2PaP .collapsed .btn {
  display: -webkit-flex;
}
.cid-tO8HyP2PaP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tO8HyP2PaP .collapsed .navbar-collapse.collapsing,
.cid-tO8HyP2PaP .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-tO8HyP2PaP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tO8HyP2PaP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tO8HyP2PaP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tO8HyP2PaP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tO8HyP2PaP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tO8HyP2PaP .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tO8HyP2PaP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tO8HyP2PaP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tO8HyP2PaP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tO8HyP2PaP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tO8HyP2PaP .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-tO8HyP2PaP .collapsed button.navbar-toggler {
  display: block;
}
.cid-tO8HyP2PaP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tO8HyP2PaP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tO8HyP2PaP .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-tO8HyP2PaP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tO8HyP2PaP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tO8HyP2PaP .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;
}
@media (max-width: 991px) {
  .cid-tO8HyP2PaP.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tO8HyP2PaP img {
    height: 3.8rem !important;
  }
  .cid-tO8HyP2PaP .btn {
    display: -webkit-flex;
  }
  .cid-tO8HyP2PaP button.navbar-toggler {
    display: block;
  }
  .cid-tO8HyP2PaP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tO8HyP2PaP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tO8HyP2PaP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tO8HyP2PaP .navbar-collapse.collapsing,
  .cid-tO8HyP2PaP .navbar-collapse.show {
    display: block !important;
    overflow: auto;
    width: 100%;
  }
  .cid-tO8HyP2PaP .navbar-collapse.collapsing .navbar-nav,
  .cid-tO8HyP2PaP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tO8HyP2PaP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tO8HyP2PaP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tO8HyP2PaP .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tO8HyP2PaP .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tO8HyP2PaP .navbar-collapse.collapsing .navbar-buttons,
  .cid-tO8HyP2PaP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tO8HyP2PaP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tO8HyP2PaP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tO8HyP2PaP .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-tO8HyP2PaP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tO8HyP2PaP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tO8HyP2PaP .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;
  }
}
@media (max-width: 767px) {
  .cid-tO8HyP2PaP .nav-link {
    justify-content: start !important;
  }
  .cid-tO8HyP2PaP .navbar.opened {
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-tO8HyP2PaP .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-tO8HyP2PaP .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
  }
}
@media (min-width: 767px) {
  .cid-tO8HyP2PaP .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tO8HyP2PaP .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tO8HyP2PaP .nav-link:hover,
.cid-tO8HyP2PaP .dropdown-item:hover {
  color: #ffffff !important;
}
@media (min-width: 1500px) {
  .cid-tO8HyP2PaP .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-tO8HyP2PaP .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-uS927c6SU8 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/img-6346-2000x1333.jpg");
}
.cid-uS927c6SU8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS927c6SU8 .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-uS927c6SU8 .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-uS927c6SU8 img {
  border-radius: 1rem;
}
.cid-uS927c6SU8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS927c6SU8 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uS927c6SU8 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uS927c6SU8 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uS927c6SU8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uS927c6SU8 .mbr-section-subtitle,
.cid-uS927c6SU8 .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-uS927c6SU8 .mbr-text,
.cid-uS927c6SU8 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tbJVIFlM7n {
  padding-top: 180px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/images-2000x481.jpg");
}
.cid-tbJVIFlM7n .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-tbJVIFlM7n .container {
  max-width: 1500px;
}
.cid-tbJVIFlM7n .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-tbJVIFlM7n .container {
    padding: 0 4rem;
  }
}
.cid-tbJVIFlM7n .mbr-text,
.cid-tbJVIFlM7n .mbr-section-btn {
  color: #efeeee;
}
.cid-tbJVIFlM7n .btn {
  width: -webkit-fill-available;
  margin: 0.4rem !important;
}
.cid-tbJVIFlM7n .pt-5 {
  padding-top: 4rem !important;
}
@media (max-width: 922px) {
  .cid-tbJVIFlM7n .align-left {
    text-align: center;
  }
  .cid-tbJVIFlM7n .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-uS9oAOlMAN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #073b4c;
}
.cid-uS9oAOlMAN .mbr-text {
  line-height: 1.55;
  color: #000000;
  margin-bottom: 0;
}
.cid-uS9oAOlMAN .price {
  margin-top: 5px;
}
.cid-uS9oAOlMAN .symbol {
  line-height: 1.1;
  top: 3px;
  vertical-align: top;
  position: relative;
}
.cid-uS9oAOlMAN .mbr-section-btn {
  margin-top: 10px;
}
.cid-uS9oAOlMAN .btn-md {
  padding: 0 20px 0 15px;
  height: 50px;
  margin: 0 !important;
}
.cid-uS9oAOlMAN .btn-md:hover {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.cid-uS9oAOlMAN .btn-md .mbr-iconfont {
  margin: 5px 0 0 !important;
  animation-name: none;
  order: 0;
}
.cid-uS9oAOlMAN .mbr-iconfont:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 23px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 10px 0 10px;
}
@media (max-width: 991px) {
  .cid-uS9oAOlMAN .content__block,
  .cid-uS9oAOlMAN .price__block {
    margin-bottom: 30px;
  }
}
.cid-uS9oAOlMAN .descr {
  color: #444345;
  margin-bottom: 0;
}
.cid-uS9oAOlMAN .mbr-text,
.cid-uS9oAOlMAN .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uS9oAOlMAN .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uS9mg0Xf3I {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/img-6373-2000x1333.jpg");
}
.cid-uS9mg0Xf3I .row {
  position: relative;
}
.cid-uS9mg0Xf3I .container {
  max-width: 1500px;
}
@media (min-width: 767px) {
  .cid-uS9mg0Xf3I .row {
    margin: 0 2rem;
  }
}
.cid-uS9mg0Xf3I h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 2rem;
  top: 1rem;
}
.cid-uS9mg0Xf3I .content-wrapper {
  max-width: 600px;
}
.cid-uS9mg0Xf3I H1 {
  color: #ffffff;
}
.cid-uS9mg0Xf3I .mbr-text,
.cid-uS9mg0Xf3I .mbr-section-btn {
  color: #ffffff;
}
.cid-uS9mg0Xf3I H3 {
  color: #333333;
}
@media (max-width: 767px) {
  .cid-uS9mg0Xf3I h4 {
    left: 3rem;
  }
}
.cid-uS9mg0Xf3I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS9mg0Xf3I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS9uiFNbKo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  position: relative;
  background-image: url("../../../assets/images/img-6424-2000x1333.jpg");
}
.cid-uS9uiFNbKo .decor-wrap_1 {
  position: absolute;
  top: -65%;
  right: -10rem;
  width: 474px;
  height: 474px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #073b4c 0, #073b4c 43%, #073b4c 100%);
}
.cid-uS9uiFNbKo .decor-wrap_2 {
  position: absolute;
  bottom: -25%;
  left: -2rem;
  width: 254px;
  height: 254px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #073b4c 0, #073b4c 43%, #073b4c 100%);
}
.cid-uS9uiFNbKo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS9uiFNbKo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS9uiFNbKo .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uS9uiFNbKo .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uS9uiFNbKo .container {
    padding: 0 30px;
  }
}
.cid-uS9uiFNbKo .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uS9uiFNbKo .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uS9uiFNbKo .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uS9uiFNbKo .text-wrapper {
  border-left: 1px solid #ffffff;
  padding-left: 40px;
}
@media (max-width: 992px) {
  .cid-uS9uiFNbKo .text-wrapper {
    padding-left: 20px;
  }
}
.cid-uS9uiFNbKo .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uS9uiFNbKo .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uS9uiFNbKo .mbr-text {
  color: #ffffff;
}
.cid-uS9vDFuqPT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  position: relative;
  background-image: url("../../../assets/images/img-6584-2000x1333.jpg");
}
.cid-uS9vDFuqPT .decor-wrap_1 {
  position: absolute;
  top: -65%;
  right: -10rem;
  width: 474px;
  height: 474px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #073b4c 0, #073b4c 43%, #073b4c 100%);
}
.cid-uS9vDFuqPT .decor-wrap_2 {
  position: absolute;
  bottom: -25%;
  left: -2rem;
  width: 254px;
  height: 254px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #073b4c 0, #073b4c 43%, #073b4c 100%);
}
.cid-uS9vDFuqPT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS9vDFuqPT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS9vDFuqPT .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uS9vDFuqPT .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uS9vDFuqPT .container {
    padding: 0 30px;
  }
}
.cid-uS9vDFuqPT .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uS9vDFuqPT .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uS9vDFuqPT .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uS9vDFuqPT .text-wrapper {
  border-left: 1px solid #ffffff;
  padding-left: 40px;
}
@media (max-width: 992px) {
  .cid-uS9vDFuqPT .text-wrapper {
    padding-left: 20px;
  }
}
.cid-uS9vDFuqPT .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uS9vDFuqPT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uS9vDFuqPT .mbr-text {
  color: #ffffff;
}
.cid-uS9wI413pw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  position: relative;
  background-image: url("../../../assets/images/img-6663-2000x1333.jpg");
}
.cid-uS9wI413pw .decor-wrap_1 {
  position: absolute;
  top: -65%;
  right: -10rem;
  width: 474px;
  height: 474px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #073b4c 0, #073b4c 43%, #073b4c 100%);
}
.cid-uS9wI413pw .decor-wrap_2 {
  position: absolute;
  bottom: -25%;
  left: -2rem;
  width: 254px;
  height: 254px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #073b4c 0, #073b4c 43%, #073b4c 100%);
}
.cid-uS9wI413pw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS9wI413pw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS9wI413pw .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uS9wI413pw .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uS9wI413pw .container {
    padding: 0 30px;
  }
}
.cid-uS9wI413pw .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uS9wI413pw .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uS9wI413pw .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uS9wI413pw .text-wrapper {
  border-left: 1px solid #ffffff;
  padding-left: 40px;
}
@media (max-width: 992px) {
  .cid-uS9wI413pw .text-wrapper {
    padding-left: 20px;
  }
}
.cid-uS9wI413pw .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uS9wI413pw .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uS9wI413pw .mbr-text {
  color: #ffffff;
}
.cid-uS9u7gnqcp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #073b4c;
}
.cid-uS9u7gnqcp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS9u7gnqcp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS9u7gnqcp .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uS9u7gnqcp .content-wrapper .mbr-section-title span {
  color: #ffffff;
}
.cid-uS9u7gnqcp .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uS9u7gnqcp .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uS9u7gnqcp .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #073b4c, #ffffff, #073b4c);
}
@media (max-width: 992px) {
  .cid-uS9u7gnqcp .border-wrap {
    margin-top: 32px;
  }
}
.cid-uS9u7gnqcp .mbr-section-title {
  color: #ffffff;
}
.cid-uS9u7gnqcp .mbr-text,
.cid-uS9u7gnqcp .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uS9u7gnqcp .mbr-section-title,
.cid-uS9u7gnqcp .mbr-section-btn {
  text-align: center;
}
.cid-uS9yEMLZed {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #073b4c;
  overflow: hidden;
}
.cid-uS9yEMLZed .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS9yEMLZed .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS9yEMLZed .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uS9yEMLZed .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uS9yEMLZed .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uS9yEMLZed .container {
    padding: 0 22px;
  }
}
.cid-uS9yEMLZed .card {
  justify-content: center;
}
.cid-uS9yEMLZed .content-wrapper {
  padding-right: 32px;
  padding-right: 0;
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-uS9yEMLZed .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uS9yEMLZed .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uS9yEMLZed .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uS9yEMLZed .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uS9yEMLZed .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uS9yEMLZed .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #0f7699;
}
@media (max-width: 1440px) {
  .cid-uS9yEMLZed .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uS9yEMLZed .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uS9yEMLZed .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uS9yEMLZed .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uS9yEMLZed .mbr-section-title {
  color: #ffffff;
}
.cid-uS9yEMLZed .mbr-text {
  color: #ffffff;
}
.cid-uS9BJ0dEYW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #073b4c;
}
.cid-uS9BJ0dEYW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS9BJ0dEYW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS9BJ0dEYW .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uS9BJ0dEYW .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-uS9BJ0dEYW .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 64px;
}
@media (max-width: 1440px) {
  .cid-uS9BJ0dEYW .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uS9BJ0dEYW .items-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uS9BJ0dEYW .item {
    margin-bottom: 40px;
  }
}
.cid-uS9BJ0dEYW .item .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-uS9BJ0dEYW .item .item-wrapper .card-box .iconfont-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uS9BJ0dEYW .item .item-wrapper .card-box .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uS9BJ0dEYW .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #ffffff;
  background-color: #073b4c;
}
.cid-uS9BJ0dEYW .item .item-wrapper .card-box .card-title {
  margin-bottom: 20px;
}
.cid-uS9BJ0dEYW .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uS9BJ0dEYW .item .item-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uS9BJ0dEYW .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uS9BJ0dEYW .mbr-section-title,
.cid-uS9BJ0dEYW .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uS9BJ0dEYW .card-title {
  color: #323432;
}
.cid-uS9BJ0dEYW .card-text {
  color: #ffffff;
}
.cid-uS9BJ0dEYW .card-title,
.cid-uS9BJ0dEYW .mbr-section-btn,
.cid-uS9BJ0dEYW .iconfont-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-scfAg4nIjZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #073b4c;
}
.cid-scfAg4nIjZ .carousel-control {
  background: #000;
}
.cid-scfAg4nIjZ .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-scfAg4nIjZ .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-scfAg4nIjZ .carousel-item .wrap-img {
  text-align: center;
}
.cid-scfAg4nIjZ .carousel-item .wrap-img img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-scfAg4nIjZ .carousel-controls {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-scfAg4nIjZ .carousel-controls .carousel-control {
  background: #000;
  border-radius: 50%;
  position: static;
  width: 40px;
  height: 40px;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-scfAg4nIjZ .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-scfAg4nIjZ .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-scfAg4nIjZ .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-scfAg4nIjZ .cloneditem-1,
.cid-scfAg4nIjZ .cloneditem-2,
.cid-scfAg4nIjZ .cloneditem-3,
.cid-scfAg4nIjZ .cloneditem-4,
.cid-scfAg4nIjZ .cloneditem-5 {
  display: none;
}
.cid-scfAg4nIjZ .col-lg-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-scfAg4nIjZ .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-scfAg4nIjZ .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-scfAg4nIjZ .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-scfAg4nIjZ .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-scfAg4nIjZ .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-scfAg4nIjZ .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-scfAg4nIjZ .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-scfAg4nIjZ .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-scfAg4nIjZ .carousel-inner.slides2 .cloneditem-1,
  .cid-scfAg4nIjZ .carousel-inner.slides2 .cloneditem-2,
  .cid-scfAg4nIjZ .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-scfAg4nIjZ .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-scfAg4nIjZ .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-scfAg4nIjZ .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-scfAg4nIjZ .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-scfAg4nIjZ .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-scfAg4nIjZ .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-scfAg4nIjZ .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-scfAg4nIjZ .carousel-inner.slides3 .cloneditem-1,
  .cid-scfAg4nIjZ .carousel-inner.slides3 .cloneditem-2,
  .cid-scfAg4nIjZ .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-scfAg4nIjZ .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-scfAg4nIjZ .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-scfAg4nIjZ .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-scfAg4nIjZ .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-scfAg4nIjZ .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-scfAg4nIjZ .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-scfAg4nIjZ .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-scfAg4nIjZ .carousel-inner.slides4 .cloneditem-1,
  .cid-scfAg4nIjZ .carousel-inner.slides4 .cloneditem-2,
  .cid-scfAg4nIjZ .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-scfAg4nIjZ .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-scfAg4nIjZ .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-scfAg4nIjZ .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-scfAg4nIjZ .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-scfAg4nIjZ .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-scfAg4nIjZ .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-scfAg4nIjZ .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-scfAg4nIjZ .carousel-inner.slides5 .cloneditem-1,
  .cid-scfAg4nIjZ .carousel-inner.slides5 .cloneditem-2,
  .cid-scfAg4nIjZ .carousel-inner.slides5 .cloneditem-3,
  .cid-scfAg4nIjZ .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-scfAg4nIjZ .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-scfAg4nIjZ .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-scfAg4nIjZ .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-scfAg4nIjZ .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-scfAg4nIjZ .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-scfAg4nIjZ .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-scfAg4nIjZ .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-scfAg4nIjZ .carousel-inner.slides6 .cloneditem-1,
  .cid-scfAg4nIjZ .carousel-inner.slides6 .cloneditem-2,
  .cid-scfAg4nIjZ .carousel-inner.slides6 .cloneditem-3,
  .cid-scfAg4nIjZ .carousel-inner.slides6 .cloneditem-4,
  .cid-scfAg4nIjZ .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-scfAg4nIjZ H2 {
  text-align: center;
  color: #ffffff;
}
.cid-uWWDY0TGeW {
  padding-top: 180px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/sponsors-logo-2000x317.png");
}
.cid-uWWDY0TGeW .row {
  position: relative;
}
.cid-uWWDY0TGeW .container {
  max-width: 1500px;
}
.cid-uWWDY0TGeW h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-uWWDY0TGeW .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-uWWDY0TGeW .container {
    padding: 0 4rem;
  }
}
.cid-uWWDY0TGeW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWWDY0TGeW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS9JRv3p6c {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-uS9JRv3p6c img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-uS9JRv3p6c img:hover {
  transform: scale(1.1);
}
.cid-uS9JRv3p6c .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-uS9JRv3p6c h2 {
  padding: 0;
  margin: 0;
}
.cid-uS9JRv3p6c .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uS9JRv3p6c .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-uS9JRv3p6c .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-uS9JRv3p6c .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 300px;
}
.cid-uS9JRv3p6c .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-uS9JRv3p6c .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0 !important;
}
.cid-uS9JRv3p6c .mbr-iconfont {
  margin: 0 !important;
}
.cid-uS9JRv3p6c .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-uS9JRv3p6c .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uS9JRv3p6c .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-uS9JRv3p6c .btn {
    padding: 0.6rem 0.8rem !important;
    min-width: 200px !important;
  }
  .cid-uS9JRv3p6c .text-col {
    padding: 2rem 1rem;
  }
}
.cid-uS9JRv3p6c H2 {
  color: #333333;
}
.cid-uS9JRv3p6c .mbr-text {
  color: #ffffff;
}
.cid-uS9JRv3p6c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS9JRv3p6c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS9JRv3p6c H1 {
  color: #ffffff;
}
.cid-uS9LAEblJf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-uS9LAEblJf img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-uS9LAEblJf img:hover {
  transform: scale(1.1);
}
.cid-uS9LAEblJf .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-uS9LAEblJf h2 {
  padding: 0;
  margin: 0;
}
.cid-uS9LAEblJf .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uS9LAEblJf .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-uS9LAEblJf .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-uS9LAEblJf .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-uS9LAEblJf .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-uS9LAEblJf .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uS9LAEblJf .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-uS9LAEblJf .text-col {
    padding: 2rem 1rem;
  }
}
.cid-uS9LAEblJf H2 {
  color: #333333;
}
.cid-uS9LAEblJf .mbr-text {
  color: #ffffff;
}
.cid-uS9LAEblJf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS9LAEblJf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS9LAEblJf H1 {
  color: #ffffff;
}
.cid-uS9OV3fRkH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-uS9OV3fRkH img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-uS9OV3fRkH img:hover {
  transform: scale(1.1);
}
.cid-uS9OV3fRkH .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-uS9OV3fRkH h2 {
  padding: 0;
  margin: 0;
}
.cid-uS9OV3fRkH .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uS9OV3fRkH .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-uS9OV3fRkH .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-uS9OV3fRkH .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 300px;
}
.cid-uS9OV3fRkH .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-uS9OV3fRkH .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0 !important;
}
.cid-uS9OV3fRkH .mbr-iconfont {
  margin: 0 !important;
}
.cid-uS9OV3fRkH .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-uS9OV3fRkH .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uS9OV3fRkH .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-uS9OV3fRkH .btn {
    padding: 0.6rem 0.8rem !important;
    min-width: 200px !important;
  }
  .cid-uS9OV3fRkH .text-col {
    padding: 2rem 1rem;
  }
}
.cid-uS9OV3fRkH H2 {
  color: #333333;
}
.cid-uS9OV3fRkH .mbr-text {
  color: #ffffff;
}
.cid-uS9OV3fRkH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS9OV3fRkH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS9OV3fRkH H1 {
  color: #ffffff;
}
.cid-uS9S6Vlm0b {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-uS9S6Vlm0b img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-uS9S6Vlm0b img:hover {
  transform: scale(1.1);
}
.cid-uS9S6Vlm0b .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-uS9S6Vlm0b h2 {
  padding: 0;
  margin: 0;
}
.cid-uS9S6Vlm0b .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uS9S6Vlm0b .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-uS9S6Vlm0b .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-uS9S6Vlm0b .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-uS9S6Vlm0b .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-uS9S6Vlm0b .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uS9S6Vlm0b .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-uS9S6Vlm0b .text-col {
    padding: 2rem 1rem;
  }
}
.cid-uS9S6Vlm0b H2 {
  color: #333333;
}
.cid-uS9S6Vlm0b .mbr-text {
  color: #ffffff;
}
.cid-uS9S6Vlm0b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS9S6Vlm0b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS9S6Vlm0b H1 {
  color: #ffffff;
}
.cid-uS9T2KnYG5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-uS9T2KnYG5 img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-uS9T2KnYG5 img:hover {
  transform: scale(1.1);
}
.cid-uS9T2KnYG5 .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-uS9T2KnYG5 h2 {
  padding: 0;
  margin: 0;
}
.cid-uS9T2KnYG5 .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uS9T2KnYG5 .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-uS9T2KnYG5 .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-uS9T2KnYG5 .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 300px;
}
.cid-uS9T2KnYG5 .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-uS9T2KnYG5 .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0 !important;
}
.cid-uS9T2KnYG5 .mbr-iconfont {
  margin: 0 !important;
}
.cid-uS9T2KnYG5 .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-uS9T2KnYG5 .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uS9T2KnYG5 .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-uS9T2KnYG5 .btn {
    padding: 0.6rem 0.8rem !important;
    min-width: 200px !important;
  }
  .cid-uS9T2KnYG5 .text-col {
    padding: 2rem 1rem;
  }
}
.cid-uS9T2KnYG5 H2 {
  color: #333333;
}
.cid-uS9T2KnYG5 .mbr-text {
  color: #ffffff;
}
.cid-uS9T2KnYG5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS9T2KnYG5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS9T2KnYG5 H1 {
  color: #ffffff;
}
.cid-uS9TX9vk9W {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-uS9TX9vk9W img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-uS9TX9vk9W img:hover {
  transform: scale(1.1);
}
.cid-uS9TX9vk9W .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-uS9TX9vk9W h2 {
  padding: 0;
  margin: 0;
}
.cid-uS9TX9vk9W .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uS9TX9vk9W .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-uS9TX9vk9W .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-uS9TX9vk9W .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-uS9TX9vk9W .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-uS9TX9vk9W .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uS9TX9vk9W .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-uS9TX9vk9W .text-col {
    padding: 2rem 1rem;
  }
}
.cid-uS9TX9vk9W H2 {
  color: #333333;
}
.cid-uS9TX9vk9W .mbr-text {
  color: #ffffff;
}
.cid-uS9TX9vk9W .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS9TX9vk9W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS9TX9vk9W H1 {
  color: #ffffff;
}
.cid-uS9VIYAFUz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-uS9VIYAFUz img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-uS9VIYAFUz img:hover {
  transform: scale(1.1);
}
.cid-uS9VIYAFUz .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-uS9VIYAFUz h2 {
  padding: 0;
  margin: 0;
}
.cid-uS9VIYAFUz .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uS9VIYAFUz .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-uS9VIYAFUz .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-uS9VIYAFUz .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 300px;
}
.cid-uS9VIYAFUz .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-uS9VIYAFUz .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0 !important;
}
.cid-uS9VIYAFUz .mbr-iconfont {
  margin: 0 !important;
}
.cid-uS9VIYAFUz .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-uS9VIYAFUz .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uS9VIYAFUz .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-uS9VIYAFUz .btn {
    padding: 0.6rem 0.8rem !important;
    min-width: 200px !important;
  }
  .cid-uS9VIYAFUz .text-col {
    padding: 2rem 1rem;
  }
}
.cid-uS9VIYAFUz H2 {
  color: #333333;
}
.cid-uS9VIYAFUz .mbr-text {
  color: #ffffff;
}
.cid-uS9VIYAFUz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS9VIYAFUz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS9VIYAFUz H1 {
  color: #ffffff;
}
.cid-uS9WemTQwm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-uS9WemTQwm img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-uS9WemTQwm img:hover {
  transform: scale(1.1);
}
.cid-uS9WemTQwm .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-uS9WemTQwm h2 {
  padding: 0;
  margin: 0;
}
.cid-uS9WemTQwm .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uS9WemTQwm .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-uS9WemTQwm .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-uS9WemTQwm .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-uS9WemTQwm .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-uS9WemTQwm .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uS9WemTQwm .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-uS9WemTQwm .text-col {
    padding: 2rem 1rem;
  }
}
.cid-uS9WemTQwm H2 {
  color: #333333;
}
.cid-uS9WemTQwm .mbr-text {
  color: #ffffff;
}
.cid-uS9WemTQwm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS9WemTQwm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS9WemTQwm H1 {
  color: #ffffff;
}
.cid-uSa0I0eCLL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-uSa0I0eCLL img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-uSa0I0eCLL img:hover {
  transform: scale(1.1);
}
.cid-uSa0I0eCLL .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-uSa0I0eCLL h2 {
  padding: 0;
  margin: 0;
}
.cid-uSa0I0eCLL .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSa0I0eCLL .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-uSa0I0eCLL .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-uSa0I0eCLL .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 300px;
}
.cid-uSa0I0eCLL .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-uSa0I0eCLL .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0 !important;
}
.cid-uSa0I0eCLL .mbr-iconfont {
  margin: 0 !important;
}
.cid-uSa0I0eCLL .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-uSa0I0eCLL .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uSa0I0eCLL .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-uSa0I0eCLL .btn {
    padding: 0.6rem 0.8rem !important;
    min-width: 200px !important;
  }
  .cid-uSa0I0eCLL .text-col {
    padding: 2rem 1rem;
  }
}
.cid-uSa0I0eCLL H2 {
  color: #333333;
}
.cid-uSa0I0eCLL .mbr-text {
  color: #ffffff;
}
.cid-uSa0I0eCLL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSa0I0eCLL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSa0I0eCLL H1 {
  color: #ffffff;
}
.cid-uTKLX0rZ4r {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-uTKLX0rZ4r .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uTKLX0rZ4r .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uTKLX0rZ4r .photo-split {
  padding: 0;
}
.cid-uTKLX0rZ4r .photo-split img {
  width: 100%;
}
.cid-uTKLX0rZ4r .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-uTKLX0rZ4r .counter-container ul {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uTKLX0rZ4r .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-uTKLX0rZ4r .counter-container ul li:before {
  color: #ffbc00;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  transition: all .2s;
  width: 25px;
  height: 25px;
}
.cid-uTKLX0rZ4r .wrap-block {
  padding: 3rem 3rem;
}
.cid-uTKLX0rZ4r .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-uTKLX0rZ4r .wrap-block ul li {
  display: inline-block;
}
.cid-uTKLX0rZ4r .wrap-block ul li span {
  text-align: center;
}
.cid-uTKLX0rZ4r .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-uTKLX0rZ4r .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uTKLX0rZ4r .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uTKLX0rZ4r .mbr-list,
.cid-uTKLX0rZ4r .social-media UL {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-uTKLX0rZ4r .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uTKLX0rZ4r .mbr-section-title,
  .cid-uTKLX0rZ4r .mbr-section-subtitle,
  .cid-uTKLX0rZ4r .mbr-text {
    text-align: center !important;
  }
  .cid-uTKLX0rZ4r .social-list {
    text-align: center !important;
  }
}
.cid-uTKLX0rZ4r .mbr-list,
.cid-uTKLX0rZ4r .social-media {
  color: #767676;
}
.cid-uTKLX0rZ4r .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uTKLX0rZ4r .mbr-section-title {
  color: #ffffff;
}
.cid-uTKR0X7QB4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-uTKR0X7QB4 .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uTKR0X7QB4 .photo-split {
  padding: 0;
}
.cid-uTKR0X7QB4 .photo-split img {
  width: 100%;
}
.cid-uTKR0X7QB4 .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-uTKR0X7QB4 .counter-container ul {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uTKR0X7QB4 .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-uTKR0X7QB4 .counter-container ul li:before {
  color: #ffbc00;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  transition: all .2s;
  width: 25px;
  height: 25px;
}
.cid-uTKR0X7QB4 .wrap-block {
  padding: 3rem 3rem;
}
.cid-uTKR0X7QB4 .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-uTKR0X7QB4 .wrap-block ul li {
  display: inline-block;
}
.cid-uTKR0X7QB4 .wrap-block ul li span {
  text-align: center;
}
.cid-uTKR0X7QB4 .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-uTKR0X7QB4 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uTKR0X7QB4 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uTKR0X7QB4 .mbr-list,
.cid-uTKR0X7QB4 .social-media UL {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-uTKR0X7QB4 .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uTKR0X7QB4 .mbr-section-title,
  .cid-uTKR0X7QB4 .mbr-section-subtitle,
  .cid-uTKR0X7QB4 .mbr-text {
    text-align: center !important;
  }
  .cid-uTKR0X7QB4 .social-list {
    text-align: center !important;
  }
}
.cid-uTKR0X7QB4 .mbr-list,
.cid-uTKR0X7QB4 .social-media {
  color: #767676;
}
.cid-uTKR0X7QB4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uTKR0X7QB4 .mbr-section-title {
  color: #ffffff;
}
.cid-ul9syerr4S {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-ul9syerr4S .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-ul9syerr4S .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ul9syerr4S .photo-split {
  padding: 0;
}
.cid-ul9syerr4S .photo-split img {
  width: 100%;
}
.cid-ul9syerr4S .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-ul9syerr4S .counter-container ul {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-ul9syerr4S .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-ul9syerr4S .counter-container ul li:before {
  color: #ffbc00;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  transition: all .2s;
  width: 25px;
  height: 25px;
}
.cid-ul9syerr4S .wrap-block {
  padding: 3rem 3rem;
}
.cid-ul9syerr4S .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-ul9syerr4S .wrap-block ul li {
  display: inline-block;
}
.cid-ul9syerr4S .wrap-block ul li span {
  text-align: center;
}
.cid-ul9syerr4S .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-ul9syerr4S .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-ul9syerr4S .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-ul9syerr4S .mbr-list,
.cid-ul9syerr4S .social-media UL {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-ul9syerr4S .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ul9syerr4S .mbr-section-title,
  .cid-ul9syerr4S .mbr-section-subtitle,
  .cid-ul9syerr4S .mbr-text {
    text-align: center !important;
  }
  .cid-ul9syerr4S .social-list {
    text-align: center !important;
  }
}
.cid-ul9syerr4S .mbr-list,
.cid-ul9syerr4S .social-media {
  color: #767676;
}
.cid-ul9syerr4S .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ul9syerr4S .mbr-section-title {
  color: #ffffff;
}
.cid-tc2LzpcqAK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/md4a6708-2000x1333.jpg");
}
.cid-tc2LzpcqAK .container-fluid {
  padding: 0 3rem;
}
.cid-tc2LzpcqAK .card {
  display: block;
}
.cid-tc2LzpcqAK .card .card-wrapper {
  height: 1%;
}
.cid-tc2LzpcqAK .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-tc2LzpcqAK .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tc2LzpcqAK .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-tc2LzpcqAK .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-tc2LzpcqAK .container-fluid {
    padding: 0 1rem;
  }
  .cid-tc2LzpcqAK .text-row {
    padding-bottom: 1rem;
  }
}
.cid-tc2LzpcqAK .mbr-section-subtitle,
.cid-tc2LzpcqAK .title-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tc2LzpcqAK .mbr-text,
.cid-tc2LzpcqAK .card-btn {
  color: #ffffff;
}
.cid-sL3TebKOFn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/md4a6708-2000x1333.jpg");
}
.cid-sL3TebKOFn .container-fluid {
  padding: 0 3rem;
}
.cid-sL3TebKOFn .card {
  display: block;
}
.cid-sL3TebKOFn .card .card-wrapper {
  height: 1%;
}
.cid-sL3TebKOFn .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-sL3TebKOFn .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sL3TebKOFn .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-sL3TebKOFn .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-sL3TebKOFn .container-fluid {
    padding: 0 1rem;
  }
  .cid-sL3TebKOFn .text-row {
    padding-bottom: 1rem;
  }
}
.cid-sL3TebKOFn .mbr-section-subtitle,
.cid-sL3TebKOFn .title-btn {
  color: #ffffff;
}
.cid-sL4cO8eVdH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/md4a6708-2000x1333.jpg");
}
.cid-sL4cO8eVdH .container-fluid {
  padding: 0 3rem;
}
.cid-sL4cO8eVdH .card {
  display: block;
}
.cid-sL4cO8eVdH .card .card-wrapper {
  height: 1%;
}
.cid-sL4cO8eVdH .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-sL4cO8eVdH .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sL4cO8eVdH .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-sL4cO8eVdH .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-sL4cO8eVdH .container-fluid {
    padding: 0 1rem;
  }
  .cid-sL4cO8eVdH .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uqBUyRDYPa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/md4a6708-1-2000x1333.jpg");
}
.cid-uqBUyRDYPa .container-fluid {
  padding: 0 3rem;
}
.cid-uqBUyRDYPa .card {
  display: block;
}
.cid-uqBUyRDYPa .card .card-wrapper {
  height: 1%;
}
.cid-uqBUyRDYPa .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-uqBUyRDYPa .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-uqBUyRDYPa .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-uqBUyRDYPa .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-uqBUyRDYPa .container-fluid {
    padding: 0 1rem;
  }
  .cid-uqBUyRDYPa .text-row {
    padding-bottom: 1rem;
  }
}
.cid-ursF8nkbb8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/md4a6708-1-2000x1333.jpg");
}
.cid-ursF8nkbb8 .container-fluid {
  padding: 0 3rem;
}
.cid-ursF8nkbb8 .card {
  display: block;
}
.cid-ursF8nkbb8 .card .card-wrapper {
  height: 1%;
}
.cid-ursF8nkbb8 .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-ursF8nkbb8 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-ursF8nkbb8 .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-ursF8nkbb8 .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-ursF8nkbb8 .container-fluid {
    padding: 0 1rem;
  }
  .cid-ursF8nkbb8 .text-row {
    padding-bottom: 1rem;
  }
}
.cid-uSadHOcl6o {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  position: relative;
  background-image: url("../../../assets/images/img-6663-2000x1333.jpg");
}
.cid-uSadHOcl6o .decor-wrap_1 {
  position: absolute;
  top: -65%;
  right: -10rem;
  width: 474px;
  height: 474px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #073b4c 0, #073b4c 43%, #073b4c 100%);
}
.cid-uSadHOcl6o .decor-wrap_2 {
  position: absolute;
  bottom: -25%;
  left: -2rem;
  width: 254px;
  height: 254px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #073b4c 0, #073b4c 43%, #073b4c 100%);
}
.cid-uSadHOcl6o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSadHOcl6o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSadHOcl6o .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uSadHOcl6o .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uSadHOcl6o .container {
    padding: 0 30px;
  }
}
.cid-uSadHOcl6o .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uSadHOcl6o .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uSadHOcl6o .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uSadHOcl6o .text-wrapper {
  border-left: 1px solid #ffffff;
  padding-left: 40px;
}
@media (max-width: 992px) {
  .cid-uSadHOcl6o .text-wrapper {
    padding-left: 20px;
  }
}
.cid-uSadHOcl6o .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uSadHOcl6o .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uSadHOcl6o .mbr-text {
  color: #ffffff;
}
.cid-uSaelhXDQn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  position: relative;
  background-image: url("../../../assets/images/img-6584-2000x1333.jpg");
}
.cid-uSaelhXDQn .decor-wrap_1 {
  position: absolute;
  top: -65%;
  right: -10rem;
  width: 474px;
  height: 474px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #073b4c 0, #073b4c 43%, #073b4c 100%);
}
.cid-uSaelhXDQn .decor-wrap_2 {
  position: absolute;
  bottom: -25%;
  left: -2rem;
  width: 254px;
  height: 254px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #073b4c 0, #073b4c 43%, #073b4c 100%);
}
.cid-uSaelhXDQn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSaelhXDQn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSaelhXDQn .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uSaelhXDQn .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uSaelhXDQn .container {
    padding: 0 30px;
  }
}
.cid-uSaelhXDQn .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uSaelhXDQn .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uSaelhXDQn .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uSaelhXDQn .text-wrapper {
  border-left: 1px solid #ffffff;
  padding-left: 40px;
}
@media (max-width: 992px) {
  .cid-uSaelhXDQn .text-wrapper {
    padding-left: 20px;
  }
}
.cid-uSaelhXDQn .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uSaelhXDQn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uSaelhXDQn .mbr-text {
  color: #ffffff;
}
.cid-uSaeEkDbzs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  position: relative;
  background-image: url("../../../assets/images/img-6663-2000x1333.jpg");
}
.cid-uSaeEkDbzs .decor-wrap_1 {
  position: absolute;
  top: -65%;
  right: -10rem;
  width: 474px;
  height: 474px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #073b4c 0, #073b4c 43%, #073b4c 100%);
}
.cid-uSaeEkDbzs .decor-wrap_2 {
  position: absolute;
  bottom: -25%;
  left: -2rem;
  width: 254px;
  height: 254px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #073b4c 0, #073b4c 43%, #073b4c 100%);
}
.cid-uSaeEkDbzs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSaeEkDbzs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSaeEkDbzs .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uSaeEkDbzs .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uSaeEkDbzs .container {
    padding: 0 30px;
  }
}
.cid-uSaeEkDbzs .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uSaeEkDbzs .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uSaeEkDbzs .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uSaeEkDbzs .text-wrapper {
  border-left: 1px solid #ffffff;
  padding-left: 40px;
}
@media (max-width: 992px) {
  .cid-uSaeEkDbzs .text-wrapper {
    padding-left: 20px;
  }
}
.cid-uSaeEkDbzs .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uSaeEkDbzs .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uSaeEkDbzs .mbr-text {
  color: #ffffff;
}
.cid-uSagdeposg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #073b4c;
  overflow: hidden;
}
.cid-uSagdeposg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSagdeposg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSagdeposg .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uSagdeposg .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uSagdeposg .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uSagdeposg .container {
    padding: 0 22px;
  }
}
.cid-uSagdeposg .card {
  justify-content: center;
}
.cid-uSagdeposg .content-wrapper {
  padding-right: 32px;
  padding-right: 0;
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-uSagdeposg .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uSagdeposg .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uSagdeposg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uSagdeposg .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uSagdeposg .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uSagdeposg .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #0f7699;
}
@media (max-width: 1440px) {
  .cid-uSagdeposg .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uSagdeposg .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uSagdeposg .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uSagdeposg .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uSagdeposg .mbr-section-title {
  color: #ffffff;
}
.cid-uSagdeposg .mbr-text {
  color: #ffffff;
}
.cid-scg2F7FRvZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-scg2F7FRvZ .carousel-control {
  background: #000;
}
.cid-scg2F7FRvZ .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-scg2F7FRvZ .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-scg2F7FRvZ .carousel-item .wrap-img {
  text-align: center;
}
.cid-scg2F7FRvZ .carousel-item .wrap-img img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-scg2F7FRvZ .carousel-controls {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-scg2F7FRvZ .carousel-controls .carousel-control {
  background: #000;
  border-radius: 50%;
  position: static;
  width: 40px;
  height: 40px;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-scg2F7FRvZ .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-scg2F7FRvZ .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-scg2F7FRvZ .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-scg2F7FRvZ .cloneditem-1,
.cid-scg2F7FRvZ .cloneditem-2,
.cid-scg2F7FRvZ .cloneditem-3,
.cid-scg2F7FRvZ .cloneditem-4,
.cid-scg2F7FRvZ .cloneditem-5 {
  display: none;
}
.cid-scg2F7FRvZ .col-lg-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-scg2F7FRvZ .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-scg2F7FRvZ .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-scg2F7FRvZ .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-scg2F7FRvZ .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-scg2F7FRvZ .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-scg2F7FRvZ .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-scg2F7FRvZ .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-scg2F7FRvZ .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-scg2F7FRvZ .carousel-inner.slides2 .cloneditem-1,
  .cid-scg2F7FRvZ .carousel-inner.slides2 .cloneditem-2,
  .cid-scg2F7FRvZ .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-scg2F7FRvZ .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-scg2F7FRvZ .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-scg2F7FRvZ .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-scg2F7FRvZ .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-scg2F7FRvZ .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-scg2F7FRvZ .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-scg2F7FRvZ .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-scg2F7FRvZ .carousel-inner.slides3 .cloneditem-1,
  .cid-scg2F7FRvZ .carousel-inner.slides3 .cloneditem-2,
  .cid-scg2F7FRvZ .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-scg2F7FRvZ .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-scg2F7FRvZ .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-scg2F7FRvZ .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-scg2F7FRvZ .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-scg2F7FRvZ .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-scg2F7FRvZ .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-scg2F7FRvZ .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-scg2F7FRvZ .carousel-inner.slides4 .cloneditem-1,
  .cid-scg2F7FRvZ .carousel-inner.slides4 .cloneditem-2,
  .cid-scg2F7FRvZ .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-scg2F7FRvZ .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-scg2F7FRvZ .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-scg2F7FRvZ .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-scg2F7FRvZ .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-scg2F7FRvZ .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-scg2F7FRvZ .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-scg2F7FRvZ .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-scg2F7FRvZ .carousel-inner.slides5 .cloneditem-1,
  .cid-scg2F7FRvZ .carousel-inner.slides5 .cloneditem-2,
  .cid-scg2F7FRvZ .carousel-inner.slides5 .cloneditem-3,
  .cid-scg2F7FRvZ .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-scg2F7FRvZ .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-scg2F7FRvZ .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-scg2F7FRvZ .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-scg2F7FRvZ .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-scg2F7FRvZ .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-scg2F7FRvZ .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-scg2F7FRvZ .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-scg2F7FRvZ .carousel-inner.slides6 .cloneditem-1,
  .cid-scg2F7FRvZ .carousel-inner.slides6 .cloneditem-2,
  .cid-scg2F7FRvZ .carousel-inner.slides6 .cloneditem-3,
  .cid-scg2F7FRvZ .carousel-inner.slides6 .cloneditem-4,
  .cid-scg2F7FRvZ .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-scg2F7FRvZ H2 {
  text-align: center;
  color: #282124;
}
.cid-thzXdrbHmh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-thzXdrbHmh .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #073b4c;
}
.cid-thzXdrbHmh img {
  width: 100%;
}
.cid-thzXdrbHmh p {
  margin-top: 6rem;
}
.cid-thzXdrbHmh .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-thzXdrbHmh h4 {
  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-thzXdrbHmh .content-wrapper {
    padding-top: 0rem;
  }
  .cid-thzXdrbHmh p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-thzXdrbHmh .back {
    width: 100%;
    height: 75%;
  }
  .cid-thzXdrbHmh .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-thzXdrbHmh p {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-thzXdrbHmh .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-thzXdrbHmh h4 {
    right: 2rem;
  }
}
.cid-thzXdrbHmh .mbr-fallback-image.disabled {
  display: none;
}
.cid-thzXdrbHmh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thzXdrbHmh .mbr-text,
.cid-thzXdrbHmh .mbr-section-btn {
  color: #ffffff;
}
.cid-thzXdrbHmh H3 {
  color: #ffffff;
}
.cid-thzXdrbHmh H1 {
  color: #ffffff;
}
.cid-tjce4MSjEc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tjce4MSjEc .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #073b4c;
}
.cid-tjce4MSjEc img {
  width: 100%;
}
.cid-tjce4MSjEc p {
  margin-top: 6rem;
}
.cid-tjce4MSjEc .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-tjce4MSjEc h4 {
  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-tjce4MSjEc .content-wrapper {
    padding-top: 0rem;
  }
  .cid-tjce4MSjEc p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tjce4MSjEc .back {
    width: 100%;
    height: 75%;
  }
  .cid-tjce4MSjEc .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-tjce4MSjEc p {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tjce4MSjEc .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-tjce4MSjEc h4 {
    right: 2rem;
  }
}
.cid-tjce4MSjEc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjce4MSjEc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjce4MSjEc .mbr-text,
.cid-tjce4MSjEc .mbr-section-btn {
  color: #ffffff;
}
.cid-tjce4MSjEc H3 {
  color: #ffffff;
}
.cid-tjce4MSjEc H1 {
  color: #ffffff;
}
.cid-tQAYuzHbBS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tQAYuzHbBS .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #073b4c;
}
.cid-tQAYuzHbBS img {
  width: 100%;
}
.cid-tQAYuzHbBS p {
  margin-top: 6rem;
}
.cid-tQAYuzHbBS .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-tQAYuzHbBS h4 {
  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-tQAYuzHbBS .content-wrapper {
    padding-top: 0rem;
  }
  .cid-tQAYuzHbBS p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tQAYuzHbBS .back {
    width: 100%;
    height: 75%;
  }
  .cid-tQAYuzHbBS .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-tQAYuzHbBS p {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tQAYuzHbBS .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-tQAYuzHbBS h4 {
    right: 2rem;
  }
}
.cid-tQAYuzHbBS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQAYuzHbBS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQAYuzHbBS .mbr-text,
.cid-tQAYuzHbBS .mbr-section-btn {
  color: #ffffff;
}
.cid-tQAYuzHbBS H3 {
  color: #ffffff;
}
.cid-tQAYuzHbBS H1 {
  color: #ffffff;
}
.cid-tkfvos4fqv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tkfvos4fqv .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #073b4c;
}
.cid-tkfvos4fqv img {
  width: 100%;
}
.cid-tkfvos4fqv p {
  margin-top: 6rem;
}
.cid-tkfvos4fqv .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-tkfvos4fqv h4 {
  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-tkfvos4fqv .content-wrapper {
    padding-top: 0rem;
  }
  .cid-tkfvos4fqv p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tkfvos4fqv .back {
    width: 100%;
    height: 75%;
  }
  .cid-tkfvos4fqv .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-tkfvos4fqv p {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tkfvos4fqv .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-tkfvos4fqv h4 {
    right: 2rem;
  }
}
.cid-tkfvos4fqv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkfvos4fqv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tkfvos4fqv .mbr-text,
.cid-tkfvos4fqv .mbr-section-btn {
  color: #ffffff;
}
.cid-tkfvos4fqv H3 {
  color: #ffffff;
}
.cid-tkfvos4fqv H1 {
  color: #ffffff;
}
.cid-tmAeeLoCix {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tmAeeLoCix .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #073b4c;
}
.cid-tmAeeLoCix img {
  width: 100%;
}
.cid-tmAeeLoCix p {
  margin-top: 6rem;
}
.cid-tmAeeLoCix .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-tmAeeLoCix h4 {
  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-tmAeeLoCix .content-wrapper {
    padding-top: 0rem;
  }
  .cid-tmAeeLoCix p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tmAeeLoCix .back {
    width: 100%;
    height: 75%;
  }
  .cid-tmAeeLoCix .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-tmAeeLoCix p {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tmAeeLoCix .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-tmAeeLoCix h4 {
    right: 2rem;
  }
}
.cid-tmAeeLoCix .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmAeeLoCix .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmAeeLoCix .mbr-text,
.cid-tmAeeLoCix .mbr-section-btn {
  color: #ffffff;
}
.cid-tmAeeLoCix H3 {
  color: #ffffff;
}
.cid-tmAeeLoCix H1 {
  color: #ffffff;
}
.cid-tgmPZmV1KE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tgmPZmV1KE .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #073b4c;
}
.cid-tgmPZmV1KE img {
  width: 100%;
}
.cid-tgmPZmV1KE p {
  margin-top: 6rem;
}
.cid-tgmPZmV1KE .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-tgmPZmV1KE h4 {
  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-tgmPZmV1KE .content-wrapper {
    padding-top: 0rem;
  }
  .cid-tgmPZmV1KE p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tgmPZmV1KE .back {
    width: 100%;
    height: 75%;
  }
  .cid-tgmPZmV1KE .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-tgmPZmV1KE p {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tgmPZmV1KE .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-tgmPZmV1KE h4 {
    right: 2rem;
  }
}
.cid-tgmPZmV1KE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgmPZmV1KE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgmPZmV1KE .mbr-text,
.cid-tgmPZmV1KE .mbr-section-btn {
  color: #ffffff;
}
.cid-tgmPZmV1KE H3 {
  color: #ffffff;
}
.cid-tgmPZmV1KE H1 {
  color: #ffffff;
}
.cid-thZjvJNopQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-thZjvJNopQ .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #073b4c;
}
.cid-thZjvJNopQ img {
  width: 100%;
}
.cid-thZjvJNopQ p {
  margin-top: 6rem;
}
.cid-thZjvJNopQ .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-thZjvJNopQ h4 {
  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-thZjvJNopQ .content-wrapper {
    padding-top: 0rem;
  }
  .cid-thZjvJNopQ p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-thZjvJNopQ .back {
    width: 100%;
    height: 75%;
  }
  .cid-thZjvJNopQ .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-thZjvJNopQ p {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-thZjvJNopQ .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-thZjvJNopQ h4 {
    right: 2rem;
  }
}
.cid-thZjvJNopQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-thZjvJNopQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thZjvJNopQ .mbr-text,
.cid-thZjvJNopQ .mbr-section-btn {
  color: #ffffff;
}
.cid-thZjvJNopQ H3 {
  color: #ffffff;
}
.cid-thZjvJNopQ H1 {
  color: #ffffff;
}
.cid-uuyNbBnCbA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uuyNbBnCbA .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #073b4c;
}
.cid-uuyNbBnCbA img {
  width: 100%;
}
.cid-uuyNbBnCbA p {
  margin-top: 6rem;
}
.cid-uuyNbBnCbA .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-uuyNbBnCbA h4 {
  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-uuyNbBnCbA .content-wrapper {
    padding-top: 0rem;
  }
  .cid-uuyNbBnCbA p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-uuyNbBnCbA .back {
    width: 100%;
    height: 75%;
  }
  .cid-uuyNbBnCbA .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-uuyNbBnCbA p {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uuyNbBnCbA .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-uuyNbBnCbA h4 {
    right: 2rem;
  }
}
.cid-uuyNbBnCbA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuyNbBnCbA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuyNbBnCbA .mbr-text,
.cid-uuyNbBnCbA .mbr-section-btn {
  color: #ffffff;
}
.cid-uuyNbBnCbA H3 {
  color: #ffffff;
}
.cid-uuyNbBnCbA H1 {
  color: #ffffff;
}
.cid-tQAXDO4Sip {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tQAXDO4Sip .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #073b4c;
}
.cid-tQAXDO4Sip img {
  width: 100%;
}
.cid-tQAXDO4Sip p {
  margin-top: 6rem;
}
.cid-tQAXDO4Sip .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-tQAXDO4Sip h4 {
  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-tQAXDO4Sip .content-wrapper {
    padding-top: 0rem;
  }
  .cid-tQAXDO4Sip p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tQAXDO4Sip .back {
    width: 100%;
    height: 75%;
  }
  .cid-tQAXDO4Sip .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-tQAXDO4Sip p {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tQAXDO4Sip .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-tQAXDO4Sip h4 {
    right: 2rem;
  }
}
.cid-tQAXDO4Sip .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQAXDO4Sip .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQAXDO4Sip .mbr-text,
.cid-tQAXDO4Sip .mbr-section-btn {
  color: #ffffff;
}
.cid-tQAXDO4Sip H3 {
  color: #ffffff;
}
.cid-tQAXDO4Sip H1 {
  color: #ffffff;
}
.cid-scfZ5s8YO5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/md4a6708-2000x1333.jpg");
}
.cid-scfZ5s8YO5 .container {
  max-width: 1500px;
}
.cid-scfZ5s8YO5 img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-scfZ5s8YO5 img:hover {
  transform: scale(1.1);
}
.cid-scfZ5s8YO5 .row {
  background: #073b4c;
}
.cid-scfZ5s8YO5 .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-scfZ5s8YO5 h2 {
  padding: 0;
  margin: 0;
}
.cid-scfZ5s8YO5 .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-scfZ5s8YO5 .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-scfZ5s8YO5 .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-scfZ5s8YO5 .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-scfZ5s8YO5 .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-scfZ5s8YO5 .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-scfZ5s8YO5 .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-scfZ5s8YO5 .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-scfZ5s8YO5 .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-scfZ5s8YO5 .row {
    margin: 0rem;
  }
  .cid-scfZ5s8YO5 .text-col {
    padding: 2rem 1rem;
  }
  .cid-scfZ5s8YO5 .number {
    margin-right: 2rem;
  }
  .cid-scfZ5s8YO5 .img-col {
    margin-bottom: 3rem;
  }
}
.cid-scfZ5s8YO5 H2 {
  color: #ffffff;
}
.cid-scfZ5s8YO5 .mbr-text {
  color: #ffffff;
}
.cid-scg70ghdNI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/md4a6704-2000x1333.jpg");
}
.cid-scg70ghdNI .mbr-iconfont {
  font-size: 34px;
  transition: color .3s;
}
.cid-scg70ghdNI .mbr-section-title {
  margin: 0;
}
.cid-scg70ghdNI .card-img {
  text-align: center;
}
.cid-scg70ghdNI .row-item {
  padding-bottom: 2rem;
  padding: 5rem 2rem;
}
.cid-scg70ghdNI .row-item.card1 {
  background: #073b4c;
}
.cid-scg70ghdNI .row-item.card2 {
  background: #ffffff;
}
.cid-scg70ghdNI .row-item.card3 {
  background: #073b4c;
}
.cid-scg70ghdNI .row-item.card4 {
  background: #77862a;
}
.cid-scg70ghdNI .mbr-text {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-scg70ghdNI .card-img,
  .cid-scg70ghdNI .mbr-text,
  .cid-scg70ghdNI .mbr-card-title,
  .cid-scg70ghdNI .mbr-section-subtitle,
  .cid-scg70ghdNI .mbr-section-title,
  .cid-scg70ghdNI .underline {
    text-align: center !important;
  }
}
.cid-scg70ghdNI .card2 > .mbr-text,
.cid-scg70ghdNI .card2 > .mbr-section-btn {
  color: #073b4c;
  text-align: left;
}
.cid-scg70ghdNI .card3 > .mbr-text,
.cid-scg70ghdNI .card3 > .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-scg70ghdNI .card1 > .mbr-text,
.cid-scg70ghdNI .card1 > .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-scg70ghdNI .card4 > .mbr-text,
.cid-scg70ghdNI .card4 > .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-scg70ghdNI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tbQoPb25bK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #073b4c;
}
.cid-tbQoPb25bK .mbr-text,
.cid-tbQoPb25bK .ornament {
  text-align: left;
  color: #ffffff;
}
.cid-tSbPqIyD5E {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #073b4c;
}
.cid-tSbPqIyD5E .row {
  position: relative;
}
.cid-tSbPqIyD5E .container {
  max-width: 1500px;
}
.cid-tSbPqIyD5E h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-tSbPqIyD5E .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-tSbPqIyD5E .container {
    padding: 0 4rem;
  }
}
.cid-tSbPqIyD5E .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSbPqIyD5E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSbPqIyD5E H1 {
  text-align: left;
  color: #000000;
}
.cid-tSbPqIyD5E .mbr-text,
.cid-tSbPqIyD5E .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tSbPqIyD5E H3 {
  color: #ffffff;
  text-align: left;
}
.cid-tbQoQMHdBp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/img-4317-672x448.jpg");
}
.cid-tbQoQMHdBp .mbr-section-title {
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 2.5rem;
  text-align: left;
}
.cid-tbQoQMHdBp .tab-header {
  color: #ffffff;
}
.cid-tbQoQMHdBp .mbr-section-subtitle {
  font-weight: 500;
  margin-bottom: 2rem;
  color: #ffffff;
}
.cid-tbQoQMHdBp .mbr-element-title {
  margin-bottom: 1rem;
}
.cid-tbQoQMHdBp .card-img {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.cid-tbQoQMHdBp .card-img span {
  font-size: 50px;
}
.cid-tbQoQMHdBp .nav {
  border: none;
  margin-bottom: 3rem;
}
.cid-tbQoQMHdBp .nav-tabs {
  margin-top: 1rem;
  margin-bottom: 2rem;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tbQoQMHdBp .tabcont {
  z-index: 1;
  margin: 0;
}
.cid-tbQoQMHdBp .nav-item {
  margin-top: 1rem;
}
.cid-tbQoQMHdBp .tab-content-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0;
}
.cid-tbQoQMHdBp .tab-content {
  width: 100%;
}
.cid-tbQoQMHdBp .nav-tabs .nav-link {
  box-sizing: border-box;
  font-style: normal;
  font-weight: bold;
  padding: 1rem;
  margin: 0px -0.5px;
  transition: all .5s;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
  border-bottom: 1px solid #073b4c;
}
.cid-tbQoQMHdBp .nav-tabs .nav-link:hover {
  border-color: transparent;
  border-bottom: 1px solid #073b4c;
}
.cid-tbQoQMHdBp .nav-tabs .nav-link.active {
  border: 1px solid #073b4c;
  border-bottom: none;
  font-style: normal;
  background-color: transparent;
}
.cid-tbQoQMHdBp .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tbQoQMHdBp .mbr-section-text {
  text-align: center;
  color: #ffffff;
}
.cid-tIF86bafdS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/dsc-5963-700x464.jpg");
}
.cid-tIF86bafdS .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tIF86bafdS .mbr-section-subtitle {
  margin-top: 30px;
}
.cid-tIF86bafdS .title__block {
  padding-bottom: 40px;
}
.cid-tIF86bafdS .image {
  width: 100%;
  perspective: 700px;
}
.cid-tIF86bafdS .image img {
  transition: transform 0.5s;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.cid-tIF86bafdS .image img:hover {
  transform: rotateX(-10deg);
}
.cid-tIF86bafdS .text__block {
  margin-top: 25px;
}
.cid-tIF86bafdS .card__text {
  display: block;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 0;
  text-align: center;
}
.cid-tIF86bafdS .content__block {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tIF86bafdS .title__block {
    padding-bottom: 30px;
  }
}
.cid-tIF86bafdS .card__title DIV {
  text-align: center;
}
.cid-tIF86bafdS .card__title {
  text-align: left;
  color: #ffffff;
}
.cid-tIF86bafdS .mbr-section-title {
  color: #ffffff;
}
.cid-tbQoSpozL2 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/md4a6708-2-2000x1333.jpg");
}
.cid-tbQoSpozL2 .card-box {
  background-color: #073b4c;
  padding: 4rem 4rem;
  margin: 0.5rem;
  width: 100%;
}
@media (min-width: 767px) {
  .cid-tbQoSpozL2 .row {
    padding: 0 4rem;
  }
}
.cid-tbQoSpozL2 .container {
  max-width: 1500px;
}
.cid-tbQoSpozL2 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tbQoSpozL2 .mbr-iconfont {
  font-size: 3rem;
  color: #ffffff;
  padding-bottom: 2rem;
  display: block;
}
.cid-tbQoSpozL2 P {
  color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-tbQoSpozL2 .card-box {
    margin: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tbQoSpozL2 .card-box {
    padding: 2rem 1rem;
  }
}
.cid-tbQoSpozL2 .card-title {
  color: #ffffff;
}
.cid-tbQoTOOxPl {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/md4a6708-2-2000x1333.jpg");
}
.cid-tbQoTOOxPl .card-box {
  background-color: #073b4c;
  padding: 4rem 4rem;
  margin: 0.5rem;
  width: 100%;
}
@media (min-width: 767px) {
  .cid-tbQoTOOxPl .row {
    padding: 0 4rem;
  }
}
.cid-tbQoTOOxPl .container {
  max-width: 1500px;
}
.cid-tbQoTOOxPl .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tbQoTOOxPl .mbr-iconfont {
  font-size: 3rem;
  color: #ffffff;
  padding-bottom: 2rem;
  display: block;
}
.cid-tbQoTOOxPl P {
  color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-tbQoTOOxPl .card-box {
    margin: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tbQoTOOxPl .card-box {
    padding: 2rem 1rem;
  }
}
.cid-tbQoTOOxPl .card-title {
  color: #ffffff;
}
.cid-tbQoWiJZM6 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/md4a4667-2000x1333.jpg");
  overflow: hidden;
}
.cid-tbQoWiJZM6 H1 {
  color: #ffffff;
}
.cid-tbQoWiJZM6 .mbr-text,
.cid-tbQoWiJZM6 .mbr-section-btn {
  color: #ffffff;
}
.cid-tbQoWiJZM6 .img1 {
  box-shadow: 0 10px 55px 5px rgba(255, 102, 140, 0.35);
  border-radius: 10px;
}
.cid-tbQoWiJZM6 .relative {
  position: relative;
}
.cid-tbQoWiJZM6 .card-img {
  width: 100%;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
.cid-tbQoWiJZM6 .card-img2 {
  display: inline-block;
  width: 50%;
  float: left;
}
.cid-tbQoWiJZM6 .card-img2 .img2 {
  width: 120%;
}
.cid-tbQoWiJZM6 .card-img1 {
  display: inline-block;
  width: 50%;
  float: right;
}
.cid-tbQoWiJZM6 .card-img1 .img1 {
  width: 180%;
  transform: translateX(-45%);
}
.cid-tbQoWiJZM6 .img2 {
  box-shadow: 0 10px 55px 5px rgba(255, 102, 140, 0.35);
  margin-top: 4rem;
  object-fit: cover;
  position: relative;
  border-radius: 10px;
  animation: line 3s ease-in-out infinite;
}
.cid-tbQoXeXcG3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/md4a4675-972x648.jpg");
}
.cid-tbQoXeXcG3 .card-wrapper {
  position: relative;
  margin: 0.5rem;
}
.cid-tbQoXeXcG3 .card-wrapper:hover img {
  transform: scale(1.1);
}
@media (min-width: 767px) {
  .cid-tbQoXeXcG3 .row {
    padding: 0 4rem;
  }
}
@media (max-width: 1400px) {
  .cid-tbQoXeXcG3 .card-wrapper {
    margin: 0rem;
  }
}
.cid-tbQoXeXcG3 .card {
  height: fit-content;
}
.cid-tbQoXeXcG3 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  width: fit-content;
}
.cid-tbQoXeXcG3 .text-wrap {
  max-width: 400px;
}
.cid-tbQoXeXcG3 .icon {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1.5rem;
  transition: 0.3s;
  background: #073b4c;
}
.cid-tbQoXeXcG3 .icon:hover {
  padding-right: 1rem;
  padding-left: 2rem;
}
.cid-tbQoXeXcG3 .card-box {
  background-color: #073b4c;
  padding: 4rem 4rem 6rem 4rem;
  width: 100%;
}
.cid-tbQoXeXcG3 img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
}
.cid-tbQoXeXcG3 .img-wrap {
  max-height: 250px;
  overflow: hidden;
}
.cid-tbQoXeXcG3 .container {
  max-width: 1500px;
}
.cid-tbQoXeXcG3 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tbQoXeXcG3 .mbr-iconfont {
  font-size: 1.3rem;
  color: #ffffff;
  display: flex;
  justify-content: center;
}
.cid-tbQoXeXcG3 P {
  color: #c1c1c1;
}
@media (max-width: 1200px) {
  .cid-tbQoXeXcG3 .img-wrap {
    max-height: 230px;
  }
  .cid-tbQoXeXcG3 .text-wrap {
    padding: 0rem;
  }
}
@media (max-width: 992px) {
  .cid-tbQoXeXcG3 .card-box {
    margin: 0rem;
    padding: 2rem 2rem 6rem 2rem;
  }
  .cid-tbQoXeXcG3 .text-wrap {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .cid-tbQoXeXcG3 .card-box {
    padding: 2rem 1rem 5rem 1rem;
  }
  .cid-tbQoXeXcG3 .number {
    margin: auto;
  }
}
.cid-tbQoXeXcG3 .mbr-text {
  color: #03035b;
}
.cid-tbQoXeXcG3 H2 {
  color: #ffffff;
}
.cid-tbQoXeXcG3 .card-text {
  color: #ffffff;
}
.cid-tbQp2IEbGR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/md4a4159-2000x1333.jpg");
}
.cid-tbQp2IEbGR .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tbQp2IEbGR .text-block {
  position: relative;
  z-index: 0;
}
.cid-tbQp2IEbGR .box {
  width: 25%;
  height: 40%;
  background: #03035b;
  position: absolute;
  top: 4%;
}
.cid-tbQp2IEbGR .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tbQp2IEbGR .box {
  right: 20%;
}
.cid-tbQp2IEbGR .text-box {
  right: 0;
}
.cid-tbQp2IEbGR .mbr-section-title,
.cid-tbQp2IEbGR .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tbQp2IEbGR .text-box {
    display: none;
  }
  .cid-tbQp2IEbGR .mbr-section-title,
  .cid-tbQp2IEbGR .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tbQp2IEbGR .box {
    display: none;
  }
  .cid-tbQp2IEbGR .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tbQp2IEbGR .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tbQp2IEbGR .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tbQp2IEbGR .mbr-section-text {
  color: #ffffff;
  text-align: right;
}
.cid-tbQp2IEbGR .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-tbQp2IEbGR .mbr-section-text DIV {
  text-align: right;
}
.cid-tIFd0oQql3 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/md4a6704-1-2000x1333.jpg");
}
.cid-tIFd0oQql3 .row {
  position: relative;
}
.cid-tIFd0oQql3 .container {
  max-width: 1500px;
}
@media (min-width: 767px) {
  .cid-tIFd0oQql3 .row {
    margin: 0 2rem;
  }
}
.cid-tIFd0oQql3 h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 2rem;
  top: 1rem;
}
.cid-tIFd0oQql3 .content-wrapper {
  max-width: 600px;
}
.cid-tIFd0oQql3 H1 {
  color: #333333;
}
.cid-tIFd0oQql3 .mbr-text,
.cid-tIFd0oQql3 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tIFd0oQql3 H3 {
  color: #333333;
}
@media (max-width: 767px) {
  .cid-tIFd0oQql3 h4 {
    left: 3rem;
  }
}
.cid-tIFd0oQql3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIFd0oQql3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbQAxKPOwe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #073b4c;
}
.cid-tbQAxKPOwe .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-tbQAxKPOwe .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-tbQAxKPOwe .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-tbQAxKPOwe .mbr-text,
.cid-tbQAxKPOwe .mbr-section-btn {
  color: #ffffff;
}
.cid-tbQAdyvMZW {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/md4a6704-1-2000x1333.jpg");
}
.cid-tbQAdyvMZW .mbr-iconfont {
  color: #ffffff !important;
  font-size: 3.5rem !important;
}
.cid-tbQAdyvMZW .card-title,
.cid-tbQAdyvMZW .card-img {
  color: #ed6436;
}
.cid-tbQAdyvMZW p {
  line-height: 1.7;
}
@media (max-width: 992px) {
  .cid-tbQAdyvMZW .card {
    margin-bottom: 2rem;
  }
}
.cid-tbQAdyvMZW .card-title,
.cid-tbQAdyvMZW .card-ico {
  color: #ffffff;
  text-align: center;
}
.cid-tbQAdyvMZW .mbr-text,
.cid-tbQAdyvMZW .link {
  color: #ffffff;
}
.cid-ul3qCDB6Uk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/md4a6704-1-2000x1333.jpg");
}
.cid-ul3qCDB6Uk .mbr-text {
  color: #767676;
}
.cid-ul3qCDB6Uk .mbr-iconfont {
  color: #ffffff !important;
  font-size: 3rem !important;
  position: relative;
}
.cid-ul3qCDB6Uk .card-img {
  margin-bottom: 3rem;
}
.cid-ul3qCDB6Uk .card-wrapper {
  padding: 3rem 2rem;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
.cid-ul3qCDB6Uk .card-wrapper svg {
  position: absolute;
  top: 0px;
  left: 0;
  opacity: 0.3;
  -webkit-transform: rotate(-3deg) scale(1.15);
  transform: rotate(-3deg) scale(1.15);
}
.cid-ul3qCDB6Uk .card1 {
  background: #073b4c;
}
.cid-ul3qCDB6Uk .card2 {
  background: #073b4c;
}
.cid-ul3qCDB6Uk .card3 {
  background: #073b4c;
}
.cid-ul3qCDB6Uk .card4 {
  background: #07276f;
}
.cid-ul3qCDB6Uk .link {
  margin: 0;
}
.cid-ul3qCDB6Uk p {
  font-weight: 400;
}
.cid-ul3qCDB6Uk .link a {
  position: relative;
  margin: 0;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-ul3qCDB6Uk .link a:hover {
  color: #ffffff !important;
}
.cid-ul3qCDB6Uk .link a:after {
  position: absolute;
  content: '\e967';
  font-family: 'mobirise-icons-bold' !important;
  right: -30px;
  top: -1px;
  color: currentColor;
}
.cid-ul3qCDB6Uk .row {
  -webkit-box-pack: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ul3qCDB6Uk .card {
    margin-bottom: 3rem;
  }
}
.cid-ul3qCDB6Uk .mbr-text,
.cid-ul3qCDB6Uk .link {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-ul3qCDB6Uk .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ul3qCDB6Uk .card-title,
.cid-ul3qCDB6Uk .card-img {
  text-align: center;
  color: #ffffff;
}
.cid-uTL2EqYHSu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #073b4c;
}
.cid-uTL2EqYHSu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTL2EqYHSu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTL2EqYHSu .content-wrapper .mbr-label {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uTL2EqYHSu .content-wrapper .mbr-label {
    margin-bottom: 24px;
  }
}
.cid-uTL2EqYHSu .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uTL2EqYHSu .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uTL2EqYHSu .mbr-section-title {
  color: #f5f8ff;
}
.cid-uTL2EqYHSu .mbr-label {
  color: #f5f8ff;
  text-align: center;
}
.cid-uTL2EqYHSu .mbr-section-title,
.cid-uTL2EqYHSu .title-wrapper,
.cid-uTL2EqYHSu .mbr-section-btn {
  text-align: center;
}
.cid-tIFmAtgg2V {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #073b4c;
}
.cid-tIFmAtgg2V .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #073b4c;
}
.cid-tIFmAtgg2V img {
  width: 100%;
}
.cid-tIFmAtgg2V p {
  margin-top: 6rem;
}
.cid-tIFmAtgg2V .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-tIFmAtgg2V .content-wrapper {
  padding-top: 6rem;
}
.cid-tIFmAtgg2V h4 {
  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-tIFmAtgg2V .content-wrapper {
    padding-top: 0rem;
  }
  .cid-tIFmAtgg2V p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tIFmAtgg2V .back {
    width: 100%;
    height: 75%;
  }
  .cid-tIFmAtgg2V .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-tIFmAtgg2V p {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tIFmAtgg2V .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-tIFmAtgg2V h4 {
    right: 2rem;
  }
}
.cid-tIFmAtgg2V .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIFmAtgg2V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIFmAtgg2V .mbr-text,
.cid-tIFmAtgg2V .mbr-section-btn {
  color: #ffffff;
}
.cid-tIFmAtgg2V H1 {
  color: #ffffff;
}
.cid-uTL4JjfAiF {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #073b4c;
}
.cid-uTL4JjfAiF .item-img,
.cid-uTL4JjfAiF .img-wrap,
.cid-uTL4JjfAiF img {
  border-radius: 50% !important;
  display: flex;
  justify-content: center;
}
.cid-uTL4JjfAiF img,
.cid-uTL4JjfAiF .item-img {
  width: 230px;
  overflow: hidden;
  transition: transform 3s;
  cursor: pointer;
  object-fit: cover;
  min-height: 230px;
  height: 230px;
}
@media (max-width: 1600px) {
  .cid-uTL4JjfAiF img,
  .cid-uTL4JjfAiF .item-img {
    width: 180px;
    min-height: 180px;
    height: 180px;
  }
}
.cid-uTL4JjfAiF .item-img {
  border: 1px solid transparent;
  transition: all 0.3s;
}
.cid-uTL4JjfAiF .item:focus,
.cid-uTL4JjfAiF span:focus {
  outline: none;
}
.cid-uTL4JjfAiF .img-wrap {
  transition: all 0.3s;
  overflow: hidden;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
}
.cid-uTL4JjfAiF .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uTL4JjfAiF .item {
    margin-bottom: 1rem;
  }
}
.cid-uTL4JjfAiF h5 {
  margin: 0;
}
.cid-uTL4JjfAiF .item-content {
  margin-top: 1rem;
  padding: 0rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-uTL4JjfAiF .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
  transition: all 0.3s;
}
.cid-uTL4JjfAiF .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uTL4JjfAiF .item-wrapper:hover .item-img {
  border: 1px solid lightgray;
}
.cid-uTL4JjfAiF .item-wrapper:hover .img-wrap {
  margin: 10px;
}
@media (max-width: 992px) {
  .cid-uTL4JjfAiF .item-wrapper {
    height: auto;
  }
}
.cid-uTL4JjfAiF .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uTL4JjfAiF .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-uTL4JjfAiF .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-uTL4JjfAiF .mbr-text,
.cid-uTL4JjfAiF .item .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uTL4JjfAiF .mbr-section-subtitle,
.cid-uTL4JjfAiF .mbr-section-head .mbr-section-btn {
  text-align: left;
}
.cid-uTL4N9GpEJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #073b4c;
}
.cid-uTL4N9GpEJ .content__block {
  padding: 50px 15px;
}
.cid-uTL4N9GpEJ .circle:after {
  content: '•';
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  margin-top: -2px;
  color: #073b4c;
  margin-left: 4px;
  margin-right: 4px;
}
.cid-uTL4N9GpEJ .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uTL4N9GpEJ .mbr-text {
  opacity: 0.6;
  margin-bottom: 25px;
}
.cid-uTL4N9GpEJ .image {
  perspective: 3500px;
  position: relative;
}
.cid-uTL4N9GpEJ .image:before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  right: -1px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(7, 59, 76, 0.99));
  z-index: 1;
  pointer-events: none;
  left: 0;
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(7, 59, 76, 0.99));
}
.cid-uTL4N9GpEJ .image img {
  transition: transform 0.5s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uTL4N9GpEJ .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 20px;
  border: none !important;
  background-color: transparent !important;
}
.cid-uTL4N9GpEJ .mbr-section-btn .btn-white-outline:hover {
  color: #073b4c !important;
}
@media (max-width: 991px) {
  .cid-uTL4N9GpEJ .content__block {
    padding: 30px 15px;
  }
  .cid-uTL4N9GpEJ .mbr-figure {
    padding: 0;
  }
  .cid-uTL4N9GpEJ .image:before {
    width: 100%;
    height: 50%;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(7, 59, 76, 0.99));
  }
}
@media (min-width: 992px) {
  .cid-uTL4N9GpEJ .lg-push {
    right: 1%;
  }
  .cid-uTL4N9GpEJ .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .cid-uTL4N9GpEJ .row:hover .image img {
    transform: rotateY(8deg);
  }
  .cid-uTL4N9GpEJ .lg-push {
    left: 1%;
  }
  .cid-uTL4N9GpEJ .row:hover .image img {
    transform: rotateY(-8deg);
  }
}
.cid-uTL4N9GpEJ .btn:hover .mbr-iconfont {
  animation: animBtn ease-out 0.3s;
}
@keyframes animBtn {
  0% {
    transform: translateX(0px);
  }
  51% {
    transform: translateX(20px);
    opacity: 1;
  }
  52% {
    opacity: 0;
    transform: translateX(-20px);
  }
  53% {
    opacity: 0;
  }
  54% {
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
  }
}
.cid-uTL4N9GpEJ .mbr-text,
.cid-uTL4N9GpEJ .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-scgIKmIJN4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
.cid-scgIKmIJN4 .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-scgIKmIJN4 .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-scgIKmIJN4 .col + .mbr-section-btn .btn,
.cid-scgIKmIJN4 .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-scgIKmIJN4 .col + .mbr-section-btn .btn,
  .cid-scgIKmIJN4 .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-scgIKmIJN4 .dragArea > *:nth-last-child(2).col,
  .cid-scgIKmIJN4 .dragArea > *:nth-last-child(2).col-auto,
  .cid-scgIKmIJN4 .col + .mbr-section-btn,
  .cid-scgIKmIJN4 .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-scgIKmIJN4 .dragArea {
    flex-direction: column;
  }
}
.cid-scgIKmIJN4 .btn-primary {
  border: 1px solid #073b4c !important;
}
.cid-scgIKmIJN4 .btn-primary:hover {
  border: 1px solid #073b4c !important;
}
.cid-scgIKmIJN4 .stripe {
  border-bottom: 1px solid #ffffff;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-scgIKmIJN4 .form-group {
  max-width: 220px;
}
.cid-scgIKmIJN4 .mbr-section-btn {
  padding-left: 0;
}
.cid-scgIKmIJN4 .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-scgIKmIJN4 .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ffffff;
  width: 85%;
}
.cid-scgIKmIJN4 .mbr-text {
  color: #444;
}
.cid-scgIKmIJN4 h5 {
  margin-bottom: 0;
}
.cid-scgIKmIJN4 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-scgIKmIJN4 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-scgIKmIJN4 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-scgIKmIJN4 .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-scgIKmIJN4 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-scgIKmIJN4 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-scgIKmIJN4 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-scgIKmIJN4 .social-list a:hover {
  opacity: 0.4;
}
.cid-scgIKmIJN4 .media-container-row > div {
  padding: 0px;
}
.cid-scgIKmIJN4 .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-scgIKmIJN4 .group-title {
  text-align: left;
  color: #ffffff;
  padding-bottom: 0.2rem;
}
.cid-scgIKmIJN4 .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-scgIKmIJN4 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-scgIKmIJN4 .social-list,
  .cid-scgIKmIJN4 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-scgIKmIJN4 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-scgIKmIJN4 .form-group {
    max-width: 180px;
  }
}
.cid-scgIKmIJN4 .links span {
  color: #9e9e9e;
}
.cid-scgIKmIJN4 .logo-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-scgIKmIJN4 .logo-title {
  text-align: center;
}
.cid-scgIKmIJN4 .logo-sub-title i {
  color: #9e9e9e;
}
.cid-scgIKmIJN4 .logo-title,
.cid-scgIKmIJN4 .logo {
  color: #ffffff;
}
