.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 1rem;
}
.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.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 0.64rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 0.56rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (0.93rem + (0.8 - 0.93) * ((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.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #030556 !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: #030556 !important;
  border-color: #030556 !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: #000002 !important;
  border-color: #000002 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000002 !important;
  border-color: #000002 !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: #030556;
  color: #030556;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000002 !important;
  background-color: transparent!important;
  border-color: #000002 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #030556 !important;
  border-color: #030556 !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: #030556 !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: #000000 !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: #030556;
}
.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: #030556;
  border-color: #030556;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #030556;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #070cd1;
}
.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: #030556 !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: #030556;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #030556;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #030556;
}
.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: #030556;
  border-bottom-color: #030556;
}
.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: #030556 !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='%23030556' %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-tpIzIXzdUs {
  background-image: url("../../../assets/images/img-61732-2000x1333.png");
}
.cid-tpIzIXzdUs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpIzIXzdUs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpIzIXzdUs .mbr-text,
.cid-tpIzIXzdUs .mbr-section-btn {
  text-align: left;
}
.cid-tpIzIXzdUs .mbr-section-title {
  color: #1b1464;
}
.cid-tpIzIXzdUs .mbr-section-subtitle {
  color: #605f5f;
}
.cid-tpIzIYB7CG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tpIzIYB7CG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpIzIYB7CG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpIzIYB7CG .video-wrapper iframe {
  width: 100%;
}
.cid-tpIzIYB7CG .mbr-section-title,
.cid-tpIzIYB7CG .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tpIzIYB7CG .text-wrapper {
    padding: 2rem;
  }
}
.cid-tpIzIYB7CG .mbr-section-subtitle {
  color: #1b1464;
}
.cid-tpIzIZqcsE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tpIzIZqcsE img,
.cid-tpIzIZqcsE .item-img {
  width: 100%;
}
.cid-tpIzIZqcsE .item:focus,
.cid-tpIzIZqcsE span:focus {
  outline: none;
}
.cid-tpIzIZqcsE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tpIzIZqcsE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tpIzIZqcsE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tpIzIZqcsE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tpIzIZqcsE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tpIzIZqcsE .mbr-section-title {
  color: #1b1464;
}
.cid-tpIzIZqcsE .mbr-text,
.cid-tpIzIZqcsE .mbr-section-btn {
  text-align: left;
}
.cid-tpIzIZqcsE .item-title {
  text-align: left;
}
.cid-tpIzIZqcsE .item-subtitle {
  text-align: left;
}
.cid-tpIzJ0h6sJ {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-tpIzJ0Yz38 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-tpIzJ0Yz38 .media-container-row {
  justify-content: space-between;
}
.cid-tpIzJ0Yz38 .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-tpIzJ0Yz38 .text-content {
    max-width: none;
  }
}
.cid-tpIzJ0Yz38 .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #4479d9;
  border: 2px solid #4479d9;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tpIzJ0Yz38 .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-tpIzJ0Yz38 .mbr-iconfont-social:hover {
  background-color: #4479d9;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-tpIzJ0Yz38 .icons {
    justify-content: center !important;
  }
  .cid-tpIzJ0Yz38 .text-content * {
    text-align: center;
  }
}
.cid-tpIzJ0Yz38 .mbr-section-title {
  color: #353535;
}
.cid-tpIzJ0Yz38 P {
  color: #000000;
}
.cid-tpIzJ1Pecz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tpIzJ1Pecz .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tpIzJ1Pecz .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-tpIzJ1Pecz .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tpIzJ1Pecz .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tpIzJ1Pecz .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #030556;
}
.cid-tpIEzhHYds {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #1b1464;
}
.cid-tpIEzhHYds .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpIEzhHYds .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpIEzhHYds .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tpIEzhHYds .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tpIEzhHYds .row {
    text-align: center;
  }
  .cid-tpIEzhHYds .social-row {
    justify-content: center;
  }
}
.cid-tpIEzhHYds .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tpIEzhHYds .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tpIEzhHYds .list {
    margin-bottom: 0rem;
  }
}
.cid-tpIEzhHYds .mbr-text {
  color: #bbbbbb;
}
.cid-tpIEzhHYds .mbr-iconfont {
  color: black;
}
.cid-tGp7ArptUy .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tGp7ArptUy .navbar-fixed-top {
  padding-top: 0;
}
.cid-tGp7ArptUy .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tGp7ArptUy .collapse {
  justify-content: space-between !important;
}
.cid-tGp7ArptUy .icon-wrap {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.cid-tGp7ArptUy .mbr-iconfont {
  cursor: pointer;
}
.cid-tGp7ArptUy .nav-item {
  position: relative;
  letter-spacing: 2px;
  font-weight: 200;
}
.cid-tGp7ArptUy .nav-item:before {
  position: absolute;
  left: 0px;
  top: 50%;
  content: '';
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  opacity: 0.5;
  background: #030556;
  border-radius: 50%;
}
.cid-tGp7ArptUy .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tGp7ArptUy .location-title {
  margin: 0;
  color: #ffffff;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  transform-origin: top;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tGp7ArptUy .menu-content-top {
  background: #030556;
  max-width: 100%;
  display: none;
  transition: all 0.3s;
  jistify-content: space-between;
  -webkit-justify-content: left;
  justify-content: space-between;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
.cid-tGp7ArptUy .dropdown-item {
  padding: 0.4rem 1.8rem;
}
.cid-tGp7ArptUy .dropdown-item,
.cid-tGp7ArptUy .nav-link,
.cid-tGp7ArptUy .brand-name {
  font-style: normal;
}
.cid-tGp7ArptUy .dropdown-item:hover,
.cid-tGp7ArptUy .nav-link:hover,
.cid-tGp7ArptUy .brand-name:hover {
  color: #030556 !important;
}
.cid-tGp7ArptUy .dropdown-menu {
  background-color: #ffffff;
}
.cid-tGp7ArptUy .dropdown-item:active {
  background-color: #ffffff;
}
.cid-tGp7ArptUy .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-tGp7ArptUy .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .content-text {
  margin-bottom: 0;
}
.cid-tGp7ArptUy .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tGp7ArptUy .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #030556;
    -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-tGp7ArptUy .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tGp7ArptUy .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tGp7ArptUy .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tGp7ArptUy .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tGp7ArptUy .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tGp7ArptUy .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tGp7ArptUy .nav-dropdown .link {
  font-weight: 400;
}
.cid-tGp7ArptUy .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tGp7ArptUy .content-right-side {
  text-align: center;
}
.cid-tGp7ArptUy .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tGp7ArptUy .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tGp7ArptUy .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.2rem;
  color: #ffffff !important;
}
.cid-tGp7ArptUy .info-widget {
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.cid-tGp7ArptUy .widget-title:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: currentColor;
}
.cid-tGp7ArptUy .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tGp7ArptUy .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tGp7ArptUy .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tGp7ArptUy .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tGp7ArptUy .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-tGp7ArptUy .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tGp7ArptUy .navbar .menu-content-top {
    display: flex;
    height: 50px;
  }
  .cid-tGp7ArptUy .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tGp7ArptUy .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-tGp7ArptUy .navbar {
    display: block;
    padding: 0;
  }
  .cid-tGp7ArptUy .navbar .menu-logo {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tGp7ArptUy .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-tGp7ArptUy .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-tGp7ArptUy .navbar-toggler {
    display: none;
  }
}
.cid-tGp7ArptUy .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tGp7ArptUy .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tGp7ArptUy .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tGp7ArptUy .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tGp7ArptUy .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tGp7ArptUy .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tGp7ArptUy .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tGp7ArptUy .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tGp7ArptUy .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tGp7ArptUy .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-tGp7ArptUy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGp7ArptUy .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tGp7ArptUy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tGp7ArptUy .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tGp7ArptUy .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tGp7ArptUy .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tGp7ArptUy .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tGp7ArptUy .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tGp7ArptUy button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1.6rem 1rem;
}
.cid-tGp7ArptUy button.navbar-toggler:focus {
  outline: none;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #030556;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGp7ArptUy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGp7ArptUy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGp7ArptUy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGp7ArptUy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGp7ArptUy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGp7ArptUy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGp7ArptUy .collapsed .btn {
  display: flex;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tGp7ArptUy .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tGp7ArptUy .collapsed button.navbar-toggler {
  display: block;
}
.cid-tGp7ArptUy .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tGp7ArptUy .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tGp7ArptUy .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .collapsed .menu-bottom {
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-tGp7ArptUy .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-tGp7ArptUy .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-tGp7ArptUy .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing,
  .cid-tGp7ArptUy .navbar-collapse.show {
    display: block !important;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing .navbar-nav,
  .cid-tGp7ArptUy .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tGp7ArptUy .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing .navbar-buttons,
  .cid-tGp7ArptUy .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tGp7ArptUy .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tGp7ArptUy img {
    height: 3.8rem !important;
  }
  .cid-tGp7ArptUy .btn {
    display: flex;
  }
  .cid-tGp7ArptUy button.navbar-toggler {
    display: block;
  }
  .cid-tGp7ArptUy .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tGp7ArptUy .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tGp7ArptUy .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-tGp7ArptUy .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tGp7ArptUy .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tGp7ArptUy .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-tGp7ArptUy .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tGp7ArptUy .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tGp7ArptUy .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tGp7ArptUy .nav-link:focus {
  outline: none;
}
.cid-tGp7ArptUy .navbar-toggler {
  position: relative;
}
.cid-tGp7ArptUy .dropdown-item.active,
.cid-tGp7ArptUy .dropdown-item:active {
  color: initial;
}
.cid-tGp7ArptUy .widget-title,
.cid-tGp7ArptUy .widget-icon {
  color: #ffffff;
}
.cid-tGp7ArptUy .widget-text {
  color: #656565;
}
@media (max-width: 992px) {
  .cid-tGp7ArptUy .menu-logo {
    display: none;
  }
  .cid-tGp7ArptUy .navbar-collapse {
    padding: 0;
    padding-top: 1.5rem;
  }
  .cid-tGp7ArptUy .nav-item:before {
    content: none;
  }
  .cid-tGp7ArptUy .navbar {
    padding: 0;
  }
  .cid-tGp7ArptUy .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tGp7ArptUy button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-tqgkUYmws9 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/enviromental-policy-copy-2000x417.jpeg");
}
.cid-tqgkUYmws9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqgkUYmws9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqgkUYXmIX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqgkUYXmIX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqgkUYXmIX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqgkUYXmIX .mbr-section-title {
  color: #1b1464;
}
.cid-tqgkUZuWRK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f0f5ff;
}
.cid-tqgkUZuWRK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqgkUZuWRK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqgkUZuWRK .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tqgkUZuWRK .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tqgkUZuWRK .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqgkUZuWRK .card-wrapper {
    padding: 4rem;
  }
}
.cid-tqgkUZuWRK .mbr-text,
.cid-tqgkUZuWRK .mbr-section-btn {
  text-align: left;
  color: #605f5f;
}
.cid-tqgkUZuWRK .card-title {
  color: #605f5f;
  text-align: left;
}
.cid-tqglgqPhnU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tqglgqPhnU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqglgqPhnU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqglgqPhnU .timeline-element {
  position: relative;
}
.cid-tqglgqPhnU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tqglgqPhnU .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-tqglgqPhnU .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-tqglgqPhnU .iconBackground {
    left: 50%;
  }
}
.cid-tqglgqPhnU .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-tqglgqPhnU .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-tqglgqPhnU .row:after {
    left: 50%;
  }
}
.cid-tqglgqPhnU .row:nth-child(odd) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-tqglgqPhnU .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-tqglgqPhnU .timeline-date-wrapper,
  .cid-tqglgqPhnU .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-tqglgqPhnU .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tqglgqPhnU .timeline-date-wrapper,
  .cid-tqglgqPhnU .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tqglgqPhnU .timeline-date-wrapper,
  .cid-tqglgqPhnU .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-tqgkV0cFDv {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #1b1464;
}
.cid-tqgkV0cFDv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqgkV0cFDv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqgkV0cFDv .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tqgkV0cFDv .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tqgkV0cFDv .row {
    text-align: center;
  }
  .cid-tqgkV0cFDv .social-row {
    justify-content: center;
  }
}
.cid-tqgkV0cFDv .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tqgkV0cFDv .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqgkV0cFDv .list {
    margin-bottom: 0rem;
  }
}
.cid-tqgkV0cFDv .mbr-text {
  color: #bbbbbb;
}
.cid-tqgkV0cFDv .mbr-iconfont {
  color: black;
}
.cid-tGp7ArptUy .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tGp7ArptUy .navbar-fixed-top {
  padding-top: 0;
}
.cid-tGp7ArptUy .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tGp7ArptUy .collapse {
  justify-content: space-between !important;
}
.cid-tGp7ArptUy .icon-wrap {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.cid-tGp7ArptUy .mbr-iconfont {
  cursor: pointer;
}
.cid-tGp7ArptUy .nav-item {
  position: relative;
  letter-spacing: 2px;
  font-weight: 200;
}
.cid-tGp7ArptUy .nav-item:before {
  position: absolute;
  left: 0px;
  top: 50%;
  content: '';
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  opacity: 0.5;
  background: #030556;
  border-radius: 50%;
}
.cid-tGp7ArptUy .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tGp7ArptUy .location-title {
  margin: 0;
  color: #ffffff;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  transform-origin: top;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tGp7ArptUy .menu-content-top {
  background: #030556;
  max-width: 100%;
  display: none;
  transition: all 0.3s;
  jistify-content: space-between;
  -webkit-justify-content: left;
  justify-content: space-between;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
.cid-tGp7ArptUy .dropdown-item {
  padding: 0.4rem 1.8rem;
}
.cid-tGp7ArptUy .dropdown-item,
.cid-tGp7ArptUy .nav-link,
.cid-tGp7ArptUy .brand-name {
  font-style: normal;
}
.cid-tGp7ArptUy .dropdown-item:hover,
.cid-tGp7ArptUy .nav-link:hover,
.cid-tGp7ArptUy .brand-name:hover {
  color: #030556 !important;
}
.cid-tGp7ArptUy .dropdown-menu {
  background-color: #ffffff;
}
.cid-tGp7ArptUy .dropdown-item:active {
  background-color: #ffffff;
}
.cid-tGp7ArptUy .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-tGp7ArptUy .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .content-text {
  margin-bottom: 0;
}
.cid-tGp7ArptUy .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tGp7ArptUy .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #030556;
    -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-tGp7ArptUy .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tGp7ArptUy .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tGp7ArptUy .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tGp7ArptUy .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tGp7ArptUy .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tGp7ArptUy .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tGp7ArptUy .nav-dropdown .link {
  font-weight: 400;
}
.cid-tGp7ArptUy .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tGp7ArptUy .content-right-side {
  text-align: center;
}
.cid-tGp7ArptUy .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tGp7ArptUy .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tGp7ArptUy .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.2rem;
  color: #ffffff !important;
}
.cid-tGp7ArptUy .info-widget {
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.cid-tGp7ArptUy .widget-title:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: currentColor;
}
.cid-tGp7ArptUy .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tGp7ArptUy .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tGp7ArptUy .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tGp7ArptUy .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tGp7ArptUy .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-tGp7ArptUy .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tGp7ArptUy .navbar .menu-content-top {
    display: flex;
    height: 50px;
  }
  .cid-tGp7ArptUy .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tGp7ArptUy .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-tGp7ArptUy .navbar {
    display: block;
    padding: 0;
  }
  .cid-tGp7ArptUy .navbar .menu-logo {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tGp7ArptUy .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-tGp7ArptUy .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-tGp7ArptUy .navbar-toggler {
    display: none;
  }
}
.cid-tGp7ArptUy .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tGp7ArptUy .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tGp7ArptUy .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tGp7ArptUy .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tGp7ArptUy .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tGp7ArptUy .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tGp7ArptUy .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tGp7ArptUy .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tGp7ArptUy .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tGp7ArptUy .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-tGp7ArptUy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGp7ArptUy .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tGp7ArptUy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tGp7ArptUy .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tGp7ArptUy .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tGp7ArptUy .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tGp7ArptUy .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tGp7ArptUy .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tGp7ArptUy button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1.6rem 1rem;
}
.cid-tGp7ArptUy button.navbar-toggler:focus {
  outline: none;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #030556;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGp7ArptUy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGp7ArptUy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGp7ArptUy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGp7ArptUy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGp7ArptUy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGp7ArptUy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGp7ArptUy .collapsed .btn {
  display: flex;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tGp7ArptUy .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tGp7ArptUy .collapsed button.navbar-toggler {
  display: block;
}
.cid-tGp7ArptUy .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tGp7ArptUy .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tGp7ArptUy .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .collapsed .menu-bottom {
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-tGp7ArptUy .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-tGp7ArptUy .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-tGp7ArptUy .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing,
  .cid-tGp7ArptUy .navbar-collapse.show {
    display: block !important;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing .navbar-nav,
  .cid-tGp7ArptUy .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tGp7ArptUy .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing .navbar-buttons,
  .cid-tGp7ArptUy .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tGp7ArptUy .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tGp7ArptUy img {
    height: 3.8rem !important;
  }
  .cid-tGp7ArptUy .btn {
    display: flex;
  }
  .cid-tGp7ArptUy button.navbar-toggler {
    display: block;
  }
  .cid-tGp7ArptUy .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tGp7ArptUy .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tGp7ArptUy .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-tGp7ArptUy .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tGp7ArptUy .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tGp7ArptUy .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-tGp7ArptUy .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tGp7ArptUy .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tGp7ArptUy .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tGp7ArptUy .nav-link:focus {
  outline: none;
}
.cid-tGp7ArptUy .navbar-toggler {
  position: relative;
}
.cid-tGp7ArptUy .dropdown-item.active,
.cid-tGp7ArptUy .dropdown-item:active {
  color: initial;
}
.cid-tGp7ArptUy .widget-title,
.cid-tGp7ArptUy .widget-icon {
  color: #ffffff;
}
.cid-tGp7ArptUy .widget-text {
  color: #656565;
}
@media (max-width: 992px) {
  .cid-tGp7ArptUy .menu-logo {
    display: none;
  }
  .cid-tGp7ArptUy .navbar-collapse {
    padding: 0;
    padding-top: 1.5rem;
  }
  .cid-tGp7ArptUy .nav-item:before {
    content: none;
  }
  .cid-tGp7ArptUy .navbar {
    padding: 0;
  }
  .cid-tGp7ArptUy .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tGp7ArptUy button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-tGiJ3jlZ8K {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: #dae7ff;
}
.cid-tGiJ3jlZ8K .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGiJ3jlZ8K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tGiJ3jlZ8K .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tGiJ3jlZ8K .row {
  flex-direction: row-reverse;
}
.cid-tGiJ3jlZ8K img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tGiJ3jlZ8K .text-wrapper {
    padding: 2rem;
  }
}
.cid-tGiJ3jlZ8K .mbr-section-title {
  color: #030556;
}
.cid-tGiJ3jlZ8K .mbr-text {
  color: #555555;
  text-align: left;
}
.cid-tqgh7ZfLbB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqgh7ZfLbB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background13.jpg");
}
.cid-tqgh7ZfLbB .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tqgh7ZfLbB .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tqgh7ZfLbB .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqgh7ZfLbB .card-wrapper {
    padding: 4rem;
  }
}
.cid-tqgh7ZfLbB .mbr-text,
.cid-tqgh7ZfLbB .mbr-section-btn {
  text-align: center;
  color: #605f5f;
}
.cid-tqgh7ZfLbB .card-title {
  color: #030556;
  text-align: center;
}
.cid-tqgpj1cuh7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/vision-concept-2000x1333.jpg");
}
.cid-tqgpj1cuh7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqgpj1cuh7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqgpj1cuh7 .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-tqgpj1cuh7 .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-tqgpj1cuh7 .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-tqgpj1cuh7 .wrapper {
  padding: 30px 0;
}
.cid-tqgpj1cuh7 .mbr-section-title {
  color: #fafafa;
}
.cid-tqgpj1cuh7 .mbr-text,
.cid-tqgpj1cuh7 .mbr-section-btn {
  color: #ffffff;
}
.cid-tqgpj1cuh7 H3 {
  color: #030556;
}
.cid-tGj3Eo7fMB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5a80c;
}
.cid-tGj3Eo7fMB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGj3Eo7fMB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGj3Eo7fMB .mbr-section-title {
  color: #030556;
  text-align: center;
}
.cid-tGj3Eo7fMB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tGjqLWN1WT {
  background-color: #dae7ff;
}
.cid-tGjqLWN1WT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGjqLWN1WT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tGjqLWN1WT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tGjqLWN1WT img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tGjqLWN1WT .text-wrapper {
    padding: 2rem;
  }
}
.cid-tGjqLWN1WT .mbr-text {
  color: #555555;
  text-align: left;
}
.cid-tGjqLWN1WT .mbr-section-title {
  color: #030556;
}
.cid-tqgh7ZE0Jb {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #1b1464;
}
.cid-tqgh7ZE0Jb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqgh7ZE0Jb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqgh7ZE0Jb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tqgh7ZE0Jb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tqgh7ZE0Jb .row {
    text-align: center;
  }
  .cid-tqgh7ZE0Jb .social-row {
    justify-content: center;
  }
}
.cid-tqgh7ZE0Jb .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tqgh7ZE0Jb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqgh7ZE0Jb .list {
    margin-bottom: 0rem;
  }
}
.cid-tqgh7ZE0Jb .mbr-text {
  color: #bbbbbb;
}
.cid-tqgh7ZE0Jb .mbr-iconfont {
  color: black;
}
.cid-tGp7ArptUy .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tGp7ArptUy .navbar-fixed-top {
  padding-top: 0;
}
.cid-tGp7ArptUy .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tGp7ArptUy .collapse {
  justify-content: space-between !important;
}
.cid-tGp7ArptUy .icon-wrap {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.cid-tGp7ArptUy .mbr-iconfont {
  cursor: pointer;
}
.cid-tGp7ArptUy .nav-item {
  position: relative;
  letter-spacing: 2px;
  font-weight: 200;
}
.cid-tGp7ArptUy .nav-item:before {
  position: absolute;
  left: 0px;
  top: 50%;
  content: '';
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  opacity: 0.5;
  background: #030556;
  border-radius: 50%;
}
.cid-tGp7ArptUy .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tGp7ArptUy .location-title {
  margin: 0;
  color: #ffffff;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  transform-origin: top;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tGp7ArptUy .menu-content-top {
  background: #030556;
  max-width: 100%;
  display: none;
  transition: all 0.3s;
  jistify-content: space-between;
  -webkit-justify-content: left;
  justify-content: space-between;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
.cid-tGp7ArptUy .dropdown-item {
  padding: 0.4rem 1.8rem;
}
.cid-tGp7ArptUy .dropdown-item,
.cid-tGp7ArptUy .nav-link,
.cid-tGp7ArptUy .brand-name {
  font-style: normal;
}
.cid-tGp7ArptUy .dropdown-item:hover,
.cid-tGp7ArptUy .nav-link:hover,
.cid-tGp7ArptUy .brand-name:hover {
  color: #030556 !important;
}
.cid-tGp7ArptUy .dropdown-menu {
  background-color: #ffffff;
}
.cid-tGp7ArptUy .dropdown-item:active {
  background-color: #ffffff;
}
.cid-tGp7ArptUy .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-tGp7ArptUy .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .content-text {
  margin-bottom: 0;
}
.cid-tGp7ArptUy .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tGp7ArptUy .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #030556;
    -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-tGp7ArptUy .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tGp7ArptUy .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tGp7ArptUy .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tGp7ArptUy .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tGp7ArptUy .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tGp7ArptUy .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tGp7ArptUy .nav-dropdown .link {
  font-weight: 400;
}
.cid-tGp7ArptUy .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tGp7ArptUy .content-right-side {
  text-align: center;
}
.cid-tGp7ArptUy .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tGp7ArptUy .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tGp7ArptUy .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.2rem;
  color: #ffffff !important;
}
.cid-tGp7ArptUy .info-widget {
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.cid-tGp7ArptUy .widget-title:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: currentColor;
}
.cid-tGp7ArptUy .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tGp7ArptUy .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tGp7ArptUy .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tGp7ArptUy .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tGp7ArptUy .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-tGp7ArptUy .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tGp7ArptUy .navbar .menu-content-top {
    display: flex;
    height: 50px;
  }
  .cid-tGp7ArptUy .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tGp7ArptUy .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-tGp7ArptUy .navbar {
    display: block;
    padding: 0;
  }
  .cid-tGp7ArptUy .navbar .menu-logo {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tGp7ArptUy .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-tGp7ArptUy .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-tGp7ArptUy .navbar-toggler {
    display: none;
  }
}
.cid-tGp7ArptUy .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tGp7ArptUy .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tGp7ArptUy .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tGp7ArptUy .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tGp7ArptUy .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tGp7ArptUy .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tGp7ArptUy .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tGp7ArptUy .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tGp7ArptUy .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tGp7ArptUy .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-tGp7ArptUy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGp7ArptUy .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tGp7ArptUy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tGp7ArptUy .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tGp7ArptUy .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tGp7ArptUy .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tGp7ArptUy .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tGp7ArptUy .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tGp7ArptUy button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1.6rem 1rem;
}
.cid-tGp7ArptUy button.navbar-toggler:focus {
  outline: none;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #030556;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGp7ArptUy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGp7ArptUy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGp7ArptUy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGp7ArptUy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGp7ArptUy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGp7ArptUy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGp7ArptUy .collapsed .btn {
  display: flex;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tGp7ArptUy .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tGp7ArptUy .collapsed button.navbar-toggler {
  display: block;
}
.cid-tGp7ArptUy .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tGp7ArptUy .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tGp7ArptUy .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .collapsed .menu-bottom {
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-tGp7ArptUy .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-tGp7ArptUy .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-tGp7ArptUy .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing,
  .cid-tGp7ArptUy .navbar-collapse.show {
    display: block !important;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing .navbar-nav,
  .cid-tGp7ArptUy .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tGp7ArptUy .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing .navbar-buttons,
  .cid-tGp7ArptUy .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tGp7ArptUy .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tGp7ArptUy img {
    height: 3.8rem !important;
  }
  .cid-tGp7ArptUy .btn {
    display: flex;
  }
  .cid-tGp7ArptUy button.navbar-toggler {
    display: block;
  }
  .cid-tGp7ArptUy .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tGp7ArptUy .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tGp7ArptUy .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-tGp7ArptUy .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tGp7ArptUy .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tGp7ArptUy .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-tGp7ArptUy .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tGp7ArptUy .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tGp7ArptUy .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tGp7ArptUy .nav-link:focus {
  outline: none;
}
.cid-tGp7ArptUy .navbar-toggler {
  position: relative;
}
.cid-tGp7ArptUy .dropdown-item.active,
.cid-tGp7ArptUy .dropdown-item:active {
  color: initial;
}
.cid-tGp7ArptUy .widget-title,
.cid-tGp7ArptUy .widget-icon {
  color: #ffffff;
}
.cid-tGp7ArptUy .widget-text {
  color: #656565;
}
@media (max-width: 992px) {
  .cid-tGp7ArptUy .menu-logo {
    display: none;
  }
  .cid-tGp7ArptUy .navbar-collapse {
    padding: 0;
    padding-top: 1.5rem;
  }
  .cid-tGp7ArptUy .nav-item:before {
    content: none;
  }
  .cid-tGp7ArptUy .navbar {
    padding: 0;
  }
  .cid-tGp7ArptUy .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tGp7ArptUy button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-tpSTITCQP2 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/enviromental-policy-copy-2000x417.jpeg");
}
.cid-tpSTITCQP2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpSTITCQP2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpSQZjGS3U {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tpSQZjGS3U .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpSQZjGS3U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpSQZjGS3U .mbr-section-title {
  color: #1b1464;
}
.cid-tpSYE8zMxS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f0f5ff;
}
.cid-tpSYE8zMxS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpSYE8zMxS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpSYE8zMxS .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tpSYE8zMxS .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tpSYE8zMxS .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tpSYE8zMxS .card-wrapper {
    padding: 4rem;
  }
}
.cid-tpSYE8zMxS .mbr-text,
.cid-tpSYE8zMxS .mbr-section-btn {
  text-align: left;
  color: #605f5f;
}
.cid-tpSYE8zMxS .card-title {
  color: #605f5f;
  text-align: left;
}
.cid-tqgxFRuSYX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqgxFRuSYX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqgxFRuSYX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqgxFRuSYX .mbr-section-title {
  color: #1b1464;
}
.cid-tqgxGuuQJ7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f0f5ff;
}
.cid-tqgxGuuQJ7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqgxGuuQJ7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqgxGuuQJ7 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tqgxGuuQJ7 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tqgxGuuQJ7 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqgxGuuQJ7 .card-wrapper {
    padding: 4rem;
  }
}
.cid-tqgxGuuQJ7 .mbr-text,
.cid-tqgxGuuQJ7 .mbr-section-btn {
  text-align: left;
  color: #605f5f;
}
.cid-tqgxGuuQJ7 .card-title {
  color: #605f5f;
  text-align: left;
}
.cid-tqgxOBNhuo {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #f0f5ff;
}
.cid-tqgxOBNhuo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqgxOBNhuo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqgxOBNhuo .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tqgxOBNhuo .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tqgxOBNhuo .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqgxOBNhuo .card-wrapper {
    padding: 4rem;
  }
}
.cid-tqgxOBNhuo .mbr-text,
.cid-tqgxOBNhuo .mbr-section-btn {
  text-align: left;
  color: #605f5f;
}
.cid-tqgxOBNhuo .card-title {
  color: #605f5f;
  text-align: left;
}
.cid-tqgxHujxke {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tqgxHujxke img,
.cid-tqgxHujxke .item-img {
  width: 100%;
}
.cid-tqgxHujxke .item:focus,
.cid-tqgxHujxke span:focus {
  outline: none;
}
.cid-tqgxHujxke .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tqgxHujxke .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tqgxHujxke .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqgxHujxke .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tqgxHujxke .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tqgxHujxke .mbr-section-title {
  color: #232323;
}
.cid-tqgxHujxke .mbr-text,
.cid-tqgxHujxke .mbr-section-btn {
  text-align: left;
}
.cid-tqgxHujxke .item-title {
  text-align: left;
}
.cid-tqgxHujxke .item-subtitle {
  text-align: center;
}
.cid-tpSNdayJFg {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #1b1464;
}
.cid-tpSNdayJFg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpSNdayJFg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpSNdayJFg .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tpSNdayJFg .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tpSNdayJFg .row {
    text-align: center;
  }
  .cid-tpSNdayJFg .social-row {
    justify-content: center;
  }
}
.cid-tpSNdayJFg .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tpSNdayJFg .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tpSNdayJFg .list {
    margin-bottom: 0rem;
  }
}
.cid-tpSNdayJFg .mbr-text {
  color: #bbbbbb;
}
.cid-tpSNdayJFg .mbr-iconfont {
  color: black;
}
.cid-tGp7ArptUy .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tGp7ArptUy .navbar-fixed-top {
  padding-top: 0;
}
.cid-tGp7ArptUy .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tGp7ArptUy .collapse {
  justify-content: space-between !important;
}
.cid-tGp7ArptUy .icon-wrap {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.cid-tGp7ArptUy .mbr-iconfont {
  cursor: pointer;
}
.cid-tGp7ArptUy .nav-item {
  position: relative;
  letter-spacing: 2px;
  font-weight: 200;
}
.cid-tGp7ArptUy .nav-item:before {
  position: absolute;
  left: 0px;
  top: 50%;
  content: '';
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  opacity: 0.5;
  background: #030556;
  border-radius: 50%;
}
.cid-tGp7ArptUy .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tGp7ArptUy .location-title {
  margin: 0;
  color: #ffffff;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  transform-origin: top;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tGp7ArptUy .menu-content-top {
  background: #030556;
  max-width: 100%;
  display: none;
  transition: all 0.3s;
  jistify-content: space-between;
  -webkit-justify-content: left;
  justify-content: space-between;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
.cid-tGp7ArptUy .dropdown-item {
  padding: 0.4rem 1.8rem;
}
.cid-tGp7ArptUy .dropdown-item,
.cid-tGp7ArptUy .nav-link,
.cid-tGp7ArptUy .brand-name {
  font-style: normal;
}
.cid-tGp7ArptUy .dropdown-item:hover,
.cid-tGp7ArptUy .nav-link:hover,
.cid-tGp7ArptUy .brand-name:hover {
  color: #030556 !important;
}
.cid-tGp7ArptUy .dropdown-menu {
  background-color: #ffffff;
}
.cid-tGp7ArptUy .dropdown-item:active {
  background-color: #ffffff;
}
.cid-tGp7ArptUy .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-tGp7ArptUy .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .content-text {
  margin-bottom: 0;
}
.cid-tGp7ArptUy .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tGp7ArptUy .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #030556;
    -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-tGp7ArptUy .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tGp7ArptUy .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tGp7ArptUy .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tGp7ArptUy .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tGp7ArptUy .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tGp7ArptUy .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tGp7ArptUy .nav-dropdown .link {
  font-weight: 400;
}
.cid-tGp7ArptUy .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tGp7ArptUy .content-right-side {
  text-align: center;
}
.cid-tGp7ArptUy .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tGp7ArptUy .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tGp7ArptUy .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.2rem;
  color: #ffffff !important;
}
.cid-tGp7ArptUy .info-widget {
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.cid-tGp7ArptUy .widget-title:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: currentColor;
}
.cid-tGp7ArptUy .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tGp7ArptUy .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tGp7ArptUy .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tGp7ArptUy .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tGp7ArptUy .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-tGp7ArptUy .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tGp7ArptUy .navbar .menu-content-top {
    display: flex;
    height: 50px;
  }
  .cid-tGp7ArptUy .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tGp7ArptUy .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-tGp7ArptUy .navbar {
    display: block;
    padding: 0;
  }
  .cid-tGp7ArptUy .navbar .menu-logo {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tGp7ArptUy .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-tGp7ArptUy .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-tGp7ArptUy .navbar-toggler {
    display: none;
  }
}
.cid-tGp7ArptUy .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tGp7ArptUy .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tGp7ArptUy .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tGp7ArptUy .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tGp7ArptUy .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tGp7ArptUy .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tGp7ArptUy .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tGp7ArptUy .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tGp7ArptUy .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tGp7ArptUy .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-tGp7ArptUy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGp7ArptUy .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tGp7ArptUy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tGp7ArptUy .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tGp7ArptUy .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tGp7ArptUy .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tGp7ArptUy .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tGp7ArptUy .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tGp7ArptUy button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1.6rem 1rem;
}
.cid-tGp7ArptUy button.navbar-toggler:focus {
  outline: none;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #030556;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGp7ArptUy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGp7ArptUy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGp7ArptUy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGp7ArptUy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGp7ArptUy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGp7ArptUy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGp7ArptUy .collapsed .btn {
  display: flex;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tGp7ArptUy .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tGp7ArptUy .collapsed button.navbar-toggler {
  display: block;
}
.cid-tGp7ArptUy .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tGp7ArptUy .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tGp7ArptUy .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .collapsed .menu-bottom {
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-tGp7ArptUy .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-tGp7ArptUy .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-tGp7ArptUy .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing,
  .cid-tGp7ArptUy .navbar-collapse.show {
    display: block !important;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing .navbar-nav,
  .cid-tGp7ArptUy .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tGp7ArptUy .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing .navbar-buttons,
  .cid-tGp7ArptUy .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tGp7ArptUy .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tGp7ArptUy img {
    height: 3.8rem !important;
  }
  .cid-tGp7ArptUy .btn {
    display: flex;
  }
  .cid-tGp7ArptUy button.navbar-toggler {
    display: block;
  }
  .cid-tGp7ArptUy .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tGp7ArptUy .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tGp7ArptUy .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-tGp7ArptUy .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tGp7ArptUy .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tGp7ArptUy .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-tGp7ArptUy .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tGp7ArptUy .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tGp7ArptUy .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tGp7ArptUy .nav-link:focus {
  outline: none;
}
.cid-tGp7ArptUy .navbar-toggler {
  position: relative;
}
.cid-tGp7ArptUy .dropdown-item.active,
.cid-tGp7ArptUy .dropdown-item:active {
  color: initial;
}
.cid-tGp7ArptUy .widget-title,
.cid-tGp7ArptUy .widget-icon {
  color: #ffffff;
}
.cid-tGp7ArptUy .widget-text {
  color: #656565;
}
@media (max-width: 992px) {
  .cid-tGp7ArptUy .menu-logo {
    display: none;
  }
  .cid-tGp7ArptUy .navbar-collapse {
    padding: 0;
    padding-top: 1.5rem;
  }
  .cid-tGp7ArptUy .nav-item:before {
    content: none;
  }
  .cid-tGp7ArptUy .navbar {
    padding: 0;
  }
  .cid-tGp7ArptUy .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tGp7ArptUy button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-tGorFs7pKv {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tGorFs7pKv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGorFs7pKv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGorFs7pKv .mbr-section-title {
  color: #030556;
}
.cid-tGorFs7pKv .mbr-section-subtitle {
  color: #555555;
}
.cid-tGooXmE9bL {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: #f8f7ff;
}
.cid-tGooXmE9bL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGooXmE9bL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tGooXmE9bL .row {
    padding: 0 24px;
  }
}
.cid-tGooXmE9bL .items {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tGooXmE9bL .items {
    flex-direction: column;
  }
}
.cid-tGooXmE9bL .items img {
  max-width: 330px;
  min-width: 100px;
  height: 405px;
  object-fit: cover;
  border-radius: 20px;
  margin-right: -3rem;
}
@media (max-width: 768px) {
  .cid-tGooXmE9bL .items img {
    margin: 0 !important;
  }
}
.cid-tGooXmE9bL .items img:nth-child(2) {
  height: 330px;
  margin-top: -12rem;
}
.cid-tGooXmE9bL .items img:nth-child(3) {
  height: 290px;
}
.cid-tGooXmE9bL .items img:nth-child(4) {
  height: 440px;
  margin-left: -6rem;
}
.cid-tGooXmE9bL .items img:nth-child(5) {
  height: 430px;
  margin-top: -9rem;
}
.cid-tGo1uMtMnq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #40b0bf;
}
.cid-tGo1uMtMnq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGo1uMtMnq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGo1uMtMnq .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-tGo1uMtMnq .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-tGo1uMtMnq .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-tGo1uMtMnq .wrapper {
  padding: 30px 0;
}
.cid-tGo1uMtMnq .mbr-section-title {
  color: #fafafa;
}
.cid-tGo1uMtMnq .mbr-text,
.cid-tGo1uMtMnq .mbr-section-btn {
  color: #ffffff;
}
.cid-tGo1uMtMnq H3 {
  color: #030556;
}
.cid-tGo1uNu2Qd {
  background-color: #dae7ff;
}
.cid-tGo1uNu2Qd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGo1uNu2Qd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tGo1uNu2Qd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tGo1uNu2Qd img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tGo1uNu2Qd .text-wrapper {
    padding: 2rem;
  }
}
.cid-tGo1uNu2Qd .mbr-text {
  color: #555555;
  text-align: left;
}
.cid-tGo1uNu2Qd .mbr-section-title {
  color: #030556;
}
.cid-tGo1uO4OoZ {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #1b1464;
}
.cid-tGo1uO4OoZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGo1uO4OoZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGo1uO4OoZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGo1uO4OoZ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tGo1uO4OoZ .row {
    text-align: center;
  }
  .cid-tGo1uO4OoZ .social-row {
    justify-content: center;
  }
}
.cid-tGo1uO4OoZ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tGo1uO4OoZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tGo1uO4OoZ .list {
    margin-bottom: 0rem;
  }
}
.cid-tGo1uO4OoZ .mbr-text {
  color: #bbbbbb;
}
.cid-tGo1uO4OoZ .mbr-iconfont {
  color: black;
}
.cid-tGo1uN0xPf {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tGo1uN0xPf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGo1uN0xPf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGo1uN0xPf .mbr-section-title {
  color: #030556;
  text-align: center;
}
.cid-tGo1uN0xPf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tGp7ArptUy .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tGp7ArptUy .navbar-fixed-top {
  padding-top: 0;
}
.cid-tGp7ArptUy .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tGp7ArptUy .collapse {
  justify-content: space-between !important;
}
.cid-tGp7ArptUy .icon-wrap {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.cid-tGp7ArptUy .mbr-iconfont {
  cursor: pointer;
}
.cid-tGp7ArptUy .nav-item {
  position: relative;
  letter-spacing: 2px;
  font-weight: 200;
}
.cid-tGp7ArptUy .nav-item:before {
  position: absolute;
  left: 0px;
  top: 50%;
  content: '';
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  opacity: 0.5;
  background: #030556;
  border-radius: 50%;
}
.cid-tGp7ArptUy .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tGp7ArptUy .location-title {
  margin: 0;
  color: #ffffff;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  transform-origin: top;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tGp7ArptUy .menu-content-top {
  background: #030556;
  max-width: 100%;
  display: none;
  transition: all 0.3s;
  jistify-content: space-between;
  -webkit-justify-content: left;
  justify-content: space-between;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
.cid-tGp7ArptUy .dropdown-item {
  padding: 0.4rem 1.8rem;
}
.cid-tGp7ArptUy .dropdown-item,
.cid-tGp7ArptUy .nav-link,
.cid-tGp7ArptUy .brand-name {
  font-style: normal;
}
.cid-tGp7ArptUy .dropdown-item:hover,
.cid-tGp7ArptUy .nav-link:hover,
.cid-tGp7ArptUy .brand-name:hover {
  color: #030556 !important;
}
.cid-tGp7ArptUy .dropdown-menu {
  background-color: #ffffff;
}
.cid-tGp7ArptUy .dropdown-item:active {
  background-color: #ffffff;
}
.cid-tGp7ArptUy .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-tGp7ArptUy .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .content-text {
  margin-bottom: 0;
}
.cid-tGp7ArptUy .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tGp7ArptUy .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #030556;
    -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-tGp7ArptUy .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tGp7ArptUy .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tGp7ArptUy .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tGp7ArptUy .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tGp7ArptUy .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tGp7ArptUy .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tGp7ArptUy .nav-dropdown .link {
  font-weight: 400;
}
.cid-tGp7ArptUy .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tGp7ArptUy .content-right-side {
  text-align: center;
}
.cid-tGp7ArptUy .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tGp7ArptUy .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tGp7ArptUy .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.2rem;
  color: #ffffff !important;
}
.cid-tGp7ArptUy .info-widget {
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.cid-tGp7ArptUy .widget-title:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: currentColor;
}
.cid-tGp7ArptUy .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tGp7ArptUy .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tGp7ArptUy .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tGp7ArptUy .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tGp7ArptUy .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-tGp7ArptUy .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tGp7ArptUy .navbar .menu-content-top {
    display: flex;
    height: 50px;
  }
  .cid-tGp7ArptUy .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tGp7ArptUy .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-tGp7ArptUy .navbar {
    display: block;
    padding: 0;
  }
  .cid-tGp7ArptUy .navbar .menu-logo {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tGp7ArptUy .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-tGp7ArptUy .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-tGp7ArptUy .navbar-toggler {
    display: none;
  }
}
.cid-tGp7ArptUy .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tGp7ArptUy .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tGp7ArptUy .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tGp7ArptUy .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tGp7ArptUy .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tGp7ArptUy .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tGp7ArptUy .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tGp7ArptUy .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tGp7ArptUy .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tGp7ArptUy .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-tGp7ArptUy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGp7ArptUy .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tGp7ArptUy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tGp7ArptUy .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tGp7ArptUy .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tGp7ArptUy .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tGp7ArptUy .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tGp7ArptUy .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tGp7ArptUy button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1.6rem 1rem;
}
.cid-tGp7ArptUy button.navbar-toggler:focus {
  outline: none;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #030556;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGp7ArptUy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGp7ArptUy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGp7ArptUy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGp7ArptUy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGp7ArptUy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGp7ArptUy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGp7ArptUy .collapsed .btn {
  display: flex;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tGp7ArptUy .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tGp7ArptUy .collapsed button.navbar-toggler {
  display: block;
}
.cid-tGp7ArptUy .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tGp7ArptUy .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tGp7ArptUy .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .collapsed .menu-bottom {
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-tGp7ArptUy .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-tGp7ArptUy .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-tGp7ArptUy .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing,
  .cid-tGp7ArptUy .navbar-collapse.show {
    display: block !important;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing .navbar-nav,
  .cid-tGp7ArptUy .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tGp7ArptUy .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing .navbar-buttons,
  .cid-tGp7ArptUy .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tGp7ArptUy .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tGp7ArptUy img {
    height: 3.8rem !important;
  }
  .cid-tGp7ArptUy .btn {
    display: flex;
  }
  .cid-tGp7ArptUy button.navbar-toggler {
    display: block;
  }
  .cid-tGp7ArptUy .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tGp7ArptUy .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tGp7ArptUy .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-tGp7ArptUy .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tGp7ArptUy .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tGp7ArptUy .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-tGp7ArptUy .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tGp7ArptUy .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tGp7ArptUy .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tGp7ArptUy .nav-link:focus {
  outline: none;
}
.cid-tGp7ArptUy .navbar-toggler {
  position: relative;
}
.cid-tGp7ArptUy .dropdown-item.active,
.cid-tGp7ArptUy .dropdown-item:active {
  color: initial;
}
.cid-tGp7ArptUy .widget-title,
.cid-tGp7ArptUy .widget-icon {
  color: #ffffff;
}
.cid-tGp7ArptUy .widget-text {
  color: #656565;
}
@media (max-width: 992px) {
  .cid-tGp7ArptUy .menu-logo {
    display: none;
  }
  .cid-tGp7ArptUy .navbar-collapse {
    padding: 0;
    padding-top: 1.5rem;
  }
  .cid-tGp7ArptUy .nav-item:before {
    content: none;
  }
  .cid-tGp7ArptUy .navbar {
    padding: 0;
  }
  .cid-tGp7ArptUy .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tGp7ArptUy button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-tGp7ArptUy .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tGp7ArptUy .navbar-fixed-top {
  padding-top: 0;
}
.cid-tGp7ArptUy .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tGp7ArptUy .collapse {
  justify-content: space-between !important;
}
.cid-tGp7ArptUy .icon-wrap {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.cid-tGp7ArptUy .mbr-iconfont {
  cursor: pointer;
}
.cid-tGp7ArptUy .nav-item {
  position: relative;
  letter-spacing: 2px;
  font-weight: 200;
}
.cid-tGp7ArptUy .nav-item:before {
  position: absolute;
  left: 0px;
  top: 50%;
  content: '';
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  opacity: 0.5;
  background: #030556;
  border-radius: 50%;
}
.cid-tGp7ArptUy .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tGp7ArptUy .location-title {
  margin: 0;
  color: #ffffff;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  transform-origin: top;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tGp7ArptUy .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tGp7ArptUy .menu-content-top {
  background: #030556;
  max-width: 100%;
  display: none;
  transition: all 0.3s;
  jistify-content: space-between;
  -webkit-justify-content: left;
  justify-content: space-between;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
.cid-tGp7ArptUy .dropdown-item {
  padding: 0.4rem 1.8rem;
}
.cid-tGp7ArptUy .dropdown-item,
.cid-tGp7ArptUy .nav-link,
.cid-tGp7ArptUy .brand-name {
  font-style: normal;
}
.cid-tGp7ArptUy .dropdown-item:hover,
.cid-tGp7ArptUy .nav-link:hover,
.cid-tGp7ArptUy .brand-name:hover {
  color: #030556 !important;
}
.cid-tGp7ArptUy .dropdown-menu {
  background-color: #ffffff;
}
.cid-tGp7ArptUy .dropdown-item:active {
  background-color: #ffffff;
}
.cid-tGp7ArptUy .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-tGp7ArptUy .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .content-text {
  margin-bottom: 0;
}
.cid-tGp7ArptUy .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tGp7ArptUy .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #030556;
    -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-tGp7ArptUy .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tGp7ArptUy .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tGp7ArptUy .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tGp7ArptUy .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tGp7ArptUy .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tGp7ArptUy .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tGp7ArptUy .nav-dropdown .link {
  font-weight: 400;
}
.cid-tGp7ArptUy .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tGp7ArptUy .content-right-side {
  text-align: center;
}
.cid-tGp7ArptUy .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tGp7ArptUy .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tGp7ArptUy .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.2rem;
  color: #ffffff !important;
}
.cid-tGp7ArptUy .info-widget {
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.cid-tGp7ArptUy .widget-title:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: currentColor;
}
.cid-tGp7ArptUy .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tGp7ArptUy .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tGp7ArptUy .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tGp7ArptUy .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tGp7ArptUy .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-tGp7ArptUy .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tGp7ArptUy .navbar .menu-content-top {
    display: flex;
    height: 50px;
  }
  .cid-tGp7ArptUy .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tGp7ArptUy .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-tGp7ArptUy .navbar {
    display: block;
    padding: 0;
  }
  .cid-tGp7ArptUy .navbar .menu-logo {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tGp7ArptUy .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-tGp7ArptUy .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-tGp7ArptUy .navbar-toggler {
    display: none;
  }
}
.cid-tGp7ArptUy .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tGp7ArptUy .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tGp7ArptUy .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tGp7ArptUy .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tGp7ArptUy .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tGp7ArptUy .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tGp7ArptUy .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tGp7ArptUy .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tGp7ArptUy .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tGp7ArptUy .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-tGp7ArptUy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGp7ArptUy .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tGp7ArptUy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tGp7ArptUy .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tGp7ArptUy .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tGp7ArptUy .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tGp7ArptUy .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tGp7ArptUy .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tGp7ArptUy button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1.6rem 1rem;
}
.cid-tGp7ArptUy button.navbar-toggler:focus {
  outline: none;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #030556;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGp7ArptUy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGp7ArptUy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGp7ArptUy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGp7ArptUy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGp7ArptUy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGp7ArptUy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGp7ArptUy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGp7ArptUy .collapsed .btn {
  display: flex;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tGp7ArptUy .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tGp7ArptUy .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tGp7ArptUy .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tGp7ArptUy .collapsed button.navbar-toggler {
  display: block;
}
.cid-tGp7ArptUy .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tGp7ArptUy .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tGp7ArptUy .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tGp7ArptUy .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-tGp7ArptUy .collapsed .menu-bottom {
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-tGp7ArptUy .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-tGp7ArptUy .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-tGp7ArptUy .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing,
  .cid-tGp7ArptUy .navbar-collapse.show {
    display: block !important;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing .navbar-nav,
  .cid-tGp7ArptUy .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tGp7ArptUy .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing .navbar-buttons,
  .cid-tGp7ArptUy .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-tGp7ArptUy .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tGp7ArptUy .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tGp7ArptUy img {
    height: 3.8rem !important;
  }
  .cid-tGp7ArptUy .btn {
    display: flex;
  }
  .cid-tGp7ArptUy button.navbar-toggler {
    display: block;
  }
  .cid-tGp7ArptUy .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tGp7ArptUy .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tGp7ArptUy .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-tGp7ArptUy .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tGp7ArptUy .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tGp7ArptUy .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-tGp7ArptUy .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tGp7ArptUy .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tGp7ArptUy .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tGp7ArptUy .nav-link:focus {
  outline: none;
}
.cid-tGp7ArptUy .navbar-toggler {
  position: relative;
}
.cid-tGp7ArptUy .dropdown-item.active,
.cid-tGp7ArptUy .dropdown-item:active {
  color: initial;
}
.cid-tGp7ArptUy .widget-title,
.cid-tGp7ArptUy .widget-icon {
  color: #ffffff;
}
.cid-tGp7ArptUy .widget-text {
  color: #656565;
}
@media (max-width: 992px) {
  .cid-tGp7ArptUy .menu-logo {
    display: none;
  }
  .cid-tGp7ArptUy .navbar-collapse {
    padding: 0;
    padding-top: 1.5rem;
  }
  .cid-tGp7ArptUy .nav-item:before {
    content: none;
  }
  .cid-tGp7ArptUy .navbar {
    padding: 0;
  }
  .cid-tGp7ArptUy .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tGp7ArptUy button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-tpL6Xb3rUD {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-tpL6Xb3rUD .carousel {
  width: 100%;
}
.cid-tpL6Xb3rUD .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-tpL6Xb3rUD .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-tpL6Xb3rUD .carousel-caption {
  bottom: 40px;
}
.cid-tpL6Xb3rUD .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tpL6Xb3rUD .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tpL6Xb3rUD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tpL6Xb3rUD .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tpL6Xb3rUD .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tpL6Xb3rUD .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tpL6Xb3rUD .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tpL6Xb3rUD .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tpL6Xb3rUD .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tpL6Xb3rUD .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tpL6Xb3rUD .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tpL6Xb3rUD .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tpL6Xb3rUD .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tpL6Xb3rUD .carousel-indicators li.active,
.cid-tpL6Xb3rUD .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tpL6Xb3rUD .carousel-indicators li::after,
.cid-tpL6Xb3rUD .carousel-indicators li::before {
  content: none;
}
.cid-tpL6Xb3rUD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tpL6Xb3rUD .carousel-indicators {
    display: none !important;
  }
}
.cid-tpNuEiA3Jt {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tpNuEiA3Jt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpNuEiA3Jt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpNuEiA3Jt .mbr-section-title {
  color: #1b1464;
}
.cid-tqmB03tUWf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tqmB03tUWf .main-row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tqmB03tUWf .col-title {
    margin-bottom: 60px;
  }
}
.cid-tqmB03tUWf .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 40px;
}
.cid-tqmB03tUWf .mbr-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: #aafc75;
  box-shadow: 0 0 0 10px rgba(170, 252, 117, 0.2);
}
.cid-tqmB03tUWf .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 0;
}
.cid-tqmB03tUWf .card {
  transition: all 0.3s;
  height: fit-content;
  margin-bottom: 2rem;
  border-radius: 0;
}
@media (min-width: 768px) {
  .cid-tqmB03tUWf .card:not(:nth-child(3n+1)) {
    border-left: 1px solid #bbbbbb;
  }
}
.cid-tqmB03tUWf .card img {
  width: auto;
  max-width: 100%;
  height: 90px;
  object-fit: cover;
  margin: 0  auto;
  transition: .5s all;
  will-change: transform;
}
.cid-tqmB03tUWf .card img:hover {
  opacity: 0.65;
  transform: scale(0.9);
}
.cid-tqmniTKkcI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #dae7ff;
}
.cid-tqmniTKkcI .video-wrapper iframe {
  width: 100%;
}
.cid-tqmniTKkcI h2,
.cid-tqmniTKkcI h4,
.cid-tqmniTKkcI p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tqmniTKkcI .col-md-6 {
    width: 100%;
  }
}
.cid-tqmniTKkcI .mbr-section-head {
  margin-bottom: 2rem;
}
@media (min-width: 993px) {
  .cid-tqmniTKkcI .mbr-section-head {
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .cid-tqmniTKkcI .mbr-section-head {
    text-align: center;
  }
}
.cid-tqmniTKkcI .mbr-section-title {
  color: #030556;
  margin-bottom: 1rem;
}
.cid-tqmniTKkcI .mbr-section-subtitle {
  color: #6b6b6b;
  margin-bottom: 6px;
}
.cid-tqmniTKkcI .mbr-text {
  color: #353535;
}
.cid-tqlLAVRTqG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #030556;
}
.cid-tqlLAVRTqG .row {
  border-top: 1px solid #FFFFFF;
  margin-top: -1px;
}
@media (min-width: 768px) {
  .cid-tqlLAVRTqG .row {
    border-bottom: 1px solid #FFFFFF;
  }
}
.cid-tqlLAVRTqG .title-text-container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 60px;
}
@media (max-width: 575px) {
  .cid-tqlLAVRTqG .title-text-container {
    padding: 0 24px;
  }
}
.cid-tqlLAVRTqG .title-content-container {
  padding: 0 0 80px;
  margin-left: -12px;
  margin-right: -12px;
}
.cid-tqlLAVRTqG .mbr-section-title-container,
.cid-tqlLAVRTqG .title_text {
  margin-bottom: 16px;
}
.cid-tqlLAVRTqG .card_title {
  color: #FFFFFF;
}
.cid-tqlLAVRTqG .card {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  margin-top: -1px;
  padding: 64px 0;
}
@media (max-width: 991px) {
  .cid-tqlLAVRTqG .card {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tqlLAVRTqG .card {
    border-bottom: 1px solid #FFFFFF;
  }
}
@media (max-width: 575px) {
  .cid-tqlLAVRTqG .card {
    padding: 24px;
  }
}
@media (min-width: 768px) {
  .cid-tqlLAVRTqG .card_left {
    border-right: 1px solid #ffffff;
  }
}
.cid-tqlLAVRTqG .card-content {
  max-width: 400px;
}
.cid-tqlLAVRTqG .card__title-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tqlLAVRTqG .card__title-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .cid-tqlLAVRTqG .card__title-container {
    flex-wrap: nowrap;
  }
}
.cid-tqlLAVRTqG .number-container {
  font-size: 6.8rem;
  line-height: 110px;
  margin-right: 16px;
  word-break: normal;
}
@media (max-width: 991px) {
  .cid-tqlLAVRTqG .number-container {
    width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  .cid-tqlLAVRTqG .number-container {
    font-size: 4rem;
    width: auto;
    margin-right: 16px;
    line-height: normal;
  }
}
@media (min-width: 768px) {
  .cid-tqlLAVRTqG .wrapper {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.cid-tqlLAVRTqG .mbr-section-title {
  color: #ffffff;
}
.cid-tqlLAVRTqG .title_text {
  color: #ffffff;
}
.cid-tqlLAVRTqG .card_text {
  color: #ffffff;
}
.cid-tqlSMc9nym {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #dae7ff;
}
.cid-tqlSMc9nym .mbr-text {
  color: #767676;
  text-align: center;
}
.cid-tqlSMc9nym .card-img span {
  font-size: 2rem;
  color: #200960;
}
.cid-tqlSMc9nym .card {
  margin-bottom: 1rem;
}
.cid-tqlSMc9nym .card-title,
.cid-tqlSMc9nym .card-img {
  text-align: center;
  color: #22a5e5;
}
.cid-tqlSMc9nym .row {
  justify-content: center;
}
.cid-tqlSMc9nym .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqlSMc9nym .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqlSMc9nym .mbr-text,
.cid-tqlSMc9nym .mbr-section-btn {
  color: #353535;
}
.cid-tGjw21qYJJ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dae7ff;
}
.cid-tGjw21qYJJ .mbr-text,
.cid-tGjw21qYJJ blockquote {
  color: #767676;
}
.cid-tGjw21qYJJ .mbr-text {
  text-align: center;
  color: #555555;
}
.cid-tqmFaAx3od {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f5a80c;
}
.cid-tqmFaAx3od .mbr-section-title {
  margin: 0;
  padding: 15px 0;
  color: #030556;
  text-align: right;
}
.cid-tGjT95l56V {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tGjT95l56V .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGjT95l56V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGjT95l56V .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tGjT95l56V .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-tGjT95l56V .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tGjT95l56V .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-tGjT95l56V .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-tGjT95l56V .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-tGjT95l56V .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-tGjT95l56V .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-tGjT95l56V .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-tGjT95l56V .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-tGjT95l56V .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-tGjT95l56V .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-tGjT95l56V .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-tGjT95l56V .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-tGjT95l56V [class^="socicon-"]:before,
.cid-tGjT95l56V [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tpIEzhHYds {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #1b1464;
}
.cid-tpIEzhHYds .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpIEzhHYds .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpIEzhHYds .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tpIEzhHYds .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tpIEzhHYds .row {
    text-align: center;
  }
  .cid-tpIEzhHYds .social-row {
    justify-content: center;
  }
}
.cid-tpIEzhHYds .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tpIEzhHYds .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tpIEzhHYds .list {
    margin-bottom: 0rem;
  }
}
.cid-tpIEzhHYds .mbr-text {
  color: #bbbbbb;
}
.cid-tpIEzhHYds .mbr-iconfont {
  color: black;
}
