body {
  font-family: Montserrat;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.08rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.bg-primary {
  background-color: #04367c !important;
}
.bg-success {
  background-color: #1dc9cb !important;
}
.bg-info {
  background-color: #188ef4 !important;
}
.bg-warning {
  background-color: #f3e6a0 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #04367c !important;
  border-color: #04367c !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #021632 !important;
  border-color: #021632 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #021632 !important;
  border-color: #021632 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #efefef !important;
  border-color: #efefef !important;
  transition: all .5s;
  color: #707070 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  transition: all .5s;
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #f3e6a0 !important;
  border-color: #f3e6a0 !important;
  transition: all .5s;
  color: #837111 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  transition: all .5s;
  color: #837111 !important;
  background-color: #ead45c !important;
  border-color: #ead45c !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #837111 !important;
  background-color: #ead45c !important;
  border-color: #ead45c !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transition: all .5s;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  transition: all .5s;
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #010b19 !important;
  color: #010b19 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #04367c !important;
  border-color: #04367c !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #04367c !important;
  border-color: #04367c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #bcbcbc !important;
  color: #bcbcbc !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #08589e !important;
  color: #08589e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #107172 !important;
  color: #107172 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #e8ce45 !important;
  color: #e8ce45 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #837111 !important;
  background-color: #f3e6a0 !important;
  border-color: #f3e6a0 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #837111 !important;
  background-color: #f3e6a0 !important;
  border-color: #f3e6a0 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #111111 !important;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #04367c !important;
}
.text-secondary {
  color: #efefef !important;
}
.text-success {
  color: #1dc9cb !important;
}
.text-info {
  color: #188ef4 !important;
}
.text-warning {
  color: #f3e6a0 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #010b19 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #bcbcbc !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #107172 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #08589e !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #e8ce45 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #1dc9cb;
}
.alert-info {
  background-color: #188ef4;
}
.alert-warning {
  background-color: #f3e6a0;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn:focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #04367c;
  border-color: #04367c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #04367c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #086cf7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #bef5f6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dbedfd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.mbr-arrow-up a {
  width: 61px;
  height: 61px;
}
#scrollToTop a {
  background: #51aafa;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #ffffff;
  width: 3%;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mbr-arrow i {
  color: #51aafa;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #04367c;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #04367c;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #04367c;
}
.btn-social + .btn {
  margin-left: .1rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #04367c;
  color: #ffffff;
}
.jq-number__spin {
  background-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: #04367c;
  border-bottom-color: #04367c;
}
.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: #04367c !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #efefef !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 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='%2304367c' %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-rzB7jyCAAp .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rzB7jyCAAp .nav-item,
.cid-rzB7jyCAAp .nav-link,
.cid-rzB7jyCAAp .navbar-caption {
  font-weight: normal;
}
.cid-rzB7jyCAAp .nav-item:focus,
.cid-rzB7jyCAAp .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rzB7jyCAAp .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rzB7jyCAAp .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rzB7jyCAAp .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rzB7jyCAAp .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rzB7jyCAAp .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rzB7jyCAAp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rzB7jyCAAp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rzB7jyCAAp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rzB7jyCAAp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rzB7jyCAAp .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #08579f;
}
.cid-rzB7jyCAAp .navbar.opened {
  transition: all .3s;
  background: #08579f !important;
}
.cid-rzB7jyCAAp .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rzB7jyCAAp .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rzB7jyCAAp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rzB7jyCAAp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rzB7jyCAAp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.9rem - 1rem);
  }
}
.cid-rzB7jyCAAp .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rzB7jyCAAp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rzB7jyCAAp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rzB7jyCAAp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rzB7jyCAAp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rzB7jyCAAp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rzB7jyCAAp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rzB7jyCAAp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rzB7jyCAAp .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rzB7jyCAAp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rzB7jyCAAp .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rzB7jyCAAp .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rzB7jyCAAp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rzB7jyCAAp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rzB7jyCAAp .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rzB7jyCAAp .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rzB7jyCAAp .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rzB7jyCAAp .navbar.navbar-short {
  background: #08579f !important;
  min-height: 60px;
}
.cid-rzB7jyCAAp .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rzB7jyCAAp .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rzB7jyCAAp .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rzB7jyCAAp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rzB7jyCAAp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rzB7jyCAAp .dropdown-item.active,
.cid-rzB7jyCAAp .dropdown-item:active {
  background-color: transparent;
}
.cid-rzB7jyCAAp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rzB7jyCAAp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rzB7jyCAAp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #08579f;
}
.cid-rzB7jyCAAp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rzB7jyCAAp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rzB7jyCAAp ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rzB7jyCAAp .navbar-buttons {
  text-align: center;
}
.cid-rzB7jyCAAp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rzB7jyCAAp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rzB7jyCAAp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rzB7jyCAAp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rzB7jyCAAp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rzB7jyCAAp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rzB7jyCAAp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzB7jyCAAp nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rzB7jyCAAp nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rzB7jyCAAp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzB7jyCAAp .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rzB7jyCAAp a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rzB7jyCAAp .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rzB7jyCAAp .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rzB7jyCAAp .soc-item {
  margin: .5rem .3rem;
}
.cid-rzB7jyCAAp .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rzB7jyCAAp .navbar {
    height: 77px;
  }
  .cid-rzB7jyCAAp .navbar.opened {
    height: auto;
  }
  .cid-rzB7jyCAAp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qKSeIL708B {
  padding-top: 180px;
}
.cid-qKSeIL708B .container {
  margin-bottom: 15%;
}
.cid-qKSeIL708B .content-container .btn-bgr {
  z-index: 0;
}
.cid-qKSeIL708B .container-boxes {
  padding-bottom: 45px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
  background-color: #f4f8fa;
}
.cid-qKSeIL708B .icon-block-top span {
  background-color: #369898;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
}
.cid-qKSeIL708B .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-qKSeIL708B .box-item:first-child {
  background-color: #f4f8fa;
  margin-top: -150px;
}
.cid-qKSeIL708B .box-item:nth-child(2) {
  background-color: #f4f8fa;
}
.cid-qKSeIL708B .box-item:last-child {
  background-color: #ffffff;
  margin-right: 0;
}
.cid-qKSeIL708B .mbr-text,
.cid-qKSeIL708B .box-item-text {
  color: #8d97ad;
}
.cid-qKSeIL708B .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-qKSeIL708B .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-qKSeIL708B .box-list li:last-child {
  border-bottom: none;
}
.cid-qKSeIL708B .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-qKSeIL708B .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-qKSeIL708B .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-qKSeIL708B .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-qKSeIL708B .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-qKSeIL708B .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-qKSeIL708B .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-qKSeIL708B .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-qKSeIL708B H1 {
  color: #ffffff;
}
.cid-qKSeIL708B .mbr-text {
  color: #f3e6a0;
}
.cid-qKSfgPX2iU {
  padding-top: 20px;
  padding-bottom: 45px;
  background-color: #f4f8fa;
}
.cid-qKSfgPX2iU .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-qKSfgPX2iU .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-qKSfgPX2iU .text-content {
  padding-right: 1.5rem;
}
.cid-qKSfgPX2iU .mbr-text {
  color: #8d97ad;
}
.cid-qKSfgPX2iU .mbr-figure img {
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-qKSfgPX2iU .counter-container {
  padding-top: 1rem;
}
.cid-qKSfgPX2iU .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-qKSfgPX2iU .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-qKSfgPX2iU .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-qKSfgPX2iU .main-row {
    margin: 0;
  }
  .cid-qKSfgPX2iU .mbr-section-title,
  .cid-qKSfgPX2iU .mbr-text,
  .cid-qKSfgPX2iU .list,
  .cid-qKSfgPX2iU .mbr-section-btn {
    text-align: center !important;
  }
  .cid-qKSfgPX2iU .text-content {
    padding: 0;
  }
}
.cid-qKSfgPX2iU .mbr-text,
.cid-qKSfgPX2iU .mbr-section-btn {
  color: #444444;
}
.cid-txm2CE73FI {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #08579f;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .content {
    text-align: center;
  }
  .cid-txm2CE73FI .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-txm2CE73FI .logo-subtitle {
  color: #f4f8fa;
}
.cid-txm2CE73FI .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txm2CE73FI .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txm2CE73FI .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txm2CE73FI .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-txm2CE73FI .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txm2CE73FI .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-txm2CE73FI .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txm2CE73FI .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txm2CE73FI .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txm2CE73FI .list-item {
  display: flex;
}
.cid-txm2CE73FI .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-txm2CE73FI ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txm2CE73FI ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-txm2CE73FI ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-txm2CE73FI .column-title {
  color: #f4f8fa;
}
.cid-txm2CE73FI P {
  color: #f4f8fa;
}
.cid-txm2CE73FI .mbr-text {
  color: #f4f8fa;
}
.cid-tCxcZONrb8 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tCxcZONrb8 .nav-item,
.cid-tCxcZONrb8 .nav-link,
.cid-tCxcZONrb8 .navbar-caption {
  font-weight: normal;
}
.cid-tCxcZONrb8 .nav-item:focus,
.cid-tCxcZONrb8 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tCxcZONrb8 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tCxcZONrb8 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tCxcZONrb8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tCxcZONrb8 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tCxcZONrb8 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tCxcZONrb8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tCxcZONrb8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tCxcZONrb8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCxcZONrb8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCxcZONrb8 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #08579f;
}
.cid-tCxcZONrb8 .navbar.opened {
  transition: all .3s;
  background: #08579f !important;
}
.cid-tCxcZONrb8 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tCxcZONrb8 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCxcZONrb8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCxcZONrb8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCxcZONrb8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.9rem - 1rem);
  }
}
.cid-tCxcZONrb8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tCxcZONrb8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCxcZONrb8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tCxcZONrb8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCxcZONrb8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tCxcZONrb8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tCxcZONrb8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCxcZONrb8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCxcZONrb8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tCxcZONrb8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCxcZONrb8 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tCxcZONrb8 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tCxcZONrb8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCxcZONrb8 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tCxcZONrb8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tCxcZONrb8 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tCxcZONrb8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tCxcZONrb8 .navbar.navbar-short {
  background: #08579f !important;
  min-height: 60px;
}
.cid-tCxcZONrb8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tCxcZONrb8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tCxcZONrb8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCxcZONrb8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCxcZONrb8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCxcZONrb8 .dropdown-item.active,
.cid-tCxcZONrb8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tCxcZONrb8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCxcZONrb8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCxcZONrb8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #08579f;
}
.cid-tCxcZONrb8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCxcZONrb8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCxcZONrb8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tCxcZONrb8 .navbar-buttons {
  text-align: center;
}
.cid-tCxcZONrb8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tCxcZONrb8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tCxcZONrb8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tCxcZONrb8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tCxcZONrb8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tCxcZONrb8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tCxcZONrb8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tCxcZONrb8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tCxcZONrb8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tCxcZONrb8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tCxcZONrb8 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tCxcZONrb8 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tCxcZONrb8 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tCxcZONrb8 .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tCxcZONrb8 .soc-item {
  margin: .5rem .3rem;
}
.cid-tCxcZONrb8 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCxcZONrb8 .navbar {
    height: 77px;
  }
  .cid-tCxcZONrb8 .navbar.opened {
    height: auto;
  }
  .cid-tCxcZONrb8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCxcZPqJlY {
  padding-top: 135px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/production-1-2000x437.jpeg");
}
.cid-tCxcZPqJlY .mbr-overlay {
  background: #1dc9cb;
  background: linear-gradient(90deg, #1dc9cb, #08579f);
}
.cid-tCxcZPqJlY .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tCxcZPqJlY .mbr-section-subtitle,
.cid-tCxcZPqJlY .mbr-section-btn {
  color: #f4f8fa;
}
.cid-tCxcZPIYwz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tCxcZPIYwz .mbr-section-subtitle {
  color: #444444;
}
.cid-tCxcZPIYwz .mbr-section-title {
  text-align: center;
}
.cid-tCxcZPIYwz .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-tCxcZPY1vi {
  padding-top: 30px;
  padding-bottom: 0px;
  background: linear-gradient(90deg, #1dc8cc, #08579f);
}
.cid-tCxcZPY1vi .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-tCxcZQl5Av {
  padding-top: 20px;
  padding-bottom: 15px;
  background-color: #efefef;
  background: linear-gradient(90deg, #efefef, #f4f8fa);
}
.cid-tCxcZQl5Av .main-row {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-tCxcZQl5Av .section-text {
  color: #000000;
  text-align: left;
}
.cid-tCxcZQl5Av .mbr-overlay {
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.cid-tCxcZQl5Av .text-block {
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-tCxcZQl5Av .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tCxcZQl5Av .mbr-figure {
  background: #f4f8fa;
  overflow: hidden;
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  padding: 0 !important;
}
.cid-tCxcZQl5Av .mbr-figure .card-text {
  padding: 2rem;
}
.cid-tCxcZQl5Av .counter-container {
  color: #767676;
  padding-top: 1rem;
}
.cid-tCxcZQl5Av .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tCxcZQl5Av .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tCxcZQl5Av .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #04367c;
}
@media (max-width: 767px) {
  .cid-tCxcZQl5Av .mbr-text {
    text-align: center;
  }
}
.cid-tCxcZQl5Av .mbr-text {
  color: #04367c;
}
.cid-tCxcZQl5Av .mbr-text UL {
  text-align: left;
}
.cid-tCxcZQGw0t {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(90deg, #1dc8cc, #08579f);
}
.cid-tCxcZQGw0t .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-tCxcZQYuGR {
  padding-top: 15px;
  padding-bottom: 0px;
  background: linear-gradient(90deg, #1dc8cc, #08579f);
}
.cid-tCxcZQYuGR .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-tCxcZRgYOa {
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: #efefef;
  background: linear-gradient(90deg, #efefef, #f4f8fa);
}
.cid-tCxcZRgYOa .main-row {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-tCxcZRgYOa .section-text {
  color: #000000;
  text-align: left;
}
.cid-tCxcZRgYOa .mbr-overlay {
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.cid-tCxcZRgYOa .text-block {
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-tCxcZRgYOa .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tCxcZRgYOa .mbr-figure {
  background: #f4f8fa;
  overflow: hidden;
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  padding: 0 !important;
}
.cid-tCxcZRgYOa .mbr-figure .card-text {
  padding: 2rem;
}
.cid-tCxcZRgYOa .counter-container {
  color: #767676;
  padding-top: 1rem;
}
.cid-tCxcZRgYOa .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tCxcZRgYOa .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tCxcZRgYOa .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #04367c;
}
@media (max-width: 767px) {
  .cid-tCxcZRgYOa .mbr-text {
    text-align: center;
  }
}
.cid-tCxcZRgYOa .mbr-text {
  color: #04367c;
}
.cid-tCxcZRgYOa .mbr-text UL {
  text-align: left;
}
.cid-tCxcZSgwt6 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #08579f;
}
@media (max-width: 767px) {
  .cid-tCxcZSgwt6 .content {
    text-align: center;
  }
  .cid-tCxcZSgwt6 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tCxcZSgwt6 .logo-subtitle {
  color: #f4f8fa;
}
.cid-tCxcZSgwt6 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tCxcZSgwt6 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tCxcZSgwt6 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tCxcZSgwt6 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-tCxcZSgwt6 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tCxcZSgwt6 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tCxcZSgwt6 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-tCxcZSgwt6 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tCxcZSgwt6 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCxcZSgwt6 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tCxcZSgwt6 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCxcZSgwt6 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-tCxcZSgwt6 .list-item {
  display: flex;
}
.cid-tCxcZSgwt6 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tCxcZSgwt6 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tCxcZSgwt6 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tCxcZSgwt6 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tCxcZSgwt6 .column-title {
  color: #f4f8fa;
}
.cid-tCxcZSgwt6 P {
  color: #f4f8fa;
}
.cid-tCxcZSgwt6 .mbr-text {
  color: #f4f8fa;
}
.cid-tvK9u19qbL .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tvK9u19qbL .nav-item,
.cid-tvK9u19qbL .nav-link,
.cid-tvK9u19qbL .navbar-caption {
  font-weight: normal;
}
.cid-tvK9u19qbL .nav-item:focus,
.cid-tvK9u19qbL .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tvK9u19qbL .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tvK9u19qbL .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tvK9u19qbL .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tvK9u19qbL .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tvK9u19qbL .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tvK9u19qbL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tvK9u19qbL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tvK9u19qbL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvK9u19qbL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvK9u19qbL .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #08579f;
}
.cid-tvK9u19qbL .navbar.opened {
  transition: all .3s;
  background: #08579f !important;
}
.cid-tvK9u19qbL .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tvK9u19qbL .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvK9u19qbL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvK9u19qbL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvK9u19qbL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.9rem - 1rem);
  }
}
.cid-tvK9u19qbL .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tvK9u19qbL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvK9u19qbL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tvK9u19qbL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvK9u19qbL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tvK9u19qbL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tvK9u19qbL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvK9u19qbL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvK9u19qbL .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tvK9u19qbL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvK9u19qbL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tvK9u19qbL .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tvK9u19qbL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvK9u19qbL .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tvK9u19qbL .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tvK9u19qbL .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tvK9u19qbL .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tvK9u19qbL .navbar.navbar-short {
  background: #08579f !important;
  min-height: 60px;
}
.cid-tvK9u19qbL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tvK9u19qbL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tvK9u19qbL .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvK9u19qbL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvK9u19qbL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvK9u19qbL .dropdown-item.active,
.cid-tvK9u19qbL .dropdown-item:active {
  background-color: transparent;
}
.cid-tvK9u19qbL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvK9u19qbL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvK9u19qbL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #08579f;
}
.cid-tvK9u19qbL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvK9u19qbL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvK9u19qbL ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tvK9u19qbL .navbar-buttons {
  text-align: center;
}
.cid-tvK9u19qbL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tvK9u19qbL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvK9u19qbL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tvK9u19qbL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tvK9u19qbL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tvK9u19qbL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tvK9u19qbL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tvK9u19qbL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tvK9u19qbL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tvK9u19qbL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tvK9u19qbL .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tvK9u19qbL a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tvK9u19qbL .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tvK9u19qbL .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tvK9u19qbL .soc-item {
  margin: .5rem .3rem;
}
.cid-tvK9u19qbL .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tvK9u19qbL .navbar {
    height: 77px;
  }
  .cid-tvK9u19qbL .navbar.opened {
    height: auto;
  }
  .cid-tvK9u19qbL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tvK9u29R3S {
  padding-top: 135px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/function-1600x350.jpg");
}
.cid-tvK9u29R3S .mbr-overlay {
  background: #1dc9cb;
  background: linear-gradient(90deg, #1dc9cb, #08579f);
}
.cid-tvK9u29R3S .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tvK9u29R3S .mbr-section-subtitle,
.cid-tvK9u29R3S .mbr-section-btn {
  color: #f4f8fa;
}
.cid-tvK9u8jAKX {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(90deg, #1dc8cc, #08579f);
}
.cid-tvK9u8jAKX .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-tvK9uddXAv {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f4f8fa;
}
.cid-tvK9uddXAv .card {
  padding: 1rem 1rem 1rem 1rem;
}
.cid-tvK9uddXAv .card-title {
  padding: .5rem 1rem .5rem 6.5rem;
  margin-left: -2rem;
  margin-bottom: 0;
  background: linear-gradient(90deg, #1dc9cb, #08579f);
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-tvK9uddXAv .card-header {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background: none;
  padding: 0;
  border: none;
  padding-bottom: 2rem;
}
.cid-tvK9uddXAv .card-img {
  position: absolute;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
}
.cid-tvK9uddXAv .card-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tvK9uddXAv .card-text,
.cid-tvK9uddXAv .mbr-subtitle {
  color: #8d97ad;
}
.cid-tvK9uddXAv .card-sign {
  padding-top: .5rem;
}
.cid-tvK9uddXAv .underline .line {
  width: 5rem;
  height: 1px;
  background: #efefef;
  display: inline-block;
}
.cid-tvK9uddXAv .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-tvK9uddXAv .card-title {
    text-align: center;
  }
  .cid-tvK9uddXAv p.mbr-text,
  .cid-tvK9uddXAv p.date {
    text-align: center;
  }
}
.cid-tvK9uddXAv .card-box {
  background: #ffffff;
  padding: 2rem 2rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-tvK9uddXAv .card-text {
  color: #444444;
}
.cid-tvK9uddXAv .mbr-subtitle {
  color: #444444;
}
.cid-twpvWs0NBg {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f4f8fa;
}
.cid-twpvWs0NBg .card {
  padding: 1rem 1rem 1rem 1rem;
}
.cid-twpvWs0NBg .card-title {
  padding: .5rem 1rem .5rem 6.5rem;
  margin-left: -2rem;
  margin-bottom: 0;
  background: linear-gradient(90deg, #1dc9cb, #08579f);
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-twpvWs0NBg .card-header {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background: none;
  padding: 0;
  border: none;
  padding-bottom: 2rem;
}
.cid-twpvWs0NBg .card-img {
  position: absolute;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
}
.cid-twpvWs0NBg .card-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-twpvWs0NBg .card-text,
.cid-twpvWs0NBg .mbr-subtitle {
  color: #8d97ad;
}
.cid-twpvWs0NBg .card-sign {
  padding-top: .5rem;
}
.cid-twpvWs0NBg .underline .line {
  width: 5rem;
  height: 1px;
  background: #efefef;
  display: inline-block;
}
.cid-twpvWs0NBg .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-twpvWs0NBg .card-title {
    text-align: center;
  }
  .cid-twpvWs0NBg p.mbr-text,
  .cid-twpvWs0NBg p.date {
    text-align: center;
  }
}
.cid-twpvWs0NBg .card-box {
  background: #ffffff;
  padding: 2rem 2rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-twpvWs0NBg .card-text {
  color: #444444;
}
.cid-twpvWs0NBg .mbr-subtitle {
  color: #444444;
}
.cid-twAnHNAg4y {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f4f8fa;
}
.cid-twAnHNAg4y .card {
  padding: 1rem 1rem 1rem 1rem;
}
.cid-twAnHNAg4y .card-title {
  padding: .5rem 1rem .5rem 6.5rem;
  margin-left: -2rem;
  margin-bottom: 0;
  background: linear-gradient(90deg, #1dc9cb, #08579f);
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-twAnHNAg4y .card-header {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background: none;
  padding: 0;
  border: none;
  padding-bottom: 2rem;
}
.cid-twAnHNAg4y .card-img {
  position: absolute;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
}
.cid-twAnHNAg4y .card-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-twAnHNAg4y .card-text,
.cid-twAnHNAg4y .mbr-subtitle {
  color: #8d97ad;
}
.cid-twAnHNAg4y .card-sign {
  padding-top: .5rem;
}
.cid-twAnHNAg4y .underline .line {
  width: 5rem;
  height: 1px;
  background: #efefef;
  display: inline-block;
}
.cid-twAnHNAg4y .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-twAnHNAg4y .card-title {
    text-align: center;
  }
  .cid-twAnHNAg4y p.mbr-text,
  .cid-twAnHNAg4y p.date {
    text-align: center;
  }
}
.cid-twAnHNAg4y .card-box {
  background: #ffffff;
  padding: 2rem 2rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-twAnHNAg4y .card-text {
  color: #444444;
}
.cid-twAnHNAg4y .mbr-subtitle {
  color: #444444;
}
.cid-twAps57HHa {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f4f8fa;
}
.cid-twAps57HHa .card {
  padding: 1rem 1rem 1rem 1rem;
}
.cid-twAps57HHa .card-title {
  padding: .5rem 1rem .5rem 6.5rem;
  margin-left: -2rem;
  margin-bottom: 0;
  background: linear-gradient(90deg, #1dc9cb, #08579f);
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-twAps57HHa .card-header {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background: none;
  padding: 0;
  border: none;
  padding-bottom: 2rem;
}
.cid-twAps57HHa .card-img {
  position: absolute;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
}
.cid-twAps57HHa .card-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-twAps57HHa .card-text,
.cid-twAps57HHa .mbr-subtitle {
  color: #8d97ad;
}
.cid-twAps57HHa .card-sign {
  padding-top: .5rem;
}
.cid-twAps57HHa .underline .line {
  width: 5rem;
  height: 1px;
  background: #efefef;
  display: inline-block;
}
.cid-twAps57HHa .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-twAps57HHa .card-title {
    text-align: center;
  }
  .cid-twAps57HHa p.mbr-text,
  .cid-twAps57HHa p.date {
    text-align: center;
  }
}
.cid-twAps57HHa .card-box {
  background: #ffffff;
  padding: 2rem 2rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-twAps57HHa .card-text {
  color: #444444;
}
.cid-twAps57HHa .mbr-subtitle {
  color: #444444;
}
.cid-twArmaLIRP {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f4f8fa;
}
.cid-twArmaLIRP .card {
  padding: 1rem 1rem 1rem 1rem;
}
.cid-twArmaLIRP .card-title {
  padding: .5rem 1rem .5rem 6.5rem;
  margin-left: -2rem;
  margin-bottom: 0;
  background: linear-gradient(90deg, #1dc9cb, #08579f);
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-twArmaLIRP .card-header {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background: none;
  padding: 0;
  border: none;
  padding-bottom: 2rem;
}
.cid-twArmaLIRP .card-img {
  position: absolute;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
}
.cid-twArmaLIRP .card-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-twArmaLIRP .card-text,
.cid-twArmaLIRP .mbr-subtitle {
  color: #8d97ad;
}
.cid-twArmaLIRP .card-sign {
  padding-top: .5rem;
}
.cid-twArmaLIRP .underline .line {
  width: 5rem;
  height: 1px;
  background: #efefef;
  display: inline-block;
}
.cid-twArmaLIRP .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-twArmaLIRP .card-title {
    text-align: center;
  }
  .cid-twArmaLIRP p.mbr-text,
  .cid-twArmaLIRP p.date {
    text-align: center;
  }
}
.cid-twArmaLIRP .card-box {
  background: #ffffff;
  padding: 2rem 2rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-twArmaLIRP .card-text {
  color: #444444;
}
.cid-twArmaLIRP .mbr-subtitle {
  color: #444444;
}
.cid-txlbyoZmJi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-txlbyoZmJi .mbr-text {
  color: #444444;
}
.cid-txm2CE73FI {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #08579f;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .content {
    text-align: center;
  }
  .cid-txm2CE73FI .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-txm2CE73FI .logo-subtitle {
  color: #f4f8fa;
}
.cid-txm2CE73FI .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txm2CE73FI .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txm2CE73FI .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txm2CE73FI .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-txm2CE73FI .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txm2CE73FI .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-txm2CE73FI .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txm2CE73FI .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txm2CE73FI .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txm2CE73FI .list-item {
  display: flex;
}
.cid-txm2CE73FI .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-txm2CE73FI ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txm2CE73FI ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-txm2CE73FI ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-txm2CE73FI .column-title {
  color: #f4f8fa;
}
.cid-txm2CE73FI P {
  color: #f4f8fa;
}
.cid-txm2CE73FI .mbr-text {
  color: #f4f8fa;
}
.cid-tw29Uq0UrN .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tw29Uq0UrN .nav-item,
.cid-tw29Uq0UrN .nav-link,
.cid-tw29Uq0UrN .navbar-caption {
  font-weight: normal;
}
.cid-tw29Uq0UrN .nav-item:focus,
.cid-tw29Uq0UrN .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tw29Uq0UrN .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tw29Uq0UrN .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tw29Uq0UrN .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tw29Uq0UrN .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tw29Uq0UrN .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tw29Uq0UrN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tw29Uq0UrN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tw29Uq0UrN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tw29Uq0UrN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tw29Uq0UrN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #08579f;
}
.cid-tw29Uq0UrN .navbar.opened {
  transition: all .3s;
  background: #08579f !important;
}
.cid-tw29Uq0UrN .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tw29Uq0UrN .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tw29Uq0UrN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tw29Uq0UrN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tw29Uq0UrN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.9rem - 1rem);
  }
}
.cid-tw29Uq0UrN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tw29Uq0UrN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tw29Uq0UrN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tw29Uq0UrN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tw29Uq0UrN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tw29Uq0UrN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tw29Uq0UrN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tw29Uq0UrN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tw29Uq0UrN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tw29Uq0UrN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tw29Uq0UrN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tw29Uq0UrN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tw29Uq0UrN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tw29Uq0UrN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tw29Uq0UrN .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tw29Uq0UrN .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tw29Uq0UrN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tw29Uq0UrN .navbar.navbar-short {
  background: #08579f !important;
  min-height: 60px;
}
.cid-tw29Uq0UrN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tw29Uq0UrN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tw29Uq0UrN .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tw29Uq0UrN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tw29Uq0UrN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tw29Uq0UrN .dropdown-item.active,
.cid-tw29Uq0UrN .dropdown-item:active {
  background-color: transparent;
}
.cid-tw29Uq0UrN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tw29Uq0UrN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tw29Uq0UrN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #08579f;
}
.cid-tw29Uq0UrN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tw29Uq0UrN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tw29Uq0UrN ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tw29Uq0UrN .navbar-buttons {
  text-align: center;
}
.cid-tw29Uq0UrN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tw29Uq0UrN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tw29Uq0UrN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tw29Uq0UrN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tw29Uq0UrN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tw29Uq0UrN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tw29Uq0UrN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tw29Uq0UrN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tw29Uq0UrN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tw29Uq0UrN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tw29Uq0UrN .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tw29Uq0UrN a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tw29Uq0UrN .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tw29Uq0UrN .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tw29Uq0UrN .soc-item {
  margin: .5rem .3rem;
}
.cid-tw29Uq0UrN .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tw29Uq0UrN .navbar {
    height: 77px;
  }
  .cid-tw29Uq0UrN .navbar.opened {
    height: auto;
  }
  .cid-tw29Uq0UrN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tw29UqN0Yu {
  padding-top: 135px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/violation-1200x450.jpeg");
}
.cid-tw29UqN0Yu .mbr-overlay {
  background: #1dc9cb;
  background: linear-gradient(90deg, #1dc9cb, #08579f);
}
.cid-tw29UqN0Yu .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tw29UqN0Yu .mbr-section-subtitle,
.cid-tw29UqN0Yu .mbr-section-btn {
  color: #f4f8fa;
}
.cid-txfq7EK1fw {
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: #f4f8fa;
}
.cid-txfq7EK1fw .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-txfq7EK1fw .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-txfq7EK1fw .text-content {
  padding-right: 1.5rem;
}
.cid-txfq7EK1fw .mbr-text {
  color: #8d97ad;
}
.cid-txfq7EK1fw .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-txfq7EK1fw .counter-container {
  padding-top: 1rem;
}
.cid-txfq7EK1fw .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-txfq7EK1fw .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-txfq7EK1fw .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-txfq7EK1fw .main-row {
    margin: 0;
  }
  .cid-txfq7EK1fw .mbr-section-title,
  .cid-txfq7EK1fw .mbr-text,
  .cid-txfq7EK1fw .list,
  .cid-txfq7EK1fw .mbr-section-btn {
    text-align: center !important;
  }
  .cid-txfq7EK1fw .text-content {
    padding: 0;
  }
}
.cid-txfq7EK1fw .mbr-text,
.cid-txfq7EK1fw .mbr-section-btn {
  color: #444444;
}
.cid-twoYOKsFpU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f4f8fa;
}
.cid-twoYOKsFpU .mbr-iconfont {
  font-size: 34px;
  width: 5.125rem;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-twoYOKsFpU .mbr-section-title {
  margin: 0;
}
.cid-twoYOKsFpU .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-twoYOKsFpU .card-img {
  text-align: inherit;
}
.cid-twoYOKsFpU .card-img span {
  background: linear-gradient(90deg, #2bdc9d, #3b7cb7);
}
.cid-twoYOKsFpU .mbr-text {
  color: #8d97ad;
}
.cid-twoYOKsFpU .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-twoYOKsFpU .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-tw29UsnZid {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(90deg, #1dc8cc, #08579f);
}
.cid-tw29UsnZid .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-tw29UtzzmA {
  padding-top: 15px;
  padding-bottom: 0px;
  background: linear-gradient(90deg, #1dc8cc, #08579f);
}
.cid-tw29UtzzmA .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-tytXGZoPbV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tytXGZoPbV .mbr-overlay {
  background: #efefef;
}
.cid-tytXGZoPbV .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tytXGZoPbV .client-name {
  color: #8d97ad;
}
.cid-tytXGZoPbV .wrap-img {
  padding-bottom: 1rem;
}
.cid-tytXGZoPbV .wrap-img img {
  max-width: 100%;
  display: inline-block;
  width: auto;
}
.cid-tytXGZoPbV .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-txm2CE73FI {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #08579f;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .content {
    text-align: center;
  }
  .cid-txm2CE73FI .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-txm2CE73FI .logo-subtitle {
  color: #f4f8fa;
}
.cid-txm2CE73FI .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txm2CE73FI .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txm2CE73FI .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txm2CE73FI .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-txm2CE73FI .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txm2CE73FI .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-txm2CE73FI .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txm2CE73FI .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txm2CE73FI .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txm2CE73FI .list-item {
  display: flex;
}
.cid-txm2CE73FI .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-txm2CE73FI ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txm2CE73FI ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-txm2CE73FI ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-txm2CE73FI .column-title {
  color: #f4f8fa;
}
.cid-txm2CE73FI P {
  color: #f4f8fa;
}
.cid-txm2CE73FI .mbr-text {
  color: #f4f8fa;
}
.cid-txlVSVJYKf .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-txlVSVJYKf .nav-item,
.cid-txlVSVJYKf .nav-link,
.cid-txlVSVJYKf .navbar-caption {
  font-weight: normal;
}
.cid-txlVSVJYKf .nav-item:focus,
.cid-txlVSVJYKf .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-txlVSVJYKf .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-txlVSVJYKf .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-txlVSVJYKf .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-txlVSVJYKf .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-txlVSVJYKf .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-txlVSVJYKf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-txlVSVJYKf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-txlVSVJYKf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txlVSVJYKf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txlVSVJYKf .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #08579f;
}
.cid-txlVSVJYKf .navbar.opened {
  transition: all .3s;
  background: #08579f !important;
}
.cid-txlVSVJYKf .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-txlVSVJYKf .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-txlVSVJYKf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txlVSVJYKf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txlVSVJYKf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.9rem - 1rem);
  }
}
.cid-txlVSVJYKf .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-txlVSVJYKf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txlVSVJYKf .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-txlVSVJYKf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txlVSVJYKf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-txlVSVJYKf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-txlVSVJYKf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txlVSVJYKf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txlVSVJYKf .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-txlVSVJYKf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txlVSVJYKf .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-txlVSVJYKf .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-txlVSVJYKf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-txlVSVJYKf .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-txlVSVJYKf .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-txlVSVJYKf .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-txlVSVJYKf .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-txlVSVJYKf .navbar.navbar-short {
  background: #08579f !important;
  min-height: 60px;
}
.cid-txlVSVJYKf .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-txlVSVJYKf .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-txlVSVJYKf .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-txlVSVJYKf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txlVSVJYKf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txlVSVJYKf .dropdown-item.active,
.cid-txlVSVJYKf .dropdown-item:active {
  background-color: transparent;
}
.cid-txlVSVJYKf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txlVSVJYKf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txlVSVJYKf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #08579f;
}
.cid-txlVSVJYKf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txlVSVJYKf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txlVSVJYKf ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-txlVSVJYKf .navbar-buttons {
  text-align: center;
}
.cid-txlVSVJYKf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-txlVSVJYKf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-txlVSVJYKf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-txlVSVJYKf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-txlVSVJYKf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-txlVSVJYKf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-txlVSVJYKf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-txlVSVJYKf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-txlVSVJYKf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-txlVSVJYKf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-txlVSVJYKf .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-txlVSVJYKf a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-txlVSVJYKf .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-txlVSVJYKf .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-txlVSVJYKf .soc-item {
  margin: .5rem .3rem;
}
.cid-txlVSVJYKf .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-txlVSVJYKf .navbar {
    height: 77px;
  }
  .cid-txlVSVJYKf .navbar.opened {
    height: auto;
  }
  .cid-txlVSVJYKf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txlVSWuDiB {
  padding-top: 135px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/tashkent-1600-350-1600x350.jpeg");
}
.cid-txlVSWuDiB .mbr-overlay {
  background: #1dc9cb;
  background: linear-gradient(90deg, #1dc9cb, #08579f);
}
.cid-txlVSWuDiB .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-txlVSWuDiB .mbr-section-subtitle,
.cid-txlVSWuDiB .mbr-section-btn {
  color: #f4f8fa;
}
.cid-txlWgzf0uY {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-txlWgzf0uY .google-map {
  height: 25rem;
  position: relative;
}
.cid-txlWgzf0uY .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-txlWgzf0uY .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-txlWgzf0uY .google-map[data-state] {
  background: #e9e5dc;
}
.cid-txlWgzf0uY .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-txlWgzf0uY .wrapper {
  margin-top: -10rem;
  background: #f4f8fa;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-txlWgzf0uY .form-container {
  padding: 3rem;
}
.cid-txlWgzf0uY .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-txlWgzf0uY .content-panel {
  padding: 2rem;
  background: linear-gradient(45deg, #1dc9cb, #08579f);
  height: 100%;
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
  overflow: hidden;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-txlWgzf0uY .mbr-text {
  color: #efefef;
}
@media (min-width: 992px) {
  .cid-txlWgzf0uY .form-group,
  .cid-txlWgzf0uY .input-group-btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-txlWgzf0uY .form-control {
  border-radius: .25rem !important;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  min-height: 40px;
}
.cid-txlWgzf0uY textarea.form-control {
  min-height: 170px;
}
@media (max-width: 767px) {
  .cid-txlWgzf0uY .main-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-txlWgzf0uY .text-block {
    margin-bottom: 2rem;
  }
  .cid-txlWgzf0uY .wrapper {
    margin-top: 0;
  }
}
.cid-txlWgzf0uY .social-list {
  margin-top: auto;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-txlWgzf0uY .social-list .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #fff;
}
.cid-txlWgzf0uY .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-txlWgzf0uY .social-list .soc-item {
  margin: 15px 3px 0px 3px;
}
.cid-txlWgzf0uY .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txlWgzf0uY .social-list a:hover {
  opacity: 1;
}
.cid-txlVSYwD6v {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(90deg, #1dc8cc, #08579f);
}
.cid-txlVSYwD6v .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-txlVSZqLvp {
  padding-top: 15px;
  padding-bottom: 0px;
  background: linear-gradient(90deg, #1dc8cc, #08579f);
}
.cid-txlVSZqLvp .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-tKmsAubVK7 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tKmsAubVK7 .mbr-overlay {
  background: #efefef;
}
.cid-tKmsAubVK7 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tKmsAubVK7 .client-name {
  color: #8d97ad;
}
.cid-tKmsAubVK7 .wrap-img {
  padding-bottom: 1rem;
}
.cid-tKmsAubVK7 .wrap-img img {
  max-width: 100%;
  display: inline-block;
  width: auto;
}
.cid-tKmsAubVK7 .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-txm2CE73FI {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #08579f;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .content {
    text-align: center;
  }
  .cid-txm2CE73FI .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-txm2CE73FI .logo-subtitle {
  color: #f4f8fa;
}
.cid-txm2CE73FI .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txm2CE73FI .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txm2CE73FI .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txm2CE73FI .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-txm2CE73FI .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txm2CE73FI .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-txm2CE73FI .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txm2CE73FI .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txm2CE73FI .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txm2CE73FI .list-item {
  display: flex;
}
.cid-txm2CE73FI .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-txm2CE73FI ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txm2CE73FI ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-txm2CE73FI ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-txm2CE73FI .column-title {
  color: #f4f8fa;
}
.cid-txm2CE73FI P {
  color: #f4f8fa;
}
.cid-txm2CE73FI .mbr-text {
  color: #f4f8fa;
}
.cid-txlI7nsm71 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-txlI7nsm71 .nav-item,
.cid-txlI7nsm71 .nav-link,
.cid-txlI7nsm71 .navbar-caption {
  font-weight: normal;
}
.cid-txlI7nsm71 .nav-item:focus,
.cid-txlI7nsm71 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-txlI7nsm71 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-txlI7nsm71 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-txlI7nsm71 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-txlI7nsm71 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-txlI7nsm71 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-txlI7nsm71 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-txlI7nsm71 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-txlI7nsm71 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txlI7nsm71 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txlI7nsm71 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #08579f;
}
.cid-txlI7nsm71 .navbar.opened {
  transition: all .3s;
  background: #08579f !important;
}
.cid-txlI7nsm71 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-txlI7nsm71 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-txlI7nsm71 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txlI7nsm71 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txlI7nsm71 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.9rem - 1rem);
  }
}
.cid-txlI7nsm71 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-txlI7nsm71 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txlI7nsm71 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-txlI7nsm71 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txlI7nsm71 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-txlI7nsm71 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-txlI7nsm71 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txlI7nsm71 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txlI7nsm71 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-txlI7nsm71 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txlI7nsm71 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-txlI7nsm71 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-txlI7nsm71 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-txlI7nsm71 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-txlI7nsm71 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-txlI7nsm71 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-txlI7nsm71 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-txlI7nsm71 .navbar.navbar-short {
  background: #08579f !important;
  min-height: 60px;
}
.cid-txlI7nsm71 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-txlI7nsm71 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-txlI7nsm71 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-txlI7nsm71 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txlI7nsm71 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txlI7nsm71 .dropdown-item.active,
.cid-txlI7nsm71 .dropdown-item:active {
  background-color: transparent;
}
.cid-txlI7nsm71 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txlI7nsm71 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txlI7nsm71 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #08579f;
}
.cid-txlI7nsm71 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txlI7nsm71 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txlI7nsm71 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-txlI7nsm71 .navbar-buttons {
  text-align: center;
}
.cid-txlI7nsm71 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-txlI7nsm71 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-txlI7nsm71 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-txlI7nsm71 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-txlI7nsm71 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-txlI7nsm71 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-txlI7nsm71 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-txlI7nsm71 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-txlI7nsm71 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-txlI7nsm71 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-txlI7nsm71 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-txlI7nsm71 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-txlI7nsm71 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-txlI7nsm71 .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-txlI7nsm71 .soc-item {
  margin: .5rem .3rem;
}
.cid-txlI7nsm71 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-txlI7nsm71 .navbar {
    height: 77px;
  }
  .cid-txlI7nsm71 .navbar.opened {
    height: auto;
  }
  .cid-txlI7nsm71 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txlI7ojzH8 {
  padding-top: 135px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/service-2000x437.jpeg");
}
.cid-txlI7ojzH8 .mbr-overlay {
  background: #1dc9cb;
  background: linear-gradient(90deg, #1dc9cb, #08579f);
}
.cid-txlI7ojzH8 .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-txlI7ojzH8 .mbr-section-subtitle,
.cid-txlI7ojzH8 .mbr-section-btn {
  color: #f4f8fa;
}
.cid-txlI7oJaau {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #f4f8fa;
}
.cid-txlI7oJaau .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-txlI7oJaau .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-txlI7oJaau .text-content {
  padding-right: 1.5rem;
}
.cid-txlI7oJaau .mbr-text {
  color: #8d97ad;
}
.cid-txlI7oJaau .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-txlI7oJaau .counter-container {
  padding-top: 1rem;
}
.cid-txlI7oJaau .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-txlI7oJaau .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-txlI7oJaau .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-txlI7oJaau .main-row {
    margin: 0;
  }
  .cid-txlI7oJaau .mbr-section-title,
  .cid-txlI7oJaau .mbr-text,
  .cid-txlI7oJaau .list,
  .cid-txlI7oJaau .mbr-section-btn {
    text-align: center !important;
  }
  .cid-txlI7oJaau .text-content {
    padding: 0;
  }
}
.cid-txlI7oJaau .mbr-text,
.cid-txlI7oJaau .mbr-section-btn {
  color: #444444;
}
.cid-txlI7qcpgw {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(90deg, #1dc8cc, #08579f);
}
.cid-txlI7qcpgw .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-txm2CE73FI {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #08579f;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .content {
    text-align: center;
  }
  .cid-txm2CE73FI .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-txm2CE73FI .logo-subtitle {
  color: #f4f8fa;
}
.cid-txm2CE73FI .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txm2CE73FI .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txm2CE73FI .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txm2CE73FI .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-txm2CE73FI .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txm2CE73FI .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-txm2CE73FI .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txm2CE73FI .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txm2CE73FI .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txm2CE73FI .list-item {
  display: flex;
}
.cid-txm2CE73FI .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-txm2CE73FI ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txm2CE73FI ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-txm2CE73FI ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-txm2CE73FI .column-title {
  color: #f4f8fa;
}
.cid-txm2CE73FI P {
  color: #f4f8fa;
}
.cid-txm2CE73FI .mbr-text {
  color: #f4f8fa;
}
.cid-tw2cKntFIP .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tw2cKntFIP .nav-item,
.cid-tw2cKntFIP .nav-link,
.cid-tw2cKntFIP .navbar-caption {
  font-weight: normal;
}
.cid-tw2cKntFIP .nav-item:focus,
.cid-tw2cKntFIP .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tw2cKntFIP .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tw2cKntFIP .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tw2cKntFIP .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tw2cKntFIP .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tw2cKntFIP .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tw2cKntFIP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tw2cKntFIP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tw2cKntFIP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tw2cKntFIP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tw2cKntFIP .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #08579f;
}
.cid-tw2cKntFIP .navbar.opened {
  transition: all .3s;
  background: #08579f !important;
}
.cid-tw2cKntFIP .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tw2cKntFIP .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tw2cKntFIP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tw2cKntFIP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tw2cKntFIP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.9rem - 1rem);
  }
}
.cid-tw2cKntFIP .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tw2cKntFIP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tw2cKntFIP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tw2cKntFIP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tw2cKntFIP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tw2cKntFIP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tw2cKntFIP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tw2cKntFIP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tw2cKntFIP .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tw2cKntFIP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tw2cKntFIP .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tw2cKntFIP .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tw2cKntFIP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tw2cKntFIP .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tw2cKntFIP .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tw2cKntFIP .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tw2cKntFIP .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tw2cKntFIP .navbar.navbar-short {
  background: #08579f !important;
  min-height: 60px;
}
.cid-tw2cKntFIP .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tw2cKntFIP .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tw2cKntFIP .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tw2cKntFIP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tw2cKntFIP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tw2cKntFIP .dropdown-item.active,
.cid-tw2cKntFIP .dropdown-item:active {
  background-color: transparent;
}
.cid-tw2cKntFIP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tw2cKntFIP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tw2cKntFIP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #08579f;
}
.cid-tw2cKntFIP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tw2cKntFIP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tw2cKntFIP ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tw2cKntFIP .navbar-buttons {
  text-align: center;
}
.cid-tw2cKntFIP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tw2cKntFIP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tw2cKntFIP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tw2cKntFIP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tw2cKntFIP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tw2cKntFIP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tw2cKntFIP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tw2cKntFIP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tw2cKntFIP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tw2cKntFIP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tw2cKntFIP .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tw2cKntFIP a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tw2cKntFIP .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tw2cKntFIP .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tw2cKntFIP .soc-item {
  margin: .5rem .3rem;
}
.cid-tw2cKntFIP .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tw2cKntFIP .navbar {
    height: 77px;
  }
  .cid-tw2cKntFIP .navbar.opened {
    height: auto;
  }
  .cid-tw2cKntFIP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tw2cKoekKJ {
  padding-top: 135px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/violation-1-2000x437.jpg");
}
.cid-tw2cKoekKJ .mbr-overlay {
  background: #1dc9cb;
  background: linear-gradient(90deg, #1dc9cb, #08579f);
}
.cid-tw2cKoekKJ .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tw2cKoekKJ .mbr-section-subtitle,
.cid-tw2cKoekKJ .mbr-section-btn {
  color: #f4f8fa;
}
.cid-tw2cKoD3TT {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(90deg, #1dc8cc, #08579f);
}
.cid-tw2cKoD3TT .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-tw2dmDaX2X {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tw2dmDaX2X .mbr-section-subtitle {
  color: #444444;
}
.cid-tw2dmDaX2X .container-table {
  margin: 0 auto;
}
.cid-tw2dmDaX2X .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tw2dmDaX2X .dataTables_wrapper {
  display: block;
}
.cid-tw2dmDaX2X .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tw2dmDaX2X .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tw2dmDaX2X table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #8d97ad;
  margin-bottom: 0;
}
.cid-tw2dmDaX2X table th {
  border-top: none;
  font-weight: 500;
  border: 1px solid #8d97ad;
  transition: all .2s;
}
.cid-tw2dmDaX2X table th:hover {
  background: #8d97ad;
  color: #ffffff;
}
.cid-tw2dmDaX2X table td {
  border: 1px solid #8d97ad;
}
.cid-tw2dmDaX2X table.table {
  background: #f4f8fa;
}
.cid-tw2dmDaX2X .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tw2dmDaX2X .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tw2dmDaX2X .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tw2dmDaX2X .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tw2dmDaX2X .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tw2dmDaX2X .dataTables_filter {
    text-align: center;
  }
  .cid-tw2dmDaX2X .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tw2dmDaX2X .head-item {
  color: #57468b;
  text-align: center;
}
.cid-tw2dmDaX2X .body-item {
  color: #716c80;
  text-align: center;
}
.cid-tw2dmDaX2X .mbr-section-title {
  color: #000000;
}
.cid-tw2dmDaX2X .head-item1 {
  color: #57468b;
}
.cid-tw2dmDaX2X .body-item1 {
  color: #716c80;
  text-align: left;
}
.cid-txm2CE73FI {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #08579f;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .content {
    text-align: center;
  }
  .cid-txm2CE73FI .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-txm2CE73FI .logo-subtitle {
  color: #f4f8fa;
}
.cid-txm2CE73FI .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txm2CE73FI .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txm2CE73FI .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txm2CE73FI .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-txm2CE73FI .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txm2CE73FI .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-txm2CE73FI .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txm2CE73FI .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txm2CE73FI .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txm2CE73FI .list-item {
  display: flex;
}
.cid-txm2CE73FI .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-txm2CE73FI ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txm2CE73FI ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-txm2CE73FI ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-txm2CE73FI .column-title {
  color: #f4f8fa;
}
.cid-txm2CE73FI P {
  color: #f4f8fa;
}
.cid-txm2CE73FI .mbr-text {
  color: #f4f8fa;
}
.cid-tvKgj4ihCc .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tvKgj4ihCc .nav-item,
.cid-tvKgj4ihCc .nav-link,
.cid-tvKgj4ihCc .navbar-caption {
  font-weight: normal;
}
.cid-tvKgj4ihCc .nav-item:focus,
.cid-tvKgj4ihCc .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tvKgj4ihCc .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tvKgj4ihCc .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tvKgj4ihCc .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tvKgj4ihCc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tvKgj4ihCc .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tvKgj4ihCc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tvKgj4ihCc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tvKgj4ihCc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvKgj4ihCc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvKgj4ihCc .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #08579f;
}
.cid-tvKgj4ihCc .navbar.opened {
  transition: all .3s;
  background: #08579f !important;
}
.cid-tvKgj4ihCc .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tvKgj4ihCc .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvKgj4ihCc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvKgj4ihCc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvKgj4ihCc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.9rem - 1rem);
  }
}
.cid-tvKgj4ihCc .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tvKgj4ihCc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvKgj4ihCc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tvKgj4ihCc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvKgj4ihCc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tvKgj4ihCc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tvKgj4ihCc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvKgj4ihCc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvKgj4ihCc .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tvKgj4ihCc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvKgj4ihCc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tvKgj4ihCc .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tvKgj4ihCc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvKgj4ihCc .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tvKgj4ihCc .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tvKgj4ihCc .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tvKgj4ihCc .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tvKgj4ihCc .navbar.navbar-short {
  background: #08579f !important;
  min-height: 60px;
}
.cid-tvKgj4ihCc .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tvKgj4ihCc .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tvKgj4ihCc .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvKgj4ihCc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvKgj4ihCc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvKgj4ihCc .dropdown-item.active,
.cid-tvKgj4ihCc .dropdown-item:active {
  background-color: transparent;
}
.cid-tvKgj4ihCc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvKgj4ihCc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvKgj4ihCc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #08579f;
}
.cid-tvKgj4ihCc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvKgj4ihCc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvKgj4ihCc ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tvKgj4ihCc .navbar-buttons {
  text-align: center;
}
.cid-tvKgj4ihCc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tvKgj4ihCc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvKgj4ihCc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tvKgj4ihCc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tvKgj4ihCc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tvKgj4ihCc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tvKgj4ihCc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tvKgj4ihCc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tvKgj4ihCc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tvKgj4ihCc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tvKgj4ihCc .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tvKgj4ihCc a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tvKgj4ihCc .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tvKgj4ihCc .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tvKgj4ihCc .soc-item {
  margin: .5rem .3rem;
}
.cid-tvKgj4ihCc .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tvKgj4ihCc .navbar {
    height: 77px;
  }
  .cid-tvKgj4ihCc .navbar.opened {
    height: auto;
  }
  .cid-tvKgj4ihCc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tvKgj5bUtY {
  padding-top: 105px;
  padding-bottom: 45px;
  background: linear-gradient(90deg, #1dc9cb, #08579f);
}
.cid-tvKgj5bUtY .mbr-overlay {
  background: #1dc9cb;
  background: linear-gradient(90deg, #1dc9cb, #08579f);
}
.cid-tvKgj5bUtY .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tvKgj5bUtY .mbr-section-subtitle,
.cid-tvKgj5bUtY .mbr-section-btn {
  color: #f4f8fa;
}
.cid-tvKgj5BLd7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tvKgj5BLd7 h2 {
  margin-bottom: 10px;
  color: #130947;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 700;
}
.cid-tvKgj5BLd7 .nav-tabs .nav-item.open .nav-link:focus,
.cid-tvKgj5BLd7 .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tvKgj5BLd7 .nav-link.active {
  background: #08579f;
}
.cid-tvKgj5BLd7 .nav-link {
  background: white;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 16px 25px;
  line-height: 1.5;
  border-radius: 0;
  text-align: left;
  margin: 0px;
  font-weight: 700 !important;
  position: relative;
}
.cid-tvKgj5BLd7 .nav-link:hover {
  background: #08579f;
}
.cid-tvKgj5BLd7 .nav-link .mbr-iconfont {
  font-weight: bold;
  position: absolute;
  top: 13px;
  right: 20px;
  width: 30px;
  height: 30px;
  background-color: #f2f3f7;
  line-height: 1.9;
  text-align: center;
  border-radius: 50%;
  color: #000000;
  font-size: 17px;
}
.cid-tvKgj5BLd7 .nav-link .mbr-iconfont:before {
  margin-left: 3px;
}
.cid-tvKgj5BLd7 .nav-link.display-4 {
  font-size: 15px;
}
.cid-tvKgj5BLd7 .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #e5e8ef;
  -webkit-box-pack: center;
  justify-content: center;
  border: 1px solid #e5e8ef;
}
.cid-tvKgj5BLd7 .nav-tabs .nav-item {
  padding: 0;
  -webkit-box-flex: 1;
  flex: 1 1 100%;
}
.cid-tvKgj5BLd7 .nav-tabs .nav-link {
  color: #04367c;
  font-style: normal;
  font-weight: 500;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border: none;
}
.cid-tvKgj5BLd7 .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #ffffff;
}
.cid-tvKgj5BLd7 .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
}
.cid-tvKgj5BLd7 .widget {
  margin-top: 30px;
  background-color: #ffffff;
  border-radius: 0.25rem;
}
.cid-tvKgj5BLd7 .widget .textwidget .single-service-contact {
  position: relative;
  overflow: hidden;
  line-height: 1.5;
  color: #fff;
}
.cid-tvKgj5BLd7 .widget .textwidget .single-service-contact .img-wrap {
  margin: 0 0 25px;
}
.cid-tvKgj5BLd7 .widget .textwidget .single-service-contact .img-wrap img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: 4px;
}
.cid-tvKgj5BLd7 .widget .textwidget .single-service-contact-inner {
  text-align: center;
  color: #fff;
  padding: 0 30px 15px;
  position: relative;
}
.cid-tvKgj5BLd7 .widget .textwidget .single-service-contact-inner::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-left: 344px solid white;
  border-bottom: 0 solid transparent;
  left: -10px;
  top: -57px;
  -webkit-transform: rotate(-7deg);
  transform: rotate(-7deg);
}
.cid-tvKgj5BLd7 .widget .textwidget .single-service-contact-inner::after {
  border-right-color: #ffffff;
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-top: 73px solid transparent;
  border-right: 382px solid #ffffff;
  border-bottom: 0 solid transparent;
  left: -9px;
  top: -83px;
  -webkit-transform: rotate(4deg);
  transform: rotate(4deg);
}
.cid-tvKgj5BLd7 .widget .textwidget .single-service-contact-inner .iconbox {
  margin-bottom: 30px;
}
.cid-tvKgj5BLd7 .widget .textwidget .single-service-contact-inner .iconbox span {
  font-size: 60px;
  line-height: 1;
}
.cid-tvKgj5BLd7 .widget .textwidget .single-service-contact-inner h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}
.cid-tvKgj5BLd7 .widget .textwidget .single-service-contact-inner h2.display-2 {
  font-size: 22px;
  line-height: 1.09;
  letter-spacing: -0.5px;
}
.cid-tvKgj5BLd7 .widget .textwidget .single-service-contact-inner .mbr-text.display-7 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-tvKgj5BLd7 .widget .textwidget .single-service-contact-inner .mbr-text {
  font-weight: 400;
}
.cid-tvKgj5BLd7 .widget .textwidget .single-service-contact-inner .mbr-section-btn {
  margin-bottom: 25px;
}
.cid-tvKgj5BLd7 .widget .textwidget .single-service-contact-inner .mbr-section-btn .btn {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-style: normal;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 40px;
  padding-right: 40px;
  margin-top: 20px;
  border-radius: 0.25em;
  display: inline-block;
}
.cid-tvKgj5BLd7 .widget .textwidget .single-service-contact-inner .mbr-section-btn .btn.display-4 {
  font-size: 12px;
}
.cid-tvKgj5BLd7 .tab-pane img {
  display: block;
  box-shadow: 0 0 50px rgba(79, 110, 173, 0.1);
  border-radius: 4px;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  margin-bottom: 50px;
}
.cid-tvKgj5BLd7 .tab-pane .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-tvKgj5BLd7 .tab-pane .mbr-section-title.display-5 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tvKgj5BLd7 .tab-pane .mbr-text {
  color: #6d7a8c;
}
.cid-tvKgj5BLd7 .tab-pane .mbr-text.display-7 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-tvKgj5BLd7 .tab-pane .wrapper {
  border-radius: 0.25rem;
  padding: 1rem;
  background: #ffffff;
}
.cid-tvKgj5BLd7 .tab-pane .wrapper .img {
  margin-bottom: 20px;
}
.cid-tvKgj5BLd7 .tab-pane .wrapper .img .mbr-iconfont {
  font-size: 50px;
  top: 0;
  color: #4f87fb;
  border-radius: 50%;
}
.cid-tvKgj5BLd7 .tab-pane .wrapper .mbr-card-title {
  font-weight: 700;
  padding-bottom: 14px;
  margin-bottom: 10px;
  color: #130947;
}
.cid-tvKgj5BLd7 .tab-pane .wrapper .mbr-card-title.display-7 {
  line-height: 1.4;
  letter-spacing: -0.5px;
  font-size: 20px;
}
.cid-tvKgj5BLd7 .tab-pane .wrapper .mbr-text {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-tvKgj5BLd7 .tab-pane .wrapper .mbr-text.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 992px) {
  .cid-tvKgj5BLd7 .nav-tabs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: center;
    justify-content: center;
    border-right: 0px;
    padding-right: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tvKgj5BLd7 .mbr-text,
  .cid-tvKgj5BLd7 .nav-link,
  .cid-tvKgj5BLd7 .mbr-card-title,
  .cid-tvKgj5BLd7 .mbr-section-title {
    text-align: left;
  }
  .cid-tvKgj5BLd7 .nav-tabs {
    border-right: 0px;
    padding-right: 0rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tvKgj5BLd7 .single-service-contact-inner .mbr-text {
    text-align: center;
  }
}
.cid-tvKgj5BLd7 .tab-content .tab-pane .mbr-text {
  color: #444444;
}
.cid-tvKgj5BLd7 H2 {
  text-align: center;
}
.cid-tvKgj5BLd7 .tab-content .tab-pane .mbr-section-title {
  text-align: left;
}
.cid-tvKgj9pkYh {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(90deg, #1dc8cc, #08579f);
}
.cid-tvKgj9pkYh .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-tvKgj9LjWN {
  padding-top: 15px;
  padding-bottom: 0px;
  background: linear-gradient(90deg, #1dc8cc, #08579f);
}
.cid-tvKgj9LjWN .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-tw1kbuSTSQ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f4f8fa;
}
.cid-tw1kbuSTSQ .title_block {
  margin-bottom: 80px;
}
.cid-tw1kbuSTSQ .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #04367c;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-tw1kbuSTSQ .mbr-section-title {
  color: #444444;
  text-align: center;
}
.cid-tw1kbuSTSQ .mbr-item-subtitle {
  margin-top: 15px;
  margin-bottom: 10px;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  color: #efefef;
}
.cid-tw1kbuSTSQ .item {
  padding-bottom: 2rem;
}
.cid-tw1kbuSTSQ .image-wrapper {
  overflow: hidden;
  height: 200px;
}
.cid-tw1kbuSTSQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tw1kbuSTSQ .item-wrapper {
  position: relative;
}
.cid-tw1kbuSTSQ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-tw1kbuSTSQ .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-tw1kbuSTSQ .item-wrapper:hover .mbr-item-subtitle a {
  color: #04367c !important;
}
.cid-tw1kbuSTSQ .item-wrapper:hover img {
  transform: scale(1.1);
}
.cid-tw1kbuSTSQ .carousel-control,
.cid-tw1kbuSTSQ .close {
  background: #1b1b1b;
}
.cid-tw1kbuSTSQ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tw1kbuSTSQ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tw1kbuSTSQ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tw1kbuSTSQ .carousel-control-next span {
  margin-left: 5px;
}
.cid-tw1kbuSTSQ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tw1kbuSTSQ .close::before {
  content: '\e91a';
}
.cid-tw1kbuSTSQ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tw1kbuSTSQ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tw1kbuSTSQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tw1kbuSTSQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tw1kbuSTSQ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tw1kbuSTSQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tw1kbuSTSQ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tw1kbuSTSQ .carousel-indicators li.active,
.cid-tw1kbuSTSQ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tw1kbuSTSQ .carousel-indicators li::after,
.cid-tw1kbuSTSQ .carousel-indicators li::before {
  content: none;
}
.cid-tw1kbuSTSQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tw1kbuSTSQ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tw1kbuSTSQ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tw1kbuSTSQ .carousel-indicators {
    display: none;
  }
}
.cid-tw1kbuSTSQ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tw1kbuSTSQ .carousel-inner > .active {
  display: block;
}
.cid-tw1kbuSTSQ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tw1kbuSTSQ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tw1kbuSTSQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tw1kbuSTSQ .carousel-control,
  .cid-tw1kbuSTSQ .carousel-indicators,
  .cid-tw1kbuSTSQ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tw1kbuSTSQ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tw1kbuSTSQ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tw1kbuSTSQ .carousel-indicators .active,
.cid-tw1kbuSTSQ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tw1kbuSTSQ .carousel-indicators .active {
  background: #fff;
}
.cid-tw1kbuSTSQ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tw1kbuSTSQ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tw1kbuSTSQ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tw1kbuSTSQ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tw1kbuSTSQ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tw1kbuSTSQ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tw1kbuSTSQ .carousel {
  width: 100%;
}
.cid-tw1kbuSTSQ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tw1kbuSTSQ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tw1kbuSTSQ .modal.fade .modal-dialog,
.cid-tw1kbuSTSQ .modal.in .modal-dialog {
  transform: none;
}
.cid-tw1kbuSTSQ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tvQG7uftrw {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvQG7uftrw .mbr-section-title {
  margin-bottom: 50px;
}
.cid-tvQG7uftrw .container-table {
  margin: 0 auto;
}
.cid-tvQG7uftrw .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tvQG7uftrw tbody tr:nth-child(odd) {
  background-color: #f5f4f6;
}
.cid-tvQG7uftrw .dataTables_wrapper {
  display: block;
}
.cid-tvQG7uftrw .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tvQG7uftrw .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tvQG7uftrw .head-item {
  color: #04367c;
  min-width: 110px;
  letter-spacing: 2px;
}
.cid-tvQG7uftrw .body-item {
  color: #212529;
}
.cid-tvQG7uftrw .table td,
.cid-tvQG7uftrw .table th {
  border: none;
}
.cid-tvQG7uftrw table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tvQG7uftrw table th {
  padding: 24px 15px 20px 15px;
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tvQG7uftrw table td {
  padding: 24px 15px 20px 15px;
}
.cid-tvQG7uftrw .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tvQG7uftrw .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tvQG7uftrw .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tvQG7uftrw .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tvQG7uftrw .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tvQG7uftrw .dataTables_filter {
    text-align: center;
  }
  .cid-tvQG7uftrw .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tvQG7uftrw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvQG7uftrw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tw1PsDmYgB {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f4f8fa;
}
.cid-tw1PsDmYgB .title_block {
  margin-bottom: 80px;
}
.cid-tw1PsDmYgB .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #04367c;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-tw1PsDmYgB .mbr-section-title {
  color: #444444;
}
.cid-tw1PsDmYgB .mbr-item-subtitle {
  margin-top: 15px;
  margin-bottom: 10px;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  color: #efefef;
}
.cid-tw1PsDmYgB .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tw1PsDmYgB .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tw1PsDmYgB .image-wrapper {
  overflow: hidden;
  height: 300px;
}
.cid-tw1PsDmYgB .image-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tw1PsDmYgB .item-wrapper {
  position: relative;
}
.cid-tw1PsDmYgB .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-tw1PsDmYgB .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-tw1PsDmYgB .item-wrapper:hover .mbr-item-subtitle a {
  color: #04367c !important;
}
.cid-tw1PsDmYgB .item-wrapper:hover img {
  transform: scale(1.1);
}
.cid-tw1PsDmYgB .carousel-control,
.cid-tw1PsDmYgB .close {
  background: #1b1b1b;
}
.cid-tw1PsDmYgB .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tw1PsDmYgB .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tw1PsDmYgB .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tw1PsDmYgB .carousel-control-next span {
  margin-left: 5px;
}
.cid-tw1PsDmYgB .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tw1PsDmYgB .close::before {
  content: '\e91a';
}
.cid-tw1PsDmYgB .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tw1PsDmYgB .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tw1PsDmYgB .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tw1PsDmYgB .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tw1PsDmYgB .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tw1PsDmYgB .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tw1PsDmYgB .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tw1PsDmYgB .carousel-indicators li.active,
.cid-tw1PsDmYgB .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tw1PsDmYgB .carousel-indicators li::after,
.cid-tw1PsDmYgB .carousel-indicators li::before {
  content: none;
}
.cid-tw1PsDmYgB .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tw1PsDmYgB .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tw1PsDmYgB .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tw1PsDmYgB .carousel-indicators {
    display: none;
  }
}
.cid-tw1PsDmYgB .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tw1PsDmYgB .carousel-inner > .active {
  display: block;
}
.cid-tw1PsDmYgB .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tw1PsDmYgB .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tw1PsDmYgB .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tw1PsDmYgB .carousel-control,
  .cid-tw1PsDmYgB .carousel-indicators,
  .cid-tw1PsDmYgB .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tw1PsDmYgB .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tw1PsDmYgB .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tw1PsDmYgB .carousel-indicators .active,
.cid-tw1PsDmYgB .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tw1PsDmYgB .carousel-indicators .active {
  background: #fff;
}
.cid-tw1PsDmYgB .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tw1PsDmYgB .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tw1PsDmYgB .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tw1PsDmYgB .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tw1PsDmYgB .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tw1PsDmYgB .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tw1PsDmYgB .carousel {
  width: 100%;
}
.cid-tw1PsDmYgB .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tw1PsDmYgB .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tw1PsDmYgB .modal.fade .modal-dialog,
.cid-tw1PsDmYgB .modal.in .modal-dialog {
  transform: none;
}
.cid-tw1PsDmYgB .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tw1PsDmYgB .descr mb-0 {
  text-align: center;
}
.cid-tUmPf9AGeB {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tUmPf9AGeB .mbr-section-title {
  margin-bottom: 50px;
}
.cid-tUmPf9AGeB .container-table {
  margin: 0 auto;
}
.cid-tUmPf9AGeB .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tUmPf9AGeB tbody tr:nth-child(even) {
  background-color: #f5f4f6;
}
.cid-tUmPf9AGeB .dataTables_wrapper {
  display: block;
}
.cid-tUmPf9AGeB .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tUmPf9AGeB .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tUmPf9AGeB .head-item {
  color: #04367c;
  min-width: 110px;
  letter-spacing: 2px;
}
.cid-tUmPf9AGeB .body-item {
  color: #212529;
  text-align: left;
}
.cid-tUmPf9AGeB .table td,
.cid-tUmPf9AGeB .table th {
  border: none;
}
.cid-tUmPf9AGeB table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tUmPf9AGeB table th {
  padding: 24px 15px 20px 15px;
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tUmPf9AGeB table td {
  padding: 24px 15px 20px 15px;
}
.cid-tUmPf9AGeB .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tUmPf9AGeB .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tUmPf9AGeB .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tUmPf9AGeB .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tUmPf9AGeB .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tUmPf9AGeB .dataTables_filter {
    text-align: center;
  }
  .cid-tUmPf9AGeB .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tUmPf9AGeB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUmPf9AGeB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvKUTOmzXa {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvKUTOmzXa .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-tvKUTOmzXa .mbr-section-title {
  margin: 0;
}
.cid-tvKUTOmzXa .card-img {
  text-align: center;
}
.cid-tvKUTOmzXa .mbr-section-subtitle,
.cid-tvKUTOmzXa .mbr-text {
  color: #8d97ad;
}
.cid-tvKUTOmzXa .row-item {
  border-radius: .25rem;
  background: #ffffff;
  padding: 2.5rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 767px) {
  .cid-tvKUTOmzXa .card-img,
  .cid-tvKUTOmzXa .mbr-text,
  .cid-tvKUTOmzXa .mbr-card-title,
  .cid-tvKUTOmzXa .mbr-section-subtitle,
  .cid-tvKUTOmzXa .mbr-section-title,
  .cid-tvKUTOmzXa .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-tvKUTOmzXa .row-item {
    margin-bottom: 2rem;
  }
}
.cid-tvKUTOmzXa .mbr-text {
  color: #444444;
}
.cid-txm2CE73FI {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #08579f;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .content {
    text-align: center;
  }
  .cid-txm2CE73FI .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-txm2CE73FI .logo-subtitle {
  color: #f4f8fa;
}
.cid-txm2CE73FI .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txm2CE73FI .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txm2CE73FI .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txm2CE73FI .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-txm2CE73FI .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txm2CE73FI .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-txm2CE73FI .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txm2CE73FI .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txm2CE73FI .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txm2CE73FI .list-item {
  display: flex;
}
.cid-txm2CE73FI .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-txm2CE73FI ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txm2CE73FI ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-txm2CE73FI ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-txm2CE73FI .column-title {
  color: #f4f8fa;
}
.cid-txm2CE73FI P {
  color: #f4f8fa;
}
.cid-txm2CE73FI .mbr-text {
  color: #f4f8fa;
}
.cid-tw23O86K6o .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tw23O86K6o .nav-item,
.cid-tw23O86K6o .nav-link,
.cid-tw23O86K6o .navbar-caption {
  font-weight: normal;
}
.cid-tw23O86K6o .nav-item:focus,
.cid-tw23O86K6o .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tw23O86K6o .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tw23O86K6o .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tw23O86K6o .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tw23O86K6o .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tw23O86K6o .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tw23O86K6o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tw23O86K6o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tw23O86K6o .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tw23O86K6o .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tw23O86K6o .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #08579f;
}
.cid-tw23O86K6o .navbar.opened {
  transition: all .3s;
  background: #08579f !important;
}
.cid-tw23O86K6o .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tw23O86K6o .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tw23O86K6o .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tw23O86K6o .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tw23O86K6o .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.9rem - 1rem);
  }
}
.cid-tw23O86K6o .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tw23O86K6o .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tw23O86K6o .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tw23O86K6o .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tw23O86K6o .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tw23O86K6o .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tw23O86K6o .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tw23O86K6o .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tw23O86K6o .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tw23O86K6o .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tw23O86K6o .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tw23O86K6o .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tw23O86K6o .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tw23O86K6o .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tw23O86K6o .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tw23O86K6o .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tw23O86K6o .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tw23O86K6o .navbar.navbar-short {
  background: #08579f !important;
  min-height: 60px;
}
.cid-tw23O86K6o .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tw23O86K6o .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tw23O86K6o .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tw23O86K6o .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tw23O86K6o .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tw23O86K6o .dropdown-item.active,
.cid-tw23O86K6o .dropdown-item:active {
  background-color: transparent;
}
.cid-tw23O86K6o .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tw23O86K6o .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tw23O86K6o .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #08579f;
}
.cid-tw23O86K6o .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tw23O86K6o .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tw23O86K6o ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tw23O86K6o .navbar-buttons {
  text-align: center;
}
.cid-tw23O86K6o button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tw23O86K6o button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tw23O86K6o button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tw23O86K6o button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tw23O86K6o button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tw23O86K6o button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tw23O86K6o nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tw23O86K6o nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tw23O86K6o nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tw23O86K6o nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tw23O86K6o .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tw23O86K6o a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tw23O86K6o .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tw23O86K6o .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tw23O86K6o .soc-item {
  margin: .5rem .3rem;
}
.cid-tw23O86K6o .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tw23O86K6o .navbar {
    height: 77px;
  }
  .cid-tw23O86K6o .navbar.opened {
    height: auto;
  }
  .cid-tw23O86K6o .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tw23O8U40V {
  padding-top: 120px;
  padding-bottom: 45px;
  background: linear-gradient(90deg, #1dc9cb, #08579f);
}
.cid-tw23O8U40V .mbr-overlay {
  background: #1dc9cb;
  background: linear-gradient(90deg, #1dc9cb, #08579f);
}
.cid-tw23O8U40V .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tw23O8U40V .mbr-section-subtitle,
.cid-tw23O8U40V .mbr-section-btn {
  color: #f4f8fa;
}
.cid-tw23O9qxg4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tw23O9qxg4 h2 {
  margin-bottom: 10px;
  color: #130947;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 700;
}
.cid-tw23O9qxg4 .nav-tabs .nav-item.open .nav-link:focus,
.cid-tw23O9qxg4 .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tw23O9qxg4 .nav-link.active {
  background: #08579f;
}
.cid-tw23O9qxg4 .nav-link {
  background: white;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 16px 25px;
  line-height: 1.5;
  border-radius: 0;
  text-align: left;
  margin: 0px;
  font-weight: 700 !important;
  position: relative;
}
.cid-tw23O9qxg4 .nav-link:hover {
  background: #08579f;
}
.cid-tw23O9qxg4 .nav-link .mbr-iconfont {
  font-weight: bold;
  position: absolute;
  top: 13px;
  right: 20px;
  width: 30px;
  height: 30px;
  background-color: #f2f3f7;
  line-height: 1.9;
  text-align: center;
  border-radius: 50%;
  color: #000000;
  font-size: 17px;
}
.cid-tw23O9qxg4 .nav-link .mbr-iconfont:before {
  margin-left: 3px;
}
.cid-tw23O9qxg4 .nav-link.display-4 {
  font-size: 15px;
}
.cid-tw23O9qxg4 .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #e5e8ef;
  -webkit-box-pack: center;
  justify-content: center;
  border: 1px solid #e5e8ef;
}
.cid-tw23O9qxg4 .nav-tabs .nav-item {
  padding: 0;
  -webkit-box-flex: 1;
  flex: 1 1 100%;
}
.cid-tw23O9qxg4 .nav-tabs .nav-link {
  color: #04367c;
  font-style: normal;
  font-weight: 500;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border: none;
}
.cid-tw23O9qxg4 .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #ffffff;
}
.cid-tw23O9qxg4 .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
}
.cid-tw23O9qxg4 .widget {
  margin-top: 30px;
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tw23O9qxg4 .widget .textwidget .single-service-contact {
  position: relative;
  overflow: hidden;
  line-height: 1.5;
  color: #fff;
}
.cid-tw23O9qxg4 .widget .textwidget .single-service-contact .img-wrap {
  margin: 0 0 25px;
}
.cid-tw23O9qxg4 .widget .textwidget .single-service-contact .img-wrap img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: 4px;
}
.cid-tw23O9qxg4 .widget .textwidget .single-service-contact-inner {
  text-align: center;
  color: #fff;
  padding: 0 30px 15px;
  position: relative;
}
.cid-tw23O9qxg4 .widget .textwidget .single-service-contact-inner::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-left: 344px solid white;
  border-bottom: 0 solid transparent;
  left: -10px;
  top: -57px;
  -webkit-transform: rotate(-7deg);
  transform: rotate(-7deg);
}
.cid-tw23O9qxg4 .widget .textwidget .single-service-contact-inner::after {
  border-right-color: #ffffff;
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-top: 73px solid transparent;
  border-right: 382px solid #ffffff;
  border-bottom: 0 solid transparent;
  left: -9px;
  top: -83px;
  -webkit-transform: rotate(4deg);
  transform: rotate(4deg);
}
.cid-tw23O9qxg4 .widget .textwidget .single-service-contact-inner .iconbox {
  margin-bottom: 30px;
}
.cid-tw23O9qxg4 .widget .textwidget .single-service-contact-inner .iconbox span {
  font-size: 60px;
  line-height: 1;
}
.cid-tw23O9qxg4 .widget .textwidget .single-service-contact-inner h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}
.cid-tw23O9qxg4 .widget .textwidget .single-service-contact-inner h2.display-2 {
  font-size: 22px;
  line-height: 1.09;
  letter-spacing: -0.5px;
}
.cid-tw23O9qxg4 .widget .textwidget .single-service-contact-inner .mbr-text.display-7 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-tw23O9qxg4 .widget .textwidget .single-service-contact-inner .mbr-text {
  font-weight: 400;
}
.cid-tw23O9qxg4 .widget .textwidget .single-service-contact-inner .mbr-section-btn {
  margin-bottom: 25px;
}
.cid-tw23O9qxg4 .widget .textwidget .single-service-contact-inner .mbr-section-btn .btn {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-style: normal;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 40px;
  padding-right: 40px;
  margin-top: 20px;
  border-radius: 0.25em;
  display: inline-block;
}
.cid-tw23O9qxg4 .widget .textwidget .single-service-contact-inner .mbr-section-btn .btn.display-4 {
  font-size: 12px;
}
.cid-tw23O9qxg4 .tab-pane img {
  display: block;
  box-shadow: 0 0 50px rgba(79, 110, 173, 0.1);
  border-radius: 4px;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  margin-bottom: 50px;
}
.cid-tw23O9qxg4 .tab-pane .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-tw23O9qxg4 .tab-pane .mbr-section-title.display-5 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tw23O9qxg4 .tab-pane .mbr-text {
  color: #6d7a8c;
}
.cid-tw23O9qxg4 .tab-pane .mbr-text.display-7 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-tw23O9qxg4 .tab-pane .wrapper {
  border-radius: 0.25rem;
  padding: 1rem;
  background: #ffffff;
}
.cid-tw23O9qxg4 .tab-pane .wrapper .img {
  margin-bottom: 20px;
}
.cid-tw23O9qxg4 .tab-pane .wrapper .img .mbr-iconfont {
  font-size: 50px;
  top: 0;
  color: #4f87fb;
  border-radius: 50%;
}
.cid-tw23O9qxg4 .tab-pane .wrapper .mbr-card-title {
  font-weight: 700;
  padding-bottom: 14px;
  margin-bottom: 10px;
  color: #130947;
}
.cid-tw23O9qxg4 .tab-pane .wrapper .mbr-card-title.display-7 {
  line-height: 1.4;
  letter-spacing: -0.5px;
  font-size: 20px;
}
.cid-tw23O9qxg4 .tab-pane .wrapper .mbr-text {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-tw23O9qxg4 .tab-pane .wrapper .mbr-text.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 992px) {
  .cid-tw23O9qxg4 .nav-tabs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: center;
    justify-content: center;
    border-right: 0px;
    padding-right: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tw23O9qxg4 .mbr-text,
  .cid-tw23O9qxg4 .nav-link,
  .cid-tw23O9qxg4 .mbr-card-title,
  .cid-tw23O9qxg4 .mbr-section-title {
    text-align: left;
  }
  .cid-tw23O9qxg4 .nav-tabs {
    border-right: 0px;
    padding-right: 0rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tw23O9qxg4 .single-service-contact-inner .mbr-text {
    text-align: center;
  }
}
.cid-tw23O9qxg4 .tab-content .tab-pane .mbr-text {
  color: #444444;
}
.cid-tw23O9qxg4 H2 {
  text-align: center;
}
.cid-tw23O9qxg4 .tab-content .tab-pane .mbr-section-title DIV {
  text-align: left;
}
.cid-tw23O9qxg4 .tab-content .tab-pane .mbr-section-title {
  text-align: left;
}
.cid-tw23O9qxg4 .widget .textwidget .single-service-contact .single-service-contact-inner h2 {
  color: #04367c;
}
.cid-tw23OcLcfS {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(90deg, #1dc8cc, #08579f);
}
.cid-tw23OcLcfS .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-tw23Od8VZc {
  padding-top: 15px;
  padding-bottom: 0px;
  background: linear-gradient(90deg, #1dc8cc, #08579f);
}
.cid-tw23Od8VZc .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-tx3ZiB4MDQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-tx3ZiB4MDQ .mbr-section-title {
  color: #444444;
}
.cid-tx3ZiB4MDQ .mbr-section-subtitle {
  color: #444444;
}
.cid-tx3ZiB4MDQ .mbr-text {
  color: #8d97ad;
}
.cid-tx3ZiB4MDQ .nav {
  border: none;
}
.cid-tx3ZiB4MDQ .nav-tabs {
  display: table;
  width: 100%;
}
.cid-tx3ZiB4MDQ .nav-tabs .nav-item {
  display: table-cell;
}
.cid-tx3ZiB4MDQ .card-img {
  overflow: hidden;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tx3ZiB4MDQ .tab-content {
  margin-top: 3rem;
}
.cid-tx3ZiB4MDQ .nav-tabs .nav-link {
  display: flex;
  color: #000000;
  box-sizing: border-box;
  font-style: normal;
  background: #efefef;
  font-weight: 500;
  padding: 1rem 1rem;
  border-right: 1px solid #dee2e6;
  border-top: 1px solid #dee2e6;
  border-left: 1px solid #dee2e6;
  margin: 0px;
  border-radius: 0px !important;
  border-bottom: 1px solid #dee2e6;
  transition: all .3s;
}
.cid-tx3ZiB4MDQ .nav-tabs .nav-link:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-tx3ZiB4MDQ .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #000000;
  font-style: normal;
  background: #ffffff;
  border-bottom: none;
}
.cid-tx3ZiB4MDQ .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tx3ZiB4MDQ .nav-item {
    display: table-row !important;
  }
}
.cid-tx3ZiB4MDQ .mbr-text,
.cid-tx3ZiB4MDQ .mbr-section-btn {
  color: #444444;
}
.cid-tw23OegNHt {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tw23OegNHt .mbr-section-title {
  margin-bottom: 50px;
}
.cid-tw23OegNHt .container-table {
  margin: 0 auto;
}
.cid-tw23OegNHt .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tw23OegNHt tbody tr:nth-child(odd) {
  background-color: #f5f4f6;
}
.cid-tw23OegNHt .dataTables_wrapper {
  display: block;
}
.cid-tw23OegNHt .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tw23OegNHt .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tw23OegNHt .head-item {
  color: #04367c;
  min-width: 110px;
  letter-spacing: 2px;
}
.cid-tw23OegNHt .body-item {
  color: #212529;
}
.cid-tw23OegNHt .table td,
.cid-tw23OegNHt .table th {
  border: none;
}
.cid-tw23OegNHt table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tw23OegNHt table th {
  padding: 24px 15px 20px 15px;
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tw23OegNHt table td {
  padding: 24px 15px 20px 15px;
}
.cid-tw23OegNHt .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tw23OegNHt .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tw23OegNHt .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tw23OegNHt .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tw23OegNHt .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tw23OegNHt .dataTables_filter {
    text-align: center;
  }
  .cid-tw23OegNHt .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tw23OegNHt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tw23OegNHt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tw23Of8Ef7 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f4f8fa;
}
.cid-tw23Of8Ef7 .title_block {
  margin-bottom: 80px;
}
.cid-tw23Of8Ef7 .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #04367c;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-tw23Of8Ef7 .mbr-section-title {
  color: #444444;
}
.cid-tw23Of8Ef7 .mbr-item-subtitle {
  margin-top: 15px;
  margin-bottom: 10px;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  color: #efefef;
}
.cid-tw23Of8Ef7 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tw23Of8Ef7 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tw23Of8Ef7 .image-wrapper {
  overflow: hidden;
  height: 300px;
}
.cid-tw23Of8Ef7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tw23Of8Ef7 .item-wrapper {
  position: relative;
}
.cid-tw23Of8Ef7 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-tw23Of8Ef7 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-tw23Of8Ef7 .item-wrapper:hover .mbr-item-subtitle a {
  color: #04367c !important;
}
.cid-tw23Of8Ef7 .item-wrapper:hover img {
  transform: scale(1.1);
}
.cid-tw23Of8Ef7 .carousel-control,
.cid-tw23Of8Ef7 .close {
  background: #1b1b1b;
}
.cid-tw23Of8Ef7 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tw23Of8Ef7 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tw23Of8Ef7 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tw23Of8Ef7 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tw23Of8Ef7 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tw23Of8Ef7 .close::before {
  content: '\e91a';
}
.cid-tw23Of8Ef7 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tw23Of8Ef7 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tw23Of8Ef7 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tw23Of8Ef7 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tw23Of8Ef7 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tw23Of8Ef7 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tw23Of8Ef7 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tw23Of8Ef7 .carousel-indicators li.active,
.cid-tw23Of8Ef7 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tw23Of8Ef7 .carousel-indicators li::after,
.cid-tw23Of8Ef7 .carousel-indicators li::before {
  content: none;
}
.cid-tw23Of8Ef7 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tw23Of8Ef7 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tw23Of8Ef7 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tw23Of8Ef7 .carousel-indicators {
    display: none;
  }
}
.cid-tw23Of8Ef7 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tw23Of8Ef7 .carousel-inner > .active {
  display: block;
}
.cid-tw23Of8Ef7 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tw23Of8Ef7 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tw23Of8Ef7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tw23Of8Ef7 .carousel-control,
  .cid-tw23Of8Ef7 .carousel-indicators,
  .cid-tw23Of8Ef7 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tw23Of8Ef7 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tw23Of8Ef7 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tw23Of8Ef7 .carousel-indicators .active,
.cid-tw23Of8Ef7 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tw23Of8Ef7 .carousel-indicators .active {
  background: #fff;
}
.cid-tw23Of8Ef7 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tw23Of8Ef7 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tw23Of8Ef7 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tw23Of8Ef7 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tw23Of8Ef7 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tw23Of8Ef7 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tw23Of8Ef7 .carousel {
  width: 100%;
}
.cid-tw23Of8Ef7 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tw23Of8Ef7 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tw23Of8Ef7 .modal.fade .modal-dialog,
.cid-tw23Of8Ef7 .modal.in .modal-dialog {
  transform: none;
}
.cid-tw23Of8Ef7 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tw23Of8Ef7 .descr mb-0 {
  text-align: center;
}
.cid-tUy349YJly {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tUy349YJly .mbr-section-title {
  margin-bottom: 50px;
}
.cid-tUy349YJly .container-table {
  margin: 0 auto;
}
.cid-tUy349YJly .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tUy349YJly tbody tr:nth-child(even) {
  background-color: #f5f4f6;
}
.cid-tUy349YJly .dataTables_wrapper {
  display: block;
}
.cid-tUy349YJly .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tUy349YJly .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tUy349YJly .head-item {
  color: #04367c;
  min-width: 110px;
  letter-spacing: 2px;
}
.cid-tUy349YJly .body-item {
  color: #212529;
  text-align: left;
}
.cid-tUy349YJly .table td,
.cid-tUy349YJly .table th {
  border: none;
}
.cid-tUy349YJly table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-tUy349YJly table th {
  padding: 24px 15px 20px 15px;
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tUy349YJly table td {
  padding: 24px 15px 20px 15px;
}
.cid-tUy349YJly .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tUy349YJly .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tUy349YJly .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tUy349YJly .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tUy349YJly .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tUy349YJly .dataTables_filter {
    text-align: center;
  }
  .cid-tUy349YJly .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tUy349YJly .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUy349YJly .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tw23OgEw3b {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tw23OgEw3b .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-tw23OgEw3b .mbr-section-title {
  margin: 0;
}
.cid-tw23OgEw3b .card-img {
  text-align: center;
}
.cid-tw23OgEw3b .mbr-section-subtitle,
.cid-tw23OgEw3b .mbr-text {
  color: #8d97ad;
}
.cid-tw23OgEw3b .row-item {
  border-radius: .25rem;
  background: #ffffff;
  padding: 2.5rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 767px) {
  .cid-tw23OgEw3b .card-img,
  .cid-tw23OgEw3b .mbr-text,
  .cid-tw23OgEw3b .mbr-card-title,
  .cid-tw23OgEw3b .mbr-section-subtitle,
  .cid-tw23OgEw3b .mbr-section-title,
  .cid-tw23OgEw3b .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-tw23OgEw3b .row-item {
    margin-bottom: 2rem;
  }
}
.cid-tw23OgEw3b .mbr-text {
  color: #444444;
}
.cid-txm2CE73FI {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #08579f;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .content {
    text-align: center;
  }
  .cid-txm2CE73FI .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-txm2CE73FI .logo-subtitle {
  color: #f4f8fa;
}
.cid-txm2CE73FI .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txm2CE73FI .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txm2CE73FI .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txm2CE73FI .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-txm2CE73FI .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txm2CE73FI .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-txm2CE73FI .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txm2CE73FI .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txm2CE73FI .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txm2CE73FI .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txm2CE73FI .list-item {
  display: flex;
}
.cid-txm2CE73FI .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-txm2CE73FI ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txm2CE73FI ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-txm2CE73FI ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-txm2CE73FI .column-title {
  color: #f4f8fa;
}
.cid-txm2CE73FI P {
  color: #f4f8fa;
}
.cid-txm2CE73FI .mbr-text {
  color: #f4f8fa;
}
.cid-tUxMSlt08l .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tUxMSlt08l .nav-item,
.cid-tUxMSlt08l .nav-link,
.cid-tUxMSlt08l .navbar-caption {
  font-weight: normal;
}
.cid-tUxMSlt08l .nav-item:focus,
.cid-tUxMSlt08l .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tUxMSlt08l .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tUxMSlt08l .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tUxMSlt08l .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tUxMSlt08l .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tUxMSlt08l .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tUxMSlt08l .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tUxMSlt08l .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tUxMSlt08l .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tUxMSlt08l .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tUxMSlt08l .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #08579f;
}
.cid-tUxMSlt08l .navbar.opened {
  transition: all .3s;
  background: #08579f !important;
}
.cid-tUxMSlt08l .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tUxMSlt08l .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tUxMSlt08l .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tUxMSlt08l .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tUxMSlt08l .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.9rem - 1rem);
  }
}
.cid-tUxMSlt08l .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tUxMSlt08l .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tUxMSlt08l .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tUxMSlt08l .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tUxMSlt08l .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tUxMSlt08l .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tUxMSlt08l .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUxMSlt08l .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUxMSlt08l .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tUxMSlt08l .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUxMSlt08l .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tUxMSlt08l .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tUxMSlt08l .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUxMSlt08l .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tUxMSlt08l .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tUxMSlt08l .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tUxMSlt08l .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tUxMSlt08l .navbar.navbar-short {
  background: #08579f !important;
  min-height: 60px;
}
.cid-tUxMSlt08l .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tUxMSlt08l .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tUxMSlt08l .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tUxMSlt08l .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUxMSlt08l .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUxMSlt08l .dropdown-item.active,
.cid-tUxMSlt08l .dropdown-item:active {
  background-color: transparent;
}
.cid-tUxMSlt08l .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUxMSlt08l .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUxMSlt08l .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #08579f;
}
.cid-tUxMSlt08l .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUxMSlt08l .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUxMSlt08l ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tUxMSlt08l .navbar-buttons {
  text-align: center;
}
.cid-tUxMSlt08l button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tUxMSlt08l button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tUxMSlt08l button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tUxMSlt08l button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tUxMSlt08l button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tUxMSlt08l button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tUxMSlt08l nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tUxMSlt08l nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tUxMSlt08l nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tUxMSlt08l nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tUxMSlt08l .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tUxMSlt08l a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tUxMSlt08l .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tUxMSlt08l .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tUxMSlt08l .soc-item {
  margin: .5rem .3rem;
}
.cid-tUxMSlt08l .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tUxMSlt08l .navbar {
    height: 77px;
  }
  .cid-tUxMSlt08l .navbar.opened {
    height: auto;
  }
  .cid-tUxMSlt08l .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUxMSlV1OR {
  padding-top: 135px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/08-2000x437.jpg");
}
.cid-tUxMSlV1OR .mbr-overlay {
  background: #1dc9cb;
  background: linear-gradient(90deg, #1dc9cb, #08579f);
}
.cid-tUxMSlV1OR .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tUxMSlV1OR .mbr-section-subtitle,
.cid-tUxMSlV1OR .mbr-section-btn {
  color: #f4f8fa;
}
.cid-tUy3kHEVo0 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-tUy3kHEVo0 h4,
.cid-tUy3kHEVo0 h5,
.cid-tUy3kHEVo0 p {
  margin-bottom: 0;
}
.cid-tUy3kHEVo0 p {
  color: #767676;
}
.cid-tUy3kHEVo0 .card-wrapper {
  transition: all 0.3s;
  background-color: #ffffff;
}
.cid-tUy3kHEVo0 .card-wrapper .card-box {
  padding: 1.2rem;
}
.cid-tUy3kHEVo0 .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-tUy3kHEVo0 .card-wrapper {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.cid-tUy3kHEVo0 .card-box {
  padding-top: 2rem;
  display: inline-block;
  width: 100%;
}
.cid-tUy3kHEVo0 .card-title,
.cid-tUy3kHEVo0 .main-title {
  color: #57468b;
}
.cid-tUy3kHEVo0 .card-img {
  width: auto;
}
.cid-tUy3kHEVo0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUy3kHEVo0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUy3kHEVo0 .mbr-text {
  color: #000000;
}
.cid-tUxMSmumdC {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(90deg, #1dc8cc, #08579f);
}
.cid-tUxMSmumdC .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-tUxMSmJFbr {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #08579f;
}
@media (max-width: 767px) {
  .cid-tUxMSmJFbr .content {
    text-align: center;
  }
  .cid-tUxMSmJFbr .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tUxMSmJFbr .logo-subtitle {
  color: #f4f8fa;
}
.cid-tUxMSmJFbr .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tUxMSmJFbr .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tUxMSmJFbr .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tUxMSmJFbr .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-tUxMSmJFbr .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tUxMSmJFbr .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tUxMSmJFbr .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-tUxMSmJFbr .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tUxMSmJFbr .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tUxMSmJFbr .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tUxMSmJFbr .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tUxMSmJFbr .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-tUxMSmJFbr .list-item {
  display: flex;
}
.cid-tUxMSmJFbr .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tUxMSmJFbr ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tUxMSmJFbr ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tUxMSmJFbr ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tUxMSmJFbr .column-title {
  color: #f4f8fa;
}
.cid-tUxMSmJFbr P {
  color: #f4f8fa;
}
.cid-tUxMSmJFbr .mbr-text {
  color: #f4f8fa;
}
