.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #6592e6;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: #2260d2 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  /* background-image: transparent; */
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
	/*
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  */
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !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: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sE61w2DuQh .navbar {
  padding: 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-sE61w2DuQh .navbar-fixed-top {
  padding-top: 0;
}
.cid-sE61w2DuQh .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sE61w2DuQh .dropdown-item {
  padding: 0;
}
.cid-sE61w2DuQh .dropdown-menu {
  border: 0px solid lightgray;
  background: #3b5abb !important;
}
.cid-sE61w2DuQh .menu-content-top {
  max-width: 1200px;
  display: none;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media screen and (max-width: 991px) {
  .cid-sE61w2DuQh .menu-content-top {
    display: block;
  }
  .cid-sE61w2DuQh .menu-content-top .menu-content-right {
    display: none;
  }
  .cid-sE61w2DuQh .menu-content-top .navbar-brand {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1000;
    margin: 0;
  }
}
.cid-sE61w2DuQh nav.opened .menu-content-top {
  display: none;
}
.cid-sE61w2DuQh .menu-bottom {
  margin: auto;
  width: 100%;
  background: #3b5abb;
  display: flex;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sE61w2DuQh .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sE61w2DuQh a {
  font-style: normal;
}
.cid-sE61w2DuQh .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sE61w2DuQh .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sE61w2DuQh .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sE61w2DuQh .content-text {
  margin-bottom: 0;
}
.cid-sE61w2DuQh .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sE61w2DuQh .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sE61w2DuQh .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sE61w2DuQh .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sE61w2DuQh .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sE61w2DuQh .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sE61w2DuQh .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sE61w2DuQh .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sE61w2DuQh .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sE61w2DuQh .nav-dropdown .link {
  font-weight: 400;
}
.cid-sE61w2DuQh .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sE61w2DuQh .content-right-side {
  text-align: center;
}
.cid-sE61w2DuQh .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sE61w2DuQh .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sE61w2DuQh .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sE61w2DuQh .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sE61w2DuQh .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sE61w2DuQh .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sE61w2DuQh .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sE61w2DuQh .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sE61w2DuQh .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sE61w2DuQh .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sE61w2DuQh .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sE61w2DuQh .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sE61w2DuQh .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sE61w2DuQh .navbar {
    display: block;
    padding: 0;
  }
  .cid-sE61w2DuQh .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sE61w2DuQh .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4rem - 4.5rem);
  }
  .cid-sE61w2DuQh .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sE61w2DuQh .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sE61w2DuQh .navbar-toggler {
    display: none;
  }
  .cid-sE61w2DuQh .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sE61w2DuQh .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sE61w2DuQh .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sE61w2DuQh .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sE61w2DuQh .menu-logo {
  margin-right: auto;
}
.cid-sE61w2DuQh .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0;
  height: 100%;
  transition: padding 0.2s;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sE61w2DuQh .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sE61w2DuQh .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sE61w2DuQh .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sE61w2DuQh .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sE61w2DuQh .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sE61w2DuQh .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sE61w2DuQh .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sE61w2DuQh .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sE61w2DuQh .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sE61w2DuQh .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sE61w2DuQh .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sE61w2DuQh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sE61w2DuQh .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-sE61w2DuQh .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sE61w2DuQh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sE61w2DuQh .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-sE61w2DuQh .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sE61w2DuQh .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sE61w2DuQh .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sE61w2DuQh .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sE61w2DuQh .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sE61w2DuQh .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sE61w2DuQh .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sE61w2DuQh .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sE61w2DuQh button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0;
  -webkit-align-self: center;
  align-self: flex-end;
}
.cid-sE61w2DuQh button.navbar-toggler:focus {
  outline: none;
}
.cid-sE61w2DuQh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sE61w2DuQh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sE61w2DuQh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sE61w2DuQh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sE61w2DuQh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sE61w2DuQh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sE61w2DuQh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sE61w2DuQh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sE61w2DuQh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sE61w2DuQh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sE61w2DuQh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sE61w2DuQh .collapsed .btn {
  display: flex;
}
.cid-sE61w2DuQh .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sE61w2DuQh .collapsed .navbar-collapse.collapsing,
.cid-sE61w2DuQh .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sE61w2DuQh .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sE61w2DuQh .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sE61w2DuQh .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sE61w2DuQh .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sE61w2DuQh .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sE61w2DuQh .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sE61w2DuQh .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sE61w2DuQh .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sE61w2DuQh .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sE61w2DuQh .collapsed button.navbar-toggler {
  display: block;
}
.cid-sE61w2DuQh .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sE61w2DuQh .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sE61w2DuQh .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sE61w2DuQh .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sE61w2DuQh .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sE61w2DuQh .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sE61w2DuQh .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sE61w2DuQh .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sE61w2DuQh .navbar-collapse.collapsing,
  .cid-sE61w2DuQh .navbar-collapse.show {
    display: block !important;
  }
  .cid-sE61w2DuQh .navbar-collapse.collapsing .navbar-nav,
  .cid-sE61w2DuQh .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sE61w2DuQh .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sE61w2DuQh .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sE61w2DuQh .navbar-collapse.collapsing .navbar-buttons,
  .cid-sE61w2DuQh .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sE61w2DuQh .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sE61w2DuQh .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sE61w2DuQh .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sE61w2DuQh img {
    height: 2.2rem !important;
  }
  .cid-sE61w2DuQh .btn {
    display: flex;
  }
  .cid-sE61w2DuQh button.navbar-toggler {
    display: block;
  }
  .cid-sE61w2DuQh .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sE61w2DuQh .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sE61w2DuQh .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sE61w2DuQh .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sE61w2DuQh .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sE61w2DuQh .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sE61w2DuQh .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sE61w2DuQh .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sE61w2DuQh .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sE61w2DuQh .nav-link:focus {
  outline: none;
}
.cid-sE61w2DuQh .navbar-toggler {
  position: relative;
}
.cid-sE61w2DuQh .dropdown-item.active,
.cid-sE61w2DuQh .dropdown-item:active {
  background: #3b5abb;
  color: initial;
}
.cid-sDmDKBCt8L {
  overflow: hidden !important;
  background: linear-gradient(to right, #0d5979 0%, #0d5979 30%, #303556 30%, #303556 100%);
}
.cid-sDmDKBCt8L .animated-element {
  color: #efefef;
}
.cid-sDmDKBCt8L .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sDmDKBCt8L .mbr-section-subtitle {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sDmDKBCt8L .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sDmDKBCt8L .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-sDmDKBCt8L {
    background: #303556;
  }
  .cid-sDmDKBCt8L .img-block {
    padding-bottom: 2rem;
  }
}
.cid-sE63HZ2l8G {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sE63HZ2l8G .mbr-section-title {
  margin: 0;
}
.cid-sE63HZ2l8G .mbr-section-subtitle {
  margin-bottom: 2rem;
  color: #8d97ad;
}
.cid-sE63HZ2l8G .mbr-text {
  margin: 0;
  color: #efefef;
}
.cid-sE63HZ2l8G .wrapper {
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-sE63HZ2l8G .card1 {
  background: linear-gradient(45deg, #2bdc9d, #1dc9cb);
}
.cid-sE63HZ2l8G .card2 {
  background: linear-gradient(45deg, #188ef4, #306de8);
}
.cid-sE63HZ2l8G .card3 {
  background: linear-gradient(45deg, #ff4f7b, #ff695c);
}
.cid-sE63HZ2l8G .card4 {
  background: linear-gradient(45deg, #1dc9cb, #1dc9cb);
}
@media (max-width: 991px) {
  .cid-sE63HZ2l8G .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-sE63HZ2l8G .mbr-card-title {
  padding-bottom: 1rem;
}
.cid-sE63HZ2l8G .mbr-section-btn {
  margin-left: -1rem;
  margin-right: -1rem;
  padding-top: 1rem;
}
.cid-sDmE8WIagq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0d5979;
}
.cid-sDmE8WIagq .mbr-media {
  position: relative;
}
.cid-sDmE8WIagq .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-sDmE8WIagq .mbr-iconfont {
  color: #ffffff;
}
.cid-sDmE8WIagq .mbr-iconfont:hover {
  font-size: 4.5rem;
}
.cid-sDmE8WIagq .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-sDmE8WIagq .mbr-media span {
  font-size: 4rem;
  transition: all 0.3s;
}
.cid-sDmE8WIagq .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sDmE8WIagq .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sDmE8WIagq .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sDmE8WIagq .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;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sDmE8WIagq .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sDmE8WIagq .mbr-section-title {
  color: #9fdbf8;
}
.cid-sDmDYfGuJW {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #303556;
}
.cid-sDmDYfGuJW .item-wrapper {
  position: relative;
  border-radius: 10px;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-sDmDYfGuJW .item-content {
  background: #efefef;
  transition: all 0.3s;
  border: 2px solid #e1e1e1;
  border-top: 0px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 2rem 2.5rem;
}
.cid-sDmDYfGuJW .item-content:hover {
  background: #ffffff;
  border-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sDmDYfGuJW .item-content {
    padding: 1rem 1.5rem;
  }
}
.cid-sDmDYfGuJW .img-text {
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  color: #777777;
}
@media (max-width: 767px) {
  .cid-sDmDYfGuJW .img-text {
    left: 1rem;
  }
}
.cid-sDmDYfGuJW img,
.cid-sDmDYfGuJW .item-img {
  position: relative;
  width: 100%;
  height: 100%;
  height: 225px;
  object-fit: cover;
}
.cid-sDmDYfGuJW .item:focus,
.cid-sDmDYfGuJW span:focus {
  outline: none;
}
.cid-sDmDYfGuJW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sDmDYfGuJW .mbr-section-title {
  color: #232323;
}
.cid-sDmDYfGuJW .mbr-text,
.cid-sDmDYfGuJW .mbr-section-btn {
  text-align: left;
  color: #777777;
}
.cid-sDmDYfGuJW .item-title {
  text-align: left;
  color: #1b2026;
}
.cid-sDmDYfGuJW .item-subtitle {
  text-align: left;
  color: #1b2026;
}
.cid-sDmDYfGuJW .mbr-section-subtitle {
  color: #777777;
}
.cid-sE64stk4i2 {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #22a5e5;
  position: relative;
  overflow: hidden;
}
.cid-sE64stk4i2 .svg1 {
  position: absolute;
  bottom: -20rem;
  left: 50%;
  transform: translate(-50%) scale(1.3, 1.2);
}
.cid-sE64stk4i2 #e1_circle,
.cid-sE64stk4i2 #e3_circle,
.cid-sE64stk4i2 #e4_circle,
.cid-sE64stk4i2 #e5_circle {
  fill: #4479d9 !important;
}
.cid-sE64stk4i2 #e6_circle {
  fill: #0d5979 !important;
}
@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(10px) rotate(-360deg);
  }
}
@keyframes rev {
  from {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
  }
  to {
    transform: rotate(-360deg) translateX(10px) rotate(360deg);
  }
}
.cid-sE64stk4i2 .round {
  border-radius: 100%;
  position: absolute;
  background-color: #4479d9;
  animation: orbit 4s linear infinite;
}
.cid-sE64stk4i2 .rev {
  animation: rev 4s linear infinite;
}
.cid-sE64stk4i2 .round1 {
  width: 50px;
  height: 50px;
  left: 7%;
  top: 60%;
}
.cid-sE64stk4i2 .round2 {
  width: 90px;
  height: 90px;
  left: 15%;
  top: 15%;
}
.cid-sE64stk4i2 .round3 {
  width: 40px;
  height: 40px;
  left: 30%;
  top: 15%;
}
.cid-sE64stk4i2 .round4 {
  width: 90px;
  height: 90px;
  left: 40%;
  top: 3%;
}
.cid-sE64stk4i2 .round5 {
  width: 50px;
  height: 50px;
  right: 5%;
  top: 55%;
}
.cid-sE64stk4i2 .round6 {
  width: 30px;
  height: 30px;
  right: 30%;
  top: 15%;
}
.cid-sE64stk4i2 .round7 {
  width: 70px;
  height: 70px;
  right: 20%;
  top: 20%;
}
.cid-sE64stk4i2 .round8 {
  width: 110px;
  height: 110px;
  right: 8%;
  top: 30%;
}
.cid-sE64stk4i2 .round9 {
  width: 90px;
  height: 90px;
  right: 7%;
  top: 70%;
}
.cid-sE64stk4i2 .round10 {
  width: 50px;
  height: 50px;
  right: 35%;
  top: 5%;
}
.cid-sE64stk4i2 .round11 {
  width: 70px;
  height: 70px;
  left: 8%;
  top: 35%;
}
.cid-sE64stk4i2 H1 {
  color: #57468b;
}
.cid-sE64stk4i2 .mbr-text,
.cid-sE64stk4i2 .mbr-section-btn {
  color: #ffffff;
}
.cid-sE64stk4i2 H3 {
  color: #716c80;
}
@media (max-width: 992px) {
  .cid-sE64stk4i2 .round9,
  .cid-sE64stk4i2 .round5 {
    display: none;
  }
}
@media (max-width: 576px) {
  .cid-sE64stk4i2 .round {
    display: none;
  }
}
.cid-sE63OCpYYU {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sE63OCpYYU .title_block {
  margin-bottom: 80px;
}
.cid-sE63OCpYYU .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #353535;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-sE63OCpYYU .mbr-section-title,
.cid-sE63OCpYYU .card-title {
  color: #ff6666;
}
.cid-sE63OCpYYU .card:nth-child(1) .iconfont-wrapper:before {
  background-color: rgba(101, 146, 230, 0.07);
}
.cid-sE63OCpYYU .card:nth-child(1) .iconfont-wrapper .mbr-iconfont {
  color: #6592e6;
}
.cid-sE63OCpYYU .card:nth-child(2) .iconfont-wrapper:before {
  background-color: rgba(255, 225, 97, 0.07);
}
.cid-sE63OCpYYU .card:nth-child(2) .iconfont-wrapper .mbr-iconfont {
  color: #ffe161;
}
.cid-sE63OCpYYU .card:nth-child(3) .iconfont-wrapper:before {
  background-color: rgba(64, 176, 191, 0.07);
}
.cid-sE63OCpYYU .card:nth-child(3) .iconfont-wrapper .mbr-iconfont {
  color: #40b0bf;
}
.cid-sE63OCpYYU .card:nth-child(4) .iconfont-wrapper:before {
  background-color: rgba(71, 181, 237, 0.07);
}
.cid-sE63OCpYYU .card:nth-child(4) .iconfont-wrapper .mbr-iconfont {
  color: #47b5ed;
}
.cid-sE63OCpYYU .iconfont-wrapper {
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cid-sE63OCpYYU .iconfont-wrapper:before {
  top: 0;
  left: 50%;
  bottom: 0;
  z-index: -1;
  content: "";
  width: 60px;
  position: absolute;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
}
.cid-sE63OCpYYU .iconfont-wrapper .mbr-iconfont {
  height: 75px;
  line-height: 75px;
  font-size: 46px;
  text-align: center;
}
.cid-sE63OCpYYU .card-title {
  margin-bottom: 20px;
}
.cid-sE63OCpYYU .card-text {
  margin-bottom: 15px;
  line-height: 1.5;
}
.cid-sE63OCpYYU .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-sE63OCpYYU .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sE63OCpYYU .btn_link:hover {
  cursor: pointer;
}
.cid-sE63OCpYYU .btn_link:hover a {
  color: #6592e6 !important;
}
.cid-sE63OCpYYU .btn_link:hover span {
  transform: translatex(5px);
}
.cid-sE63OCpYYU .icon_block {
  position: relative;
}
.cid-sE63OCpYYU .shape_2 {
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #47b5ed;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  transform: rotate(-25deg);
}
.cid-sE63OCpYYU .shape_4 {
  position: absolute;
  left: -13px;
  bottom: 0;
  width: 8px;
  height: 8px;
  background: #ff9966;
  transform: rotate(-35deg);
}
@media (max-width: 991px) {
  .cid-sE63OCpYYU .title_block {
    margin-bottom: 40px;
  }
  .cid-sE63OCpYYU .card {
    text-align: center;
  }
  .cid-sE63OCpYYU .card_wrapper {
    max-width: 290px;
    text-align: center;
    margin: 50px auto 0;
  }
}
.cid-sE63OCpYYU .mbr-section-title {
  color: #0d5979;
}
.cid-sE63OCpYYU .card-title,
.cid-sE63OCpYYU .icon_block {
  color: #4479d9;
}
.cid-sDmEhIca8y {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #343351;
  position: relative;
  overflow: hidden;
}
.cid-sDmEhIca8y .container {
  max-width: 1400px;
}
.cid-sDmEhIca8y .card-img2 span {
  padding-top: 6px;
}
.cid-sDmEhIca8y .soc-item a {
  padding-top: 5px;
}
.cid-sDmEhIca8y .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-sDmEhIca8y .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sDmEhIca8y .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sDmEhIca8y .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sDmEhIca8y svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sDmEhIca8y #e2_shape {
  fill: #ffffff !important;
}
.cid-sDmEhIca8y .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-sDmEhIca8y .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sDmEhIca8y .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sDmEhIca8y .card-img {
  width: auto;
}
.cid-sDmEhIca8y .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sDmEhIca8y .soc-item span {
  font-size: 1.4rem;
}
.cid-sDmEhIca8y .soc-item:hover span {
  color: #6592e6 !important;
}
.cid-sDmEhIca8y .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sDmEhIca8y .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sDmEhIca8y .media-wrap {
  margin-bottom: 1rem;
}
.cid-sDmEhIca8y .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sDmEhIca8y img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-sDmEhIca8y .item {
    justify-content: center;
  }
  .cid-sDmEhIca8y .quote::after {
    left: 60px;
  }
}
.cid-sDmEhIca8y .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sDmEhIca8y .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sDmEhIca8y .text1 {
  color: #ffffff;
}
.cid-sDmEhIca8y .item-title {
  color: #ffffff;
}
.cid-sDmEhIca8y H5 {
  color: #ffffff;
}
.cid-sDmEhIca8y .theme {
  color: #ffffff;
}
.cid-sDmEhIca8y .copyright > p {
  color: #ff3366;
}
.cid-sDmEhIca8y .text2 {
  color: #ffffff;
}
.cid-sDmBoPi6VG {
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-sDmBoPi6VG H1 {
  color: #4479d9;
}
.cid-sDmBoPi6VG h1 {
  background: linear-gradient(to left, #ff6666, currentColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-sDmBoPi6VG .mbr-text,
.cid-sDmBoPi6VG .mbr-section-btn {
  color: #999999;
}
.cid-rVtYOMzUuq {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/mbr-1920x1357.jpg");
}
.cid-rVtYOMzUuq .link-align {
  width: 100%;
}
.cid-rVtYOMzUuq .link-wrap {
  display: inline-block;
}
.cid-rVtYOMzUuq .box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rVtYOMzUuq .mail {
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  width: fit-content;
  color: #ffffff;
}
.cid-rVtYOMzUuq .mail:after {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -6px;
  opacity: 0.1;
  left: 0;
}
.cid-rVtYOMzUuq .mail:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: -6px;
  left: auto;
  right: 0;
}
.cid-rVtYOMzUuq .mail:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
@keyframes hover {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.cid-rVtYOMzUuq .mbr-text,
.cid-rVtYOMzUuq .link-align {
  color: #ffffff;
}
.cid-rVtYOMzUuq .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  margin-right: 2rem;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  width: 100px;
  height: 100px;
  background: #cc2952;
  cursor: pointer;
}
.cid-rVtYOMzUuq .icon-wrap:hover {
  animation: 0.6s hover;
}
.cid-rVtYOMzUuq .icon-wrap span {
  padding-left: 4px;
}
.cid-rVtYOMzUuq .mbr-media span {
  font-size: 1.6rem;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-rVtYOMzUuq .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-rVtYOMzUuq .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-rVtYOMzUuq .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-rVtYOMzUuq .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-rVtYOMzUuq a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-rVtYOMzUuq a.close:hover {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rVtYOMzUuq .box {
    flex-direction: column;
  }
  .cid-rVtYOMzUuq .icon-wrap {
    margin-right: 0rem;
    margin-bottom: 2rem;
  }
}
.cid-rVtYP3FkeX {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rVtYP3FkeX .card-box {
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}
.cid-rVtYP3FkeX .link-wrap {
  width: 100%;
}
.cid-rVtYP3FkeX .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
  opacity: 0;
  color: #000000;
  text-align: center;
}
.cid-rVtYP3FkeX .link:after {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -6px;
  opacity: 0;
  left: 0;
}
.cid-rVtYP3FkeX .link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.3s;
  background: currentColor;
  bottom: -6px;
  left: auto;
  right: 0;
}
.cid-rVtYP3FkeX .link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-rVtYP3FkeX .card-wrapper {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  padding: 3rem 1rem;
  align-items: center;
  perspective: 300px;
  height: 100%;
  background-size: cover;
}
.cid-rVtYP3FkeX .card-wrapper:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.2;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-rVtYP3FkeX .link {
    opacity: 1;
  }
  .cid-rVtYP3FkeX .card-wrapper {
    padding: 3rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-rVtYP3FkeX .card:hover .card-wrapper:after {
    opacity: 1;
    background: #39467b;
  }
  .cid-rVtYP3FkeX .card:hover .link {
    opacity: 1;
  }
}
@media (max-width: 992px) {
  .cid-rVtYP3FkeX .card {
    padding-bottom: 1rem!important;
  }
  .cid-rVtYP3FkeX .card .link {
    opacity: 1;
  }
  .cid-rVtYP3FkeX .card-wrapper:after {
    opacity: 0.7;
    background: #39467b;
  }
}
.cid-rVtYP3FkeX .row {
  justify-content: center;
}
.cid-rVtYP3FkeX .card {
  transform-style: preserve-3d;
  perspective: 800px;
}
.cid-rVtYP3FkeX .mbr-iconfont {
  color: #ffffff !important;
  font-size: 4.5rem!important;
  display: block;
  padding-bottom: 2rem;
}
.cid-rVtYP3FkeX .card1 {
  background-image: url("../../../assets/images/04.jpg");
}
.cid-rVtYP3FkeX .card2 {
  background-image: url("../../../assets/images/02.jpg");
}
.cid-rVtYP3FkeX .card3 {
  background-image: url("../../../assets/images/03.jpg");
}
.cid-rVtYP3FkeX .link,
.cid-rVtYP3FkeX .card-box {
  color: #ffffff;
}
.cid-rVtYP3FkeX .mbr-text,
.cid-rVtYP3FkeX .link-wrap {
  text-align: center;
}
.cid-rVtYP3FkeX .main-subtitle {
  color: #999999;
}
.cid-rVtYPjG2uX {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x600.jpg");
}
.cid-rVtYPjG2uX H4 {
  color: #ffffff;
}
.cid-rVtYPBhYtL {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rVtYPBhYtL .card-wrapper {
  display: flex;
}
.cid-rVtYPBhYtL .mbr-iconfont {
  font-size: 3rem;
  color: #000000;
}
.cid-rVtYPBhYtL .icon-wrapper {
  margin-right: 1.5rem;
  display: flex;
  justify-content: center;
  border-radius: 50%;
}
.cid-rVtYPBhYtL h4 {
  margin: 0;
}
.cid-rVtYPBhYtL .card-text {
  color: #999999;
}
.cid-rVtYPBhYtL .mbr-text {
  color: #000000;
}
.cid-rVtYPBhYtL .card-title {
  color: #000000;
}
@media (min-width: 1200px) {
  .cid-rVtYPBhYtL .mbr-text {
    max-width: 600px;
  }
}
@media (max-width: 767px) {
  .cid-rVtYPBhYtL .card-wrapper {
    flex-direction: column;
    margin: auto;
    text-align: center;
  }
  .cid-rVtYPBhYtL .card-wrapper .icon-wrapper {
    margin: 0 auto;
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-rVtYPBhYtL .mbr-text {
    padding-bottom: 2rem;
    max-width: 100%;
  }
}
.cid-rVtYPUDBL5 {
  padding-top: 120px;
  padding-bottom: 180px;
  background-image: url("../../../assets/images/mbr-1920x1141.jpg");
}
.cid-rVtYPUDBL5 .link-align {
  width: 100%;
}
.cid-rVtYPUDBL5 .link-wrap {
  display: inline-block;
}
@keyframes hover {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.cid-rVtYPUDBL5 .mbr-text,
.cid-rVtYPUDBL5 .link-align {
  color: #ffffff;
}
.cid-rVtYPUDBL5 .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  width: 100px;
  background-color: #39467b;
  height: 100px;
  cursor: pointer;
}
.cid-rVtYPUDBL5 .icon-wrap:hover {
  animation: 0.6s hover;
}
.cid-rVtYPUDBL5 .icon-wrap span {
  padding-left: 4px;
}
.cid-rVtYPUDBL5 .mbr-media span {
  font-size: 1.6rem;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-rVtYPUDBL5 .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-rVtYPUDBL5 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-rVtYPUDBL5 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-rVtYPUDBL5 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-rVtYPUDBL5 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-rVtYPUDBL5 a.close:hover {
  color: #ffffff;
}
.cid-rVtYQrfT8z {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #f3f3f3;
}
.cid-rVtYQrfT8z .mail {
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  width: fit-content;
  display: inline-block;
  color: #5758e0;
  text-align: right;
}
.cid-rVtYQrfT8z .mail:after {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -6px;
  opacity: 0.1;
  left: 0;
}
.cid-rVtYQrfT8z .mail:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: -6px;
  left: auto;
  right: 0;
}
.cid-rVtYQrfT8z .mail:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-rVtYQrfT8z .mbr-text,
.cid-rVtYQrfT8z .mbr-section-btn {
  color: #999999;
}
.cid-rVtYR7NKYE {
  padding-top: 30px;
  padding-bottom: 75px;
  position: relative;
  background-color: #ffffff;
}
.cid-rVtYR7NKYE .card-header {
  background: transparent;
}
.cid-rVtYR7NKYE img {
  width: 90%;
  box-shadow: 0px 30px 70px 0px rgba(0, 0, 0, 0.15);
  margin: auto;
}
@media (max-width: 992px) {
  .cid-rVtYR7NKYE .wrapper {
    padding: 0;
  }
  .cid-rVtYR7NKYE img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-rVtYR7NKYE h3 {
  background-color: transparent;
  background-image: linear-gradient(90deg, #5758e0 0%, #cc2952 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.cid-rVtYR7NKYE .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rVtYR7NKYE .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rVtYR7NKYE .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rVtYR7NKYE .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rVtYR7NKYE .card .card-header a.panel-title h5 .sign {
  padding-right: 1rem;
}
.cid-rVtYR7NKYE .card .panel-body {
  color: #767676;
}
.cid-rVtYR7NKYE h5 {
  flex-direction: row-reverse;
  display: flex;
  width: fit-content;
  justify-content: space-between;
  align-items: center;
  margin-top: 0rem;
  border-bottom: 2px solid #999999;
  padding-bottom: 6px;
  transition: all 0.3s;
  margin: 1rem 0;
}
.cid-rVtYR7NKYE h5:hover {
  color: #39467b;
  border-color: #39467b;
}
@media (max-width: 767px) {
  .cid-rVtYR7NKYE .wrapper {
    padding: 2rem 1rem;
  }
  .cid-rVtYR7NKYE img {
    padding: 0rem;
    margin-bottom: 2rem;
  }
  .cid-rVtYR7NKYE h5 {
    margin: 1rem auto;
  }
  .cid-rVtYR7NKYE .panel-text {
    text-align: center;
  }
}
.cid-rVtYR7NKYE .mbr-text,
.cid-rVtYR7NKYE .mbr-section-btn {
  color: #ffffff;
}
.cid-rVtYR7NKYE .panel-text {
  color: #999999;
}
.cid-rVtYR7NKYE H4 {
  color: #ffffff;
}
.cid-rVtYR7NKYE H5 {
  color: #999999;
  text-align: center;
}
.cid-rVtYRHwAfF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f3f3f3;
}
.cid-rVtYRHwAfF img {
  width: 80px;
  border-radius: 100%;
  object-fit: cover;
  height: 80px;
}
@media (min-width: 1200px) {
  .cid-rVtYRHwAfF .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1500px) {
  .cid-rVtYRHwAfF .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .cid-rVtYRHwAfF .col-lg-4 {
    flex: 0 0 33%;
    max-width: 33%;
  }
}
@media (min-width: 767px) {
  .cid-rVtYRHwAfF .container-fluid {
    padding: 0 2rem;
  }
}
.cid-rVtYRHwAfF .bg-wrapper {
  background: #ffffff;
  padding: 2rem;
}
.cid-rVtYRHwAfF .img-wrapper {
  min-width: 100px;
}
.cid-rVtYRHwAfF .star-wrap {
  display: flex;
  margin-bottom: 1rem;
}
.cid-rVtYRHwAfF .mbr-iconfont {
  font-size: 1.2rem;
  margin-right: 0.3rem;
}
.cid-rVtYRHwAfF .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-rVtYRHwAfF .card .img-wrapper {
  overflow: hidden;
}
.cid-rVtYRHwAfF .mbr-section-date {
  color: #999999;
}
.cid-rVtYRHwAfF .mbr-section-text {
  color: #555555;
}
@media (max-width: 767px) {
  .cid-rVtYRHwAfF .bg-wrapper {
    padding: 1rem;
  }
  .cid-rVtYRHwAfF .mbr-section-title {
    text-align: left;
  }
}
.cid-rVtYRHwAfF .mbr-card-title {
  color: #39467b;
}
.cid-rVtYRZAmvX {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #353535;
}
.cid-rVtYRZAmvX .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-rVtYRZAmvX textarea {
  min-height: 160px;
}
@media (min-width: 992px) {
  .cid-rVtYRZAmvX .text {
    max-width: 360px;
  }
}
.cid-rVtYRZAmvX .align-right {
  width: 100%;
}
.cid-rVtYRZAmvX .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-rVtYRZAmvX .socicon-wrap .mbr-iconfont {
  font-size: 1.1rem;
  color: #ffffff !important;
  padding: 10px;
  margin-right: 0.1rem;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-rVtYRZAmvX .form-control,
.cid-rVtYRZAmvX .field-input {
  padding: 0.5rem;
  background-color: transparent;
  border-radius: 0px;
  border: 0px;
  border-bottom: 2px solid #bbbbbb;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-rVtYRZAmvX .form-control::-webkit-input-placeholder,
.cid-rVtYRZAmvX .field-input::-webkit-input-placeholder,
.cid-rVtYRZAmvX .form-control::-webkit-input-placeholder,
.cid-rVtYRZAmvX .field-input::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-rVtYRZAmvX .form-control:-moz-placeholder,
.cid-rVtYRZAmvX .field-input:-moz-placeholder,
.cid-rVtYRZAmvX .form-control:-moz-placeholder,
.cid-rVtYRZAmvX .field-input:-moz-placeholder {
  color: #ffffff;
}
.cid-rVtYRZAmvX .form-control:hover,
.cid-rVtYRZAmvX .field-input:hover,
.cid-rVtYRZAmvX .form-control:focus,
.cid-rVtYRZAmvX .field-input:focus {
  border-color: #fafafa;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-rVtYRZAmvX .form-control:hover::-webkit-input-placeholder,
.cid-rVtYRZAmvX .field-input:hover::-webkit-input-placeholder,
.cid-rVtYRZAmvX .form-control:focus::-webkit-input-placeholder,
.cid-rVtYRZAmvX .field-input:focus::-webkit-input-placeholder,
.cid-rVtYRZAmvX .form-control:hover::-webkit-input-placeholder,
.cid-rVtYRZAmvX .field-input:hover::-webkit-input-placeholder,
.cid-rVtYRZAmvX .form-control:focus::-webkit-input-placeholder,
.cid-rVtYRZAmvX .field-input:focus::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-rVtYRZAmvX .form-control:hover:-moz-placeholder,
.cid-rVtYRZAmvX .field-input:hover:-moz-placeholder,
.cid-rVtYRZAmvX .form-control:focus:-moz-placeholder,
.cid-rVtYRZAmvX .field-input:focus:-moz-placeholder,
.cid-rVtYRZAmvX .form-control:hover:-moz-placeholder,
.cid-rVtYRZAmvX .field-input:hover:-moz-placeholder,
.cid-rVtYRZAmvX .form-control:focus:-moz-placeholder,
.cid-rVtYRZAmvX .field-input:focus:-moz-placeholder {
  color: #ffffff;
}
.cid-rVtYRZAmvX .jq-number__spin:hover,
.cid-rVtYRZAmvX .jq-number__spin:focus {
  border-color: #fafafa;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-rVtYRZAmvX .jq-number__spin {
  border-color: #bbbbbb;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-rVtYRZAmvX input::-webkit-clear-button {
  display: none;
}
.cid-rVtYRZAmvX input::-webkit-inner-spin-button {
  display: none;
}
.cid-rVtYRZAmvX input::-webkit-outer-spin-button {
  display: none;
}
.cid-rVtYRZAmvX input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-rVtYRZAmvX .title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rVtYRZAmvX .socicon-wrap {
    margin: auto;
  }
}
.cid-rVtYRZAmvX .mbr-text {
  color: #999999;
}
.cid-rVtYSqtpB9 .google-map {
  height: 30rem;
  position: relative;
}
.cid-rVtYSqtpB9 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-rVtYSqtpB9 .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-rVtYSqtpB9 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-rVtYSqtpB9 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-rVtYSLAXyp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-rVtYSLAXyp .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-rVtYSLAXyp .container {
  max-width: 1400px;
}
.cid-rVtYSLAXyp li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-rVtYSLAXyp .col-lg-3 {
    max-width: 20%;
  }
}
.cid-rVtYSLAXyp .time {
  line-height: 2;
}
.cid-rVtYSLAXyp .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-rVtYSLAXyp .text-wrap {
  width: 100%;
}
.cid-rVtYSLAXyp .item-wrap {
  display: inline-block;
}
.cid-rVtYSLAXyp .item-wrap span,
.cid-rVtYSLAXyp .item-wrap p {
  transition: all 0.3s;
}
.cid-rVtYSLAXyp .item-wrap:hover span,
.cid-rVtYSLAXyp .item-wrap:hover p {
  color: #ffffff !important;
}
.cid-rVtYSLAXyp .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-rVtYSLAXyp .socicon-wrap .mbr-iconfont {
  font-size: 1.1rem;
  color: #ffffff !important;
  padding: 10px;
  margin-right: 0.1rem;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-rVtYSLAXyp .socicon-wrap .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-rVtYSLAXyp .align-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-rVtYSLAXyp .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rVtYSLAXyp .socicon-wrap {
    margin: auto;
  }
}
.cid-rVtYSLAXyp .title {
  color: #ffffff;
}
.cid-rVtYSLAXyp .mbr-text {
  color: #999999;
}
.cid-rVtYSLAXyp .icon-title {
  margin: 0;
  padding-bottom: 3px;
}
.cid-rVtYSLAXyp .icon-title,
.cid-rVtYSLAXyp .align-wrap {
  color: #999999;
  width: 100%;
}
.cid-sE61w2DuQh .navbar {
  padding: 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-sE61w2DuQh .navbar-fixed-top {
  padding-top: 0;
}
.cid-sE61w2DuQh .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sE61w2DuQh .dropdown-item {
  padding: 0;
}
.cid-sE61w2DuQh .dropdown-menu {
  border: 0px solid lightgray;
  background: #3b5abb !important;
}
.cid-sE61w2DuQh .menu-content-top {
  max-width: 1200px;
  display: none;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media screen and (max-width: 991px) {
  .cid-sE61w2DuQh .menu-content-top {
    display: block;
  }
  .cid-sE61w2DuQh .menu-content-top .menu-content-right {
    display: none;
  }
  .cid-sE61w2DuQh .menu-content-top .navbar-brand {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1000;
    margin: 0;
  }
}
.cid-sE61w2DuQh nav.opened .menu-content-top {
  display: none;
}
.cid-sE61w2DuQh .menu-bottom {
  margin: auto;
  width: 100%;
  background: #3b5abb;
  display: flex;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sE61w2DuQh .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sE61w2DuQh a {
  font-style: normal;
}
.cid-sE61w2DuQh .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sE61w2DuQh .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sE61w2DuQh .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sE61w2DuQh .content-text {
  margin-bottom: 0;
}
.cid-sE61w2DuQh .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sE61w2DuQh .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sE61w2DuQh .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sE61w2DuQh .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sE61w2DuQh .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sE61w2DuQh .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sE61w2DuQh .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sE61w2DuQh .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sE61w2DuQh .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sE61w2DuQh .nav-dropdown .link {
  font-weight: 400;
}
.cid-sE61w2DuQh .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sE61w2DuQh .content-right-side {
  text-align: center;
}
.cid-sE61w2DuQh .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sE61w2DuQh .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sE61w2DuQh .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sE61w2DuQh .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sE61w2DuQh .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sE61w2DuQh .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sE61w2DuQh .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sE61w2DuQh .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sE61w2DuQh .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sE61w2DuQh .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sE61w2DuQh .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sE61w2DuQh .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sE61w2DuQh .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sE61w2DuQh .navbar {
    display: block;
    padding: 0;
  }
  .cid-sE61w2DuQh .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sE61w2DuQh .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4rem - 4.5rem);
  }
  .cid-sE61w2DuQh .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sE61w2DuQh .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sE61w2DuQh .navbar-toggler {
    display: none;
  }
  .cid-sE61w2DuQh .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sE61w2DuQh .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sE61w2DuQh .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sE61w2DuQh .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sE61w2DuQh .menu-logo {
  margin-right: auto;
}
.cid-sE61w2DuQh .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0;
  height: 100%;
  transition: padding 0.2s;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sE61w2DuQh .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sE61w2DuQh .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sE61w2DuQh .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sE61w2DuQh .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sE61w2DuQh .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sE61w2DuQh .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sE61w2DuQh .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sE61w2DuQh .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sE61w2DuQh .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sE61w2DuQh .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sE61w2DuQh .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sE61w2DuQh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sE61w2DuQh .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-sE61w2DuQh .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sE61w2DuQh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sE61w2DuQh .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-sE61w2DuQh .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sE61w2DuQh .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sE61w2DuQh .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sE61w2DuQh .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sE61w2DuQh .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sE61w2DuQh .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sE61w2DuQh .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sE61w2DuQh .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sE61w2DuQh button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0;
  -webkit-align-self: center;
  align-self: flex-end;
}
.cid-sE61w2DuQh button.navbar-toggler:focus {
  outline: none;
}
.cid-sE61w2DuQh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sE61w2DuQh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sE61w2DuQh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sE61w2DuQh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sE61w2DuQh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sE61w2DuQh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sE61w2DuQh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sE61w2DuQh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sE61w2DuQh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sE61w2DuQh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sE61w2DuQh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sE61w2DuQh .collapsed .btn {
  display: flex;
}
.cid-sE61w2DuQh .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sE61w2DuQh .collapsed .navbar-collapse.collapsing,
.cid-sE61w2DuQh .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sE61w2DuQh .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sE61w2DuQh .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sE61w2DuQh .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sE61w2DuQh .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sE61w2DuQh .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sE61w2DuQh .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sE61w2DuQh .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sE61w2DuQh .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sE61w2DuQh .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sE61w2DuQh .collapsed button.navbar-toggler {
  display: block;
}
.cid-sE61w2DuQh .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sE61w2DuQh .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sE61w2DuQh .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sE61w2DuQh .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sE61w2DuQh .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sE61w2DuQh .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sE61w2DuQh .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sE61w2DuQh .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sE61w2DuQh .navbar-collapse.collapsing,
  .cid-sE61w2DuQh .navbar-collapse.show {
    display: block !important;
  }
  .cid-sE61w2DuQh .navbar-collapse.collapsing .navbar-nav,
  .cid-sE61w2DuQh .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sE61w2DuQh .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sE61w2DuQh .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sE61w2DuQh .navbar-collapse.collapsing .navbar-buttons,
  .cid-sE61w2DuQh .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sE61w2DuQh .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sE61w2DuQh .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sE61w2DuQh .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sE61w2DuQh img {
    height: 2.2rem !important;
  }
  .cid-sE61w2DuQh .btn {
    display: flex;
  }
  .cid-sE61w2DuQh button.navbar-toggler {
    display: block;
  }
  .cid-sE61w2DuQh .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sE61w2DuQh .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sE61w2DuQh .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sE61w2DuQh .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sE61w2DuQh .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sE61w2DuQh .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sE61w2DuQh .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sE61w2DuQh .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sE61w2DuQh .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sE61w2DuQh .nav-link:focus {
  outline: none;
}
.cid-sE61w2DuQh .navbar-toggler {
  position: relative;
}
.cid-sE61w2DuQh .dropdown-item.active,
.cid-sE61w2DuQh .dropdown-item:active {
  background: #3b5abb;
  color: initial;
}
.cid-sE6ieX0LpQ {
  padding-top: 150px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1920x1317.jpg");
}
.cid-sE6ieX0LpQ .card-wrapper {
  z-index: 3;
}
.cid-sE6ieX0LpQ .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-sE6ieX0LpQ:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-sE6ieX0LpQ .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sE6ieX0LpQ .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-sE6ieX0LpQ .text-block {
  text-align: right !important;
}
.cid-sE6ieX0LpQ H2 {
  text-align: center;
}
.cid-sE6hjfcwgU {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sE6hjfcwgU img,
.cid-sE6hjfcwgU .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sE6hjfcwgU .item:focus,
.cid-sE6hjfcwgU span:focus {
  outline: none;
}
.cid-sE6hjfcwgU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sE6hjfcwgU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sE6hjfcwgU .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sE6hjfcwgU .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sE6hjfcwgU .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sE6hjfcwgU .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sE6hjfcwgU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sE6hjfcwgU .mbr-section-title {
  color: #232323;
}
.cid-sE6hjfcwgU .mbr-text,
.cid-sE6hjfcwgU .mbr-section-btn {
  text-align: left;
}
.cid-sE6hjfcwgU .item-title {
  text-align: left;
  color: #4479d9;
}
.cid-sE6hjfcwgU .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-sgSoWhE0Cp {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sgSoWhE0Cp .fade-in-up {
  animation: fade-in-up 0.2s ease-in-out forwards;
}
.cid-sgSoWhE0Cp .mbr-text {
  animation-delay: .2s;
  margin-top: 1.5rem;
  text-align: left;
}
.cid-sgSoWhE0Cp .mbr-section-btn {
  margin-top: 2rem;
  animation-delay: .2s;
}
.cid-sgSoWhE0Cp .box2 {
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
  background-size: cover;
  background-position: center;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.cid-sgSoWhE0Cp .icon-wrap {
  background-color: #ffffff !important;
  border-radius: 50%;
  width: 73.5px;
  height: 73.5px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-sgSoWhE0Cp .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-sgSoWhE0Cp .icon-wrap span {
  padding-left: 8px;
}
.cid-sgSoWhE0Cp .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #000000 !important;
}
.cid-sgSoWhE0Cp .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sgSoWhE0Cp .text-wrapper {
  max-width: 24rem;
}
@media (max-width: 991px) {
  .cid-sgSoWhE0Cp .text-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sgSoWhE0Cp .text-wrapper {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.cid-sgSoWhE0Cp .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sgSoWhE0Cp .modalWindow .modalWindow-container {
  transform: translateY(50vh) translateY(-22vw);
}
.cid-sgSoWhE0Cp .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-sgSoWhE0Cp a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sgSoWhE0Cp a.close:hover {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sgSoWhE0Cp {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .cid-sgSoWhE0Cp {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .cid-sgSoWhE0Cp .box2 {
    height: 250px;
  }
}
.cid-sgSoWhE0Cp .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-sgSoWhE0Cp .mbr-text,
.cid-sgSoWhE0Cp .mbr-section-btn {
  text-align: left;
}
.cid-sE61w2DuQh .navbar {
  padding: 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-sE61w2DuQh .navbar-fixed-top {
  padding-top: 0;
}
.cid-sE61w2DuQh .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sE61w2DuQh .dropdown-item {
  padding: 0;
}
.cid-sE61w2DuQh .dropdown-menu {
  border: 0px solid lightgray;
  background: #3b5abb !important;
}
.cid-sE61w2DuQh .menu-content-top {
  /*max-width: 1200px;*/
  max-width: 100%;
  display: none;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media screen and (max-width: 991px) {
  .cid-sE61w2DuQh .menu-content-top {
    display: block;
  }
  .cid-sE61w2DuQh .menu-content-top .menu-content-right {
    display: none;
  }
  .cid-sE61w2DuQh .menu-content-top .navbar-brand {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1000;
    margin: 0;
  }
}
.cid-sE61w2DuQh nav.opened .menu-content-top {
  display: none;
}
.cid-sE61w2DuQh .menu-bottom {
  margin: auto;
  width: 100%;
  background: #3b5abb;
  display: flex;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sE61w2DuQh .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sE61w2DuQh a {
  font-style: normal;
}
.cid-sE61w2DuQh .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sE61w2DuQh .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sE61w2DuQh .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sE61w2DuQh .content-text {
  margin-bottom: 0;
}
.cid-sE61w2DuQh .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sE61w2DuQh .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sE61w2DuQh .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sE61w2DuQh .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sE61w2DuQh .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sE61w2DuQh .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sE61w2DuQh .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sE61w2DuQh .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sE61w2DuQh .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sE61w2DuQh .nav-dropdown .link {
  font-weight: 400;
}
.cid-sE61w2DuQh .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sE61w2DuQh .content-right-side {
  text-align: center;
}
.cid-sE61w2DuQh .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sE61w2DuQh .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sE61w2DuQh .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sE61w2DuQh .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sE61w2DuQh .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sE61w2DuQh .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sE61w2DuQh .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sE61w2DuQh .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sE61w2DuQh .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sE61w2DuQh .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sE61w2DuQh .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sE61w2DuQh .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sE61w2DuQh .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sE61w2DuQh .navbar {
    display: block;
    padding: 0;
  }
  .cid-sE61w2DuQh .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sE61w2DuQh .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4rem - 4.5rem);
  }
  .cid-sE61w2DuQh .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sE61w2DuQh .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sE61w2DuQh .navbar-toggler {
    display: none;
  }
  .cid-sE61w2DuQh .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sE61w2DuQh .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sE61w2DuQh .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sE61w2DuQh .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sE61w2DuQh .menu-logo {
  margin-right: auto;
}
.cid-sE61w2DuQh .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0;
  height: 100%;
  transition: padding 0.2s;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sE61w2DuQh .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sE61w2DuQh .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sE61w2DuQh .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sE61w2DuQh .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sE61w2DuQh .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sE61w2DuQh .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sE61w2DuQh .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sE61w2DuQh .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sE61w2DuQh .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sE61w2DuQh .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sE61w2DuQh .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sE61w2DuQh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sE61w2DuQh .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-sE61w2DuQh .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sE61w2DuQh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sE61w2DuQh .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-sE61w2DuQh .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sE61w2DuQh .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sE61w2DuQh .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sE61w2DuQh .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sE61w2DuQh .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sE61w2DuQh .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sE61w2DuQh .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sE61w2DuQh .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sE61w2DuQh button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0;
  -webkit-align-self: center;
  align-self: flex-end;
}
.cid-sE61w2DuQh button.navbar-toggler:focus {
  outline: none;
}
.cid-sE61w2DuQh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sE61w2DuQh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sE61w2DuQh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sE61w2DuQh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sE61w2DuQh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sE61w2DuQh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sE61w2DuQh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sE61w2DuQh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sE61w2DuQh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sE61w2DuQh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sE61w2DuQh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sE61w2DuQh .collapsed .btn {
  display: flex;
}
.cid-sE61w2DuQh .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sE61w2DuQh .collapsed .navbar-collapse.collapsing,
.cid-sE61w2DuQh .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sE61w2DuQh .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sE61w2DuQh .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sE61w2DuQh .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sE61w2DuQh .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sE61w2DuQh .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sE61w2DuQh .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sE61w2DuQh .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sE61w2DuQh .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sE61w2DuQh .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sE61w2DuQh .collapsed button.navbar-toggler {
  display: block;
}
.cid-sE61w2DuQh .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sE61w2DuQh .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sE61w2DuQh .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sE61w2DuQh .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sE61w2DuQh .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sE61w2DuQh .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sE61w2DuQh .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sE61w2DuQh .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sE61w2DuQh .navbar-collapse.collapsing,
  .cid-sE61w2DuQh .navbar-collapse.show {
    display: block !important;
  }
  .cid-sE61w2DuQh .navbar-collapse.collapsing .navbar-nav,
  .cid-sE61w2DuQh .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sE61w2DuQh .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sE61w2DuQh .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sE61w2DuQh .navbar-collapse.collapsing .navbar-buttons,
  .cid-sE61w2DuQh .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sE61w2DuQh .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sE61w2DuQh .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sE61w2DuQh .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sE61w2DuQh img {
    height: 2.2rem !important;
  }
  .cid-sE61w2DuQh .btn {
    display: flex;
  }
  .cid-sE61w2DuQh button.navbar-toggler {
    display: block;
  }
  .cid-sE61w2DuQh .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sE61w2DuQh .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sE61w2DuQh .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sE61w2DuQh .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sE61w2DuQh .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sE61w2DuQh .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sE61w2DuQh .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sE61w2DuQh .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sE61w2DuQh .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sE61w2DuQh .nav-link:focus {
  outline: none;
}
.cid-sE61w2DuQh .navbar-toggler {
  position: relative;
}
.cid-sE61w2DuQh .dropdown-item.active,
.cid-sE61w2DuQh .dropdown-item:active {
  background: #3b5abb;
  color: initial;
}
.cid-sE6kqgOkPL {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #343351;
  position: relative;
  overflow: hidden;
}
.cid-sE6kqgOkPL .container {
  max-width: 1400px;
}
.cid-sE6kqgOkPL .card-img2 span {
  padding-top: 6px;
}
.cid-sE6kqgOkPL .soc-item a {
  padding-top: 5px;
}
.cid-sE6kqgOkPL .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-sE6kqgOkPL .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sE6kqgOkPL .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sE6kqgOkPL .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sE6kqgOkPL svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sE6kqgOkPL #e2_shape {
  fill: #ffffff !important;
}
.cid-sE6kqgOkPL .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-sE6kqgOkPL .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sE6kqgOkPL .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sE6kqgOkPL .card-img {
  width: auto;
}
.cid-sE6kqgOkPL .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sE6kqgOkPL .soc-item span {
  font-size: 1.4rem;
}
.cid-sE6kqgOkPL .soc-item:hover span {
  color: #6592e6 !important;
}
.cid-sE6kqgOkPL .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sE6kqgOkPL .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sE6kqgOkPL .media-wrap {
  margin-bottom: 1rem;
}
.cid-sE6kqgOkPL .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sE6kqgOkPL img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-sE6kqgOkPL .item {
    justify-content: center;
  }
  .cid-sE6kqgOkPL .quote::after {
    left: 60px;
  }
}
.cid-sE6kqgOkPL .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sE6kqgOkPL .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sE6kqgOkPL .text1 {
  color: #ffffff;
}
.cid-sE6kqgOkPL .item-title {
  color: #ffffff;
}
.cid-sE6kqgOkPL H5 {
  color: #ffffff;
}
.cid-sE6kqgOkPL .theme {
  color: #ffffff;
}
.cid-sE6kqgOkPL .copyright > p {
  color: #ff3366;
}
.cid-sE6kqgOkPL .text2 {
  color: #ffffff;
}
.cid-sE6pRkfyHw .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-sE6pRkfyHw .navbar-fixed-top {
  padding-top: 0;
}
.cid-sE6pRkfyHw .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sE6pRkfyHw .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sE6pRkfyHw .dropdown-item {
  padding: 0;
}
.cid-sE6pRkfyHw .dropdown-menu {
  border: 0px solid lightgray;
  background: #3b5abb !important;
}
.cid-sE6pRkfyHw .menu-content-top {
  max-width: 1200px;
  display: none;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-sE6pRkfyHw .menu-bottom {
  margin: auto;
  width: 100%;
  background: #3b5abb;
  display: flex;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sE6pRkfyHw .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sE6pRkfyHw a {
  font-style: normal;
}
.cid-sE6pRkfyHw .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sE6pRkfyHw .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sE6pRkfyHw .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sE6pRkfyHw .content-text {
  margin-bottom: 0;
}
.cid-sE6pRkfyHw .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sE6pRkfyHw .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sE6pRkfyHw .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sE6pRkfyHw .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sE6pRkfyHw .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sE6pRkfyHw .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sE6pRkfyHw .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sE6pRkfyHw .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sE6pRkfyHw .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sE6pRkfyHw .nav-dropdown .link {
  font-weight: 400;
}
.cid-sE6pRkfyHw .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sE6pRkfyHw .content-right-side {
  text-align: center;
}
.cid-sE6pRkfyHw .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sE6pRkfyHw .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sE6pRkfyHw .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sE6pRkfyHw .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-sE6pRkfyHw .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sE6pRkfyHw .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sE6pRkfyHw .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sE6pRkfyHw .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sE6pRkfyHw .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sE6pRkfyHw .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sE6pRkfyHw .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sE6pRkfyHw .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sE6pRkfyHw .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-sE6pRkfyHw .navbar {
    display: block;
    padding: 0;
  }
  .cid-sE6pRkfyHw .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sE6pRkfyHw .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4rem - 4.5rem);
  }
  .cid-sE6pRkfyHw .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sE6pRkfyHw .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sE6pRkfyHw .navbar-toggler {
    display: none;
  }
  .cid-sE6pRkfyHw .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sE6pRkfyHw .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sE6pRkfyHw .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sE6pRkfyHw .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sE6pRkfyHw .menu-logo {
  margin-right: auto;
}
.cid-sE6pRkfyHw .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sE6pRkfyHw .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sE6pRkfyHw .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sE6pRkfyHw .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sE6pRkfyHw .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sE6pRkfyHw .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sE6pRkfyHw .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sE6pRkfyHw .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sE6pRkfyHw .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sE6pRkfyHw .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sE6pRkfyHw .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sE6pRkfyHw .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sE6pRkfyHw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sE6pRkfyHw .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-sE6pRkfyHw .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sE6pRkfyHw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sE6pRkfyHw .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-sE6pRkfyHw .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sE6pRkfyHw .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sE6pRkfyHw .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sE6pRkfyHw .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sE6pRkfyHw .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sE6pRkfyHw .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sE6pRkfyHw .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sE6pRkfyHw .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sE6pRkfyHw button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sE6pRkfyHw button.navbar-toggler:focus {
  outline: none;
}
.cid-sE6pRkfyHw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sE6pRkfyHw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sE6pRkfyHw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sE6pRkfyHw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sE6pRkfyHw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sE6pRkfyHw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sE6pRkfyHw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sE6pRkfyHw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sE6pRkfyHw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sE6pRkfyHw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sE6pRkfyHw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sE6pRkfyHw .collapsed .btn {
  display: flex;
}
.cid-sE6pRkfyHw .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sE6pRkfyHw .collapsed .navbar-collapse.collapsing,
.cid-sE6pRkfyHw .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sE6pRkfyHw .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sE6pRkfyHw .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sE6pRkfyHw .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sE6pRkfyHw .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sE6pRkfyHw .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sE6pRkfyHw .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sE6pRkfyHw .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sE6pRkfyHw .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sE6pRkfyHw .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sE6pRkfyHw .collapsed button.navbar-toggler {
  display: block;
}
.cid-sE6pRkfyHw .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sE6pRkfyHw .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sE6pRkfyHw .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sE6pRkfyHw .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sE6pRkfyHw .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sE6pRkfyHw .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sE6pRkfyHw .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sE6pRkfyHw .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sE6pRkfyHw .navbar-collapse.collapsing,
  .cid-sE6pRkfyHw .navbar-collapse.show {
    display: block !important;
  }
  .cid-sE6pRkfyHw .navbar-collapse.collapsing .navbar-nav,
  .cid-sE6pRkfyHw .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sE6pRkfyHw .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sE6pRkfyHw .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sE6pRkfyHw .navbar-collapse.collapsing .navbar-buttons,
  .cid-sE6pRkfyHw .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sE6pRkfyHw .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sE6pRkfyHw .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sE6pRkfyHw .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sE6pRkfyHw img {
    height: 3.8rem !important;
  }
  .cid-sE6pRkfyHw .btn {
    display: flex;
  }
  .cid-sE6pRkfyHw button.navbar-toggler {
    display: block;
  }
  .cid-sE6pRkfyHw .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sE6pRkfyHw .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sE6pRkfyHw .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sE6pRkfyHw .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sE6pRkfyHw .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sE6pRkfyHw .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sE6pRkfyHw .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sE6pRkfyHw .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sE6pRkfyHw .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sE6pRkfyHw .nav-link:focus {
  outline: none;
}
.cid-sE6pRkfyHw .navbar-toggler {
  position: relative;
}
.cid-sE6pRkfyHw .dropdown-item.active,
.cid-sE6pRkfyHw .dropdown-item:active {
  background: #3b5abb;
  color: initial;
}
.cid-sE6pWezqCu {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: #f2f3f7;
}
.cid-sE6pWezqCu .mbr-section-title {
  color: #36187d;
}
.cid-sE6pWezqCu .mbr-section-subtitle {
  color: #0196e3;
}
.cid-sE6pWezqCu .mbr-text {
  color: #36187d;
}
.cid-sE6pWezqCu .title-col {
  border-right: 3px solid currentColor;
  color: #0196e3;
  margin-right: 3rem;
  align-items: center;
  display: inline-flex;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sE6pWezqCu .title-col {
    margin-right: 0;
    border-right: 0;
  }
}
.cid-sE6pWezqCu .text-col {
  align-items: center;
  display: flex;
}
.cid-sE6pWezqCu .mbr-section-subtitle,
.cid-sE6pWezqCu .title-col {
  width: 100%;
}
.cid-sE6qe9tMvr {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sE6qe9tMvr .container-fluid {
  padding: 0 3rem;
}
.cid-sE6qe9tMvr .mbr-section-subtitle {
  color: #767676;
}
.cid-sE6qe9tMvr .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sE6qe9tMvr .table-wrapper {
  margin: 0 auto;
}
.cid-sE6qe9tMvr table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sE6qe9tMvr table thead tr {
  border: none !important;
}
.cid-sE6qe9tMvr table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
}
.cid-sE6qe9tMvr table tr td {
  border-color: #eceeef;
}
.cid-sE6qe9tMvr table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-sE6qe9tMvr th:after,
.cid-sE6qe9tMvr th:before {
  display: none !important;
}
.cid-sE6qe9tMvr .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-sE6qe9tMvr .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-sE6qe9tMvr table th,
  .cid-sE6qe9tMvr table td {
    padding: .75rem;
  }
}
.cid-sE6qe9tMvr .body-item {
  text-align: left;
}
.cid-sE6qe9tMvr .mbr-text {
  color: #767676;
}
.cid-sE6qe9tMvr .head-item {
  color: #232323;
}
.cid-sE6qe9tMvr .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-sE6qqfs75I {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #343351;
  position: relative;
  overflow: hidden;
}
.cid-sE6qqfs75I .container {
  max-width: 1400px;
}
.cid-sE6qqfs75I .card-img2 span {
  padding-top: 6px;
}
.cid-sE6qqfs75I .soc-item a {
  padding-top: 5px;
}
.cid-sE6qqfs75I .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-sE6qqfs75I .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sE6qqfs75I .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sE6qqfs75I .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sE6qqfs75I svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sE6qqfs75I #e2_shape {
  fill: #ffffff !important;
}
.cid-sE6qqfs75I .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-sE6qqfs75I .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sE6qqfs75I .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sE6qqfs75I .card-img {
  width: auto;
}
.cid-sE6qqfs75I .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sE6qqfs75I .soc-item span {
  font-size: 1.4rem;
}
.cid-sE6qqfs75I .soc-item:hover span {
  color: #6592e6 !important;
}
.cid-sE6qqfs75I .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sE6qqfs75I .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sE6qqfs75I .media-wrap {
  margin-bottom: 1rem;
}
.cid-sE6qqfs75I .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sE6qqfs75I img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-sE6qqfs75I .item {
    justify-content: center;
  }
  .cid-sE6qqfs75I .quote::after {
    left: 60px;
  }
}
.cid-sE6qqfs75I .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sE6qqfs75I .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sE6qqfs75I .text1 {
  color: #ffffff;
}
.cid-sE6qqfs75I .item-title {
  color: #ffffff;
}
.cid-sE6qqfs75I H5 {
  color: #ffffff;
}
.cid-sE6qqfs75I .theme {
  color: #ffffff;
}
.cid-sE6qqfs75I .copyright > p {
  color: #ff3366;
}
.cid-sE6qqfs75I .text2 {
  color: #ffffff;
}
