.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Questrial', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'Questrial', sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-4 {
  font-family: 'Mulish', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Mulish', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Mulish', 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: 2.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .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: #004a77 !important;
}
.bg-success {
  background-color: #85bc1d !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #f55f1d !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #004a77 !important;
  border-color: #004a77 !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: #001420 !important;
  border-color: #001420 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #001420 !important;
  border-color: #001420 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffc000 !important;
  border-color: #ffc000 !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: #a87f00 !important;
  border-color: #a87f00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a87f00 !important;
  border-color: #a87f00 !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: #85bc1d !important;
  border-color: #85bc1d !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: #507111 !important;
  border-color: #507111 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #507111 !important;
  border-color: #507111 !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: #f55f1d !important;
  border-color: #f55f1d !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: #b33c08 !important;
  border-color: #b33c08 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b33c08 !important;
  border-color: #b33c08 !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: #004a77;
  color: #004a77;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #001420 !important;
  background-color: transparent!important;
  border-color: #001420 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #004a77 !important;
  border-color: #004a77 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ffc000;
  color: #ffc000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a87f00 !important;
  background-color: transparent!important;
  border-color: #a87f00 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ffc000 !important;
  border-color: #ffc000 !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: #85bc1d;
  color: #85bc1d;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #507111 !important;
  background-color: transparent!important;
  border-color: #507111 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #85bc1d !important;
  border-color: #85bc1d !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: #f55f1d;
  color: #f55f1d;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b33c08 !important;
  background-color: transparent!important;
  border-color: #b33c08 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #f55f1d !important;
  border-color: #f55f1d !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: #004a77 !important;
}
.text-secondary {
  color: #ffc000 !important;
}
.text-success {
  color: #85bc1d !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #f55f1d !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000b11 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #997300 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #46640f !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: #a53707 !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: #004a77;
}
.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: #f55f1d;
}
.mbr-gallery-filter li.active .btn {
  background-color: #004a77;
  border-color: #004a77;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #004a77;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #0099f7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #bfe970;
}
.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: #fee9e0;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Mulish', 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: #004a77 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Mulish', 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: #004a77;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #004a77;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #004a77;
}
.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: #004a77;
  border-bottom-color: #004a77;
}
.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: #004a77 !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: #ffc000 !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='%23004a77' %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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-v7B9GOBaRD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v7B9GOBaRD nav.navbar {
  position: fixed;
}
.cid-v7B9GOBaRD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7B9GOBaRD .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7B9GOBaRD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  font-weight: 700;
}
.cid-v7B9GOBaRD .dropdown-item:hover,
.cid-v7B9GOBaRD .dropdown-item:focus {
  background: #004a77 !important;
  color: white !important;
}
.cid-v7B9GOBaRD .dropdown-item:hover span {
  color: white;
}
.cid-v7B9GOBaRD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7B9GOBaRD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7B9GOBaRD .nav-dropdown .link {
  padding: 26px 24px!important;
  margin: 0!important;
  font-weight: 700;
}
.cid-v7B9GOBaRD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7B9GOBaRD .nav-link {
  position: relative;
}
.cid-v7B9GOBaRD .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v7B9GOBaRD .container {
    flex-wrap: wrap;
  }
}
.cid-v7B9GOBaRD .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v7B9GOBaRD .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v7B9GOBaRD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v7B9GOBaRD .navbar-nav {
  text-transform: uppercase;
}
.cid-v7B9GOBaRD .dropdown-menu,
.cid-v7B9GOBaRD .navbar.opened {
  background: #ffffff !important;
}
.cid-v7B9GOBaRD .nav-item:focus,
.cid-v7B9GOBaRD .nav-link:focus {
  outline: none;
}
.cid-v7B9GOBaRD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7B9GOBaRD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7B9GOBaRD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7B9GOBaRD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7B9GOBaRD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7B9GOBaRD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7B9GOBaRD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v7B9GOBaRD .navbar.opened {
  transition: all 0.3s;
}
.cid-v7B9GOBaRD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7B9GOBaRD .navbar .navbar-logo img {
  width: auto;
}
.cid-v7B9GOBaRD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7B9GOBaRD .navbar.collapsed {
  justify-content: center;
}
.cid-v7B9GOBaRD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7B9GOBaRD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7B9GOBaRD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-v7B9GOBaRD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7B9GOBaRD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7B9GOBaRD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v7B9GOBaRD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7B9GOBaRD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7B9GOBaRD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7B9GOBaRD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7B9GOBaRD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7B9GOBaRD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7B9GOBaRD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7B9GOBaRD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v7B9GOBaRD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7B9GOBaRD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7B9GOBaRD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7B9GOBaRD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7B9GOBaRD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7B9GOBaRD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v7B9GOBaRD .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v7B9GOBaRD .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7B9GOBaRD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7B9GOBaRD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7B9GOBaRD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v7B9GOBaRD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7B9GOBaRD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7B9GOBaRD .dropdown-item.active,
.cid-v7B9GOBaRD .dropdown-item:active {
  background-color: transparent;
}
.cid-v7B9GOBaRD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7B9GOBaRD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7B9GOBaRD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7B9GOBaRD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v7B9GOBaRD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7B9GOBaRD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7B9GOBaRD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7B9GOBaRD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7B9GOBaRD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v7B9GOBaRD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v7B9GOBaRD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7B9GOBaRD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7B9GOBaRD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7B9GOBaRD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7B9GOBaRD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7B9GOBaRD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7B9GOBaRD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7B9GOBaRD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7B9GOBaRD .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-v7B9GOBaRD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7B9GOBaRD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v7B9GOBaRD .navbar {
    height: 70px;
  }
  .cid-v7B9GOBaRD .navbar.opened {
    height: auto;
  }
  .cid-v7B9GOBaRD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7B9GOBaRD .menu-content-top {
  background: #004a77;
  max-width: 100%;
  justify-content: flex-end;
  padding: 0 1rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-v7B9GOBaRD .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7B9GOBaRD .right-wrap {
  justify-content: flex-end;
  max-height: 37px;
}
.cid-v7B9GOBaRD .info-widget:first-child {
  margin-left: 0;
}
.cid-v7B9GOBaRD .info-widget {
  margin-left: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v7B9GOBaRD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7B9GOBaRD .widget-icon {
  color: #e9e9e9;
  display: inline-block;
  padding-right: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
}
.cid-v7B9GOBaRD .info-widget .display-4 {
  font-size: 0.8rem;
  line-height: 1;
}
.cid-v7B9GOBaRD P {
  color: #ffffff;
}
.cid-v7B9GOBaRD .widget-content p {
  margin-bottom: 0;
}
.cid-v7B9GOBaRD .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v7B9GOBaRD .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  color: #004a77;
  background-color: #ffc000  ;
  transition: all 0.3s ease-in-out;
}
.cid-v7B9GOBaRD .nav-item .nav-link:hover,
.cid-v7B9GOBaRD .nav-item .nav-link:focus {
  background-color: transparent;
  color: #004a77!important;
}
.cid-v7B9GOBaRD .nav-item .nav-link:hover::after,
.cid-v7B9GOBaRD .nav-item .nav-link:focus::after {
  color: #004a77 !important;
}
.cid-v7B9GOBaRD .nav-item .nav-link:hover::before,
.cid-v7B9GOBaRD .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-v7B9GOBaRD .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v7B9GOBaRD .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v7B9GOBaRD .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
  font-weight: 700;
}
.cid-v7B9GOBaRD .navbar .navbar-collapse {
  justify-content: flex-start;
  margin-left: 1.4rem;
}
.cid-v7B9GOBaRD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff!important;
  width: 100%;
}
.cid-v7B9GOBaRD .dropdown-item:first-child {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.cid-v7B9GOBaRD .dropdown-item:last-child {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.cid-v7B9GOBaRD .navbar .dropdown-item {
  padding-left: 22px;
  padding-right: 22px;
  font-weight: 700;
}
.cid-v7B9GOBaRD .dropdown-item:hover,
.cid-v7B9GOBaRD .dropdown-item:focus {
  background: #eaeaea!important;
  color: #004a77!important;
}
.cid-v7B9GOBaRD .btn-secondary:hover,
.cid-v7B9GOBaRD .btn-secondary:focus {
  color: #232323!important;
}
.cid-v7B9GOBaRD .btn-secondary,
.cid-v7B9GOBaRD .btn-secondary:active {
  color: #232323!important;
}
.cid-v7B9GOBaRD .info-widget a.text-primary,
.cid-v7B9GOBaRD .info-widget a.text-primary:hover,
.cid-v7B9GOBaRD .info-widget a.text-primary:focus,
.cid-v7B9GOBaRD .info-widget a.text-primary.active {
  color: #fff !important;
}
@media (max-width: 768px) {
  .cid-v7B9GOBaRD .menu-content-top {
    display: none;
  }
  .cid-v7B9GOBaRD .container-fluid {
    border-top: 40px solid #004a77;
  }
}
.cid-uQV8dWp10e {
  padding-top: 10rem;
  padding-bottom: 10rem;
  min-height: 46vh!important;
  background-image: url("../../../assets/images/pic4-1.jpg");
}
@media (min-width: 1500px) {
  .cid-uQV8dWp10e .container {
    max-width: 1400px;
  }
}
.cid-uQV8dWp10e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQV8dWp10e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQV8dWp10e .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
@media (max-width: 768px) {
  .cid-uQV8dWp10e {
    padding-top: 2rem;
    padding-bottom: 0;
    min-height: 23vh!important;
  }
}
.cid-v7BbEszac3 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7BbEszac3 img,
.cid-v7BbEszac3 .item-img {
  height: 100%;
  height: 4200px;
  height: 400px;
  object-fit: cover;
}
.cid-v7BbEszac3 .item:focus,
.cid-v7BbEszac3 span:focus {
  outline: none;
}
.cid-v7BbEszac3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v7BbEszac3 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v7BbEszac3 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
}
@media (max-width: 991px) {
  .cid-v7BbEszac3 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v7BbEszac3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v7BbEszac3 .mbr-section-title {
  color: #232323;
}
.cid-v7BbEszac3 .mbr-text,
.cid-v7BbEszac3 .mbr-section-btn {
  text-align: left;
}
.cid-v7BbEszac3 .item-title {
  text-align: left;
  color: #9d9b9b;
}
.cid-v7BbEszac3 .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-v7BbEszac3 h6 a.text-title:link,
.cid-v7BbEszac3 h6 a.text-title:visited,
.cid-v7BbEszac3 h6 a.text-title:hover {
  background-image: none!important;
  color: #232323!important;
  font-weight: bold!important;
  text-decoration: none!important;
}
.cid-v7BbEszac3 a.text-primary {
  font-weight: bold!important;
}
.cid-u8XOXzueqG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u8XOXzueqG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8XOXzueqG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8XOXzueqG .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u8XOXzueqG .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u8XOXzueqG .row {
    text-align: center;
  }
  .cid-u8XOXzueqG .row > div {
    margin: auto;
  }
  .cid-u8XOXzueqG .social-row {
    justify-content: center;
  }
}
.cid-u8XOXzueqG .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u8XOXzueqG .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-u8XOXzueqG .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u8XOXzueqG .list {
    margin-bottom: 0rem;
  }
}
.cid-u8XOXzueqG .mbr-text {
  color: #bbbbbb;
}
.cid-u8XOXzueqG .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;
}
.cid-u8XOXzueqG .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u8XOXzueqG div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u8XOXzueqG .copyright {
  font-size: 0.9rem;
  text-align: left;
}
.cid-u8XOXzueqG a.text-primary {
  color: #bbbbbb!important;
}
.cid-u8XOXzueqG a.text-primary:link,
.cid-u8XOXzueqG a.text-primary:hover,
.cid-u8XOXzueqG a.text-primary:active {
  color: #bbbbbb!important;
}
.cid-u8XOXzueqG h5 {
  border-bottom: 1px solid #bbbbbb;
}
.cid-u8XOXzueqG .media-wrap img {
  width: 70%;
}
.cid-u8XOXzueqG .bg-linkedin {
  background: #0077b5;
  color: #ffffff;
}
.cid-u8XOXzueqG .bg-linkedin:hover {
  background: #005582;
}
.cid-u8XOXzueqG .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-u8XOXzueqG .bg-youtube:hover {
  background: #cc0000;
}
.cid-u8XOXzueqG .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u8XOXzueqG .bg-facebook:hover {
  background: #0b60cb;
}
.cid-u8XOXzueqG .iconfont-wrapper {
  display: inline-block;
  font-size: 20px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-u8XOXzueqG .iconfont-wrapper {
  border-radius: 0 !important;
}
.cid-u8XOXzueqG [class^="socicon-"]:before,
.cid-u8XOXzueqG [class*=" socicon-"]:before {
  line-height: 35px;
  padding: .4rem;
}
.cid-u8XOXzueqG .m-2 {
  margin: 0.2rem!important;
}
.cid-u8XOXzueqG .text-info {
  color: #ffc000!important;
}
@media (max-width: 768px) {
  .cid-u8XOXzueqG .media-wrap img {
    width: 45%;
  }
  .cid-u8XOXzueqG .social-list {
    text-align: left;
  }
  .cid-u8XOXzueqG .text-content {
    text-align: left;
  }
  .cid-u8XOXzueqG .text-content-left {
    padding-bottom: 1rem;
  }
}
.cid-u8XOXzueqG H5 {
  text-align: left;
}
.cid-u8XOXzueqG a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v7B9GOBaRD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v7B9GOBaRD nav.navbar {
  position: fixed;
}
.cid-v7B9GOBaRD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7B9GOBaRD .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7B9GOBaRD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  font-weight: 700;
}
.cid-v7B9GOBaRD .dropdown-item:hover,
.cid-v7B9GOBaRD .dropdown-item:focus {
  background: #004a77 !important;
  color: white !important;
}
.cid-v7B9GOBaRD .dropdown-item:hover span {
  color: white;
}
.cid-v7B9GOBaRD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7B9GOBaRD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7B9GOBaRD .nav-dropdown .link {
  padding: 26px 24px!important;
  margin: 0!important;
  font-weight: 700;
}
.cid-v7B9GOBaRD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7B9GOBaRD .nav-link {
  position: relative;
}
.cid-v7B9GOBaRD .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v7B9GOBaRD .container {
    flex-wrap: wrap;
  }
}
.cid-v7B9GOBaRD .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v7B9GOBaRD .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v7B9GOBaRD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v7B9GOBaRD .navbar-nav {
  text-transform: uppercase;
}
.cid-v7B9GOBaRD .dropdown-menu,
.cid-v7B9GOBaRD .navbar.opened {
  background: #ffffff !important;
}
.cid-v7B9GOBaRD .nav-item:focus,
.cid-v7B9GOBaRD .nav-link:focus {
  outline: none;
}
.cid-v7B9GOBaRD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7B9GOBaRD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7B9GOBaRD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7B9GOBaRD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7B9GOBaRD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7B9GOBaRD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7B9GOBaRD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v7B9GOBaRD .navbar.opened {
  transition: all 0.3s;
}
.cid-v7B9GOBaRD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7B9GOBaRD .navbar .navbar-logo img {
  width: auto;
}
.cid-v7B9GOBaRD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7B9GOBaRD .navbar.collapsed {
  justify-content: center;
}
.cid-v7B9GOBaRD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7B9GOBaRD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7B9GOBaRD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-v7B9GOBaRD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7B9GOBaRD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7B9GOBaRD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v7B9GOBaRD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7B9GOBaRD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7B9GOBaRD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7B9GOBaRD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7B9GOBaRD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7B9GOBaRD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7B9GOBaRD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7B9GOBaRD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v7B9GOBaRD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7B9GOBaRD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7B9GOBaRD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7B9GOBaRD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7B9GOBaRD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7B9GOBaRD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v7B9GOBaRD .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v7B9GOBaRD .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7B9GOBaRD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7B9GOBaRD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7B9GOBaRD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v7B9GOBaRD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7B9GOBaRD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7B9GOBaRD .dropdown-item.active,
.cid-v7B9GOBaRD .dropdown-item:active {
  background-color: transparent;
}
.cid-v7B9GOBaRD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7B9GOBaRD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7B9GOBaRD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7B9GOBaRD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v7B9GOBaRD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7B9GOBaRD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7B9GOBaRD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7B9GOBaRD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7B9GOBaRD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v7B9GOBaRD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v7B9GOBaRD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7B9GOBaRD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7B9GOBaRD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7B9GOBaRD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7B9GOBaRD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7B9GOBaRD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7B9GOBaRD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7B9GOBaRD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7B9GOBaRD .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-v7B9GOBaRD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7B9GOBaRD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v7B9GOBaRD .navbar {
    height: 70px;
  }
  .cid-v7B9GOBaRD .navbar.opened {
    height: auto;
  }
  .cid-v7B9GOBaRD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7B9GOBaRD .menu-content-top {
  background: #004a77;
  max-width: 100%;
  justify-content: flex-end;
  padding: 0 1rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-v7B9GOBaRD .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7B9GOBaRD .right-wrap {
  justify-content: flex-end;
  max-height: 37px;
}
.cid-v7B9GOBaRD .info-widget:first-child {
  margin-left: 0;
}
.cid-v7B9GOBaRD .info-widget {
  margin-left: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v7B9GOBaRD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7B9GOBaRD .widget-icon {
  color: #e9e9e9;
  display: inline-block;
  padding-right: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
}
.cid-v7B9GOBaRD .info-widget .display-4 {
  font-size: 0.8rem;
  line-height: 1;
}
.cid-v7B9GOBaRD P {
  color: #ffffff;
}
.cid-v7B9GOBaRD .widget-content p {
  margin-bottom: 0;
}
.cid-v7B9GOBaRD .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v7B9GOBaRD .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  color: #004a77;
  background-color: #ffc000  ;
  transition: all 0.3s ease-in-out;
}
.cid-v7B9GOBaRD .nav-item .nav-link:hover,
.cid-v7B9GOBaRD .nav-item .nav-link:focus {
  background-color: transparent;
  color: #004a77!important;
}
.cid-v7B9GOBaRD .nav-item .nav-link:hover::after,
.cid-v7B9GOBaRD .nav-item .nav-link:focus::after {
  color: #004a77 !important;
}
.cid-v7B9GOBaRD .nav-item .nav-link:hover::before,
.cid-v7B9GOBaRD .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-v7B9GOBaRD .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v7B9GOBaRD .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v7B9GOBaRD .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
  font-weight: 700;
}
.cid-v7B9GOBaRD .navbar .navbar-collapse {
  justify-content: flex-start;
  margin-left: 1.4rem;
}
.cid-v7B9GOBaRD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff!important;
  width: 100%;
}
.cid-v7B9GOBaRD .dropdown-item:first-child {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.cid-v7B9GOBaRD .dropdown-item:last-child {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.cid-v7B9GOBaRD .navbar .dropdown-item {
  padding-left: 22px;
  padding-right: 22px;
  font-weight: 700;
}
.cid-v7B9GOBaRD .dropdown-item:hover,
.cid-v7B9GOBaRD .dropdown-item:focus {
  background: #eaeaea!important;
  color: #004a77!important;
}
.cid-v7B9GOBaRD .btn-secondary:hover,
.cid-v7B9GOBaRD .btn-secondary:focus {
  color: #232323!important;
}
.cid-v7B9GOBaRD .btn-secondary,
.cid-v7B9GOBaRD .btn-secondary:active {
  color: #232323!important;
}
.cid-v7B9GOBaRD .info-widget a.text-primary,
.cid-v7B9GOBaRD .info-widget a.text-primary:hover,
.cid-v7B9GOBaRD .info-widget a.text-primary:focus,
.cid-v7B9GOBaRD .info-widget a.text-primary.active {
  color: #fff !important;
}
@media (max-width: 768px) {
  .cid-v7B9GOBaRD .menu-content-top {
    display: none;
  }
  .cid-v7B9GOBaRD .container-fluid {
    border-top: 40px solid #004a77;
  }
}
.cid-uQZ8t570UG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQZ8t570UG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQZ8t570UG .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-uQZ8t570UG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uQZ8t570UG .row {
  flex-direction: row-reverse;
}
.cid-uQZ8t570UG img {
  width: 100%;
}
.cid-uQZ8t5RyOg {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQZ8t5RyOg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQZ8t5RyOg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQZ8t5RyOg .mbr-section-title {
  text-align: left;
}
.cid-uQZ8t5RyOg .mbr-section-subtitle {
  text-align: left;
}
.cid-uQZ8t5RyOg .btm-line {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 1rem;
}
.cid-uQZ8t6kItt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BtiNqmEt {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7BtiNqmEt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BtiNqmEt .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-v7BtiNqmEt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7BtiNqmEt .row {
  flex-direction: row-reverse;
}
.cid-v7BtiNqmEt img {
  width: 100%;
}
.cid-v7BtAc5H88 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BtUns3xM {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7BtUns3xM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BtUns3xM .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-v7BtUns3xM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7BtUns3xM .row {
  flex-direction: row-reverse;
}
.cid-v7BtUns3xM img {
  width: 100%;
}
.cid-v7BtZqGuHu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BvJdqpcT {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7BvJdqpcT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BvJdqpcT .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-v7BvJdqpcT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7BvJdqpcT .row {
  flex-direction: row-reverse;
}
.cid-v7BvJdqpcT img {
  width: 100%;
}
.cid-v7BvOffcBd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BvZKMfze {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7BvZKMfze .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BvZKMfze .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-v7BvZKMfze .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7BvZKMfze .row {
  flex-direction: row-reverse;
}
.cid-v7BvZKMfze img {
  width: 100%;
}
.cid-v7Bw4383h5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uRziUsliC5 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQZ8tbJeTY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-uQZ8tbJeTY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQZ8tbJeTY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQZ8tbJeTY .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uQZ8tbJeTY .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uQZ8tbJeTY .row {
    text-align: center;
  }
  .cid-uQZ8tbJeTY .row > div {
    margin: auto;
  }
  .cid-uQZ8tbJeTY .social-row {
    justify-content: center;
  }
}
.cid-uQZ8tbJeTY .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uQZ8tbJeTY .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uQZ8tbJeTY .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uQZ8tbJeTY .list {
    margin-bottom: 0rem;
  }
}
.cid-uQZ8tbJeTY .mbr-text {
  color: #bbbbbb;
}
.cid-uQZ8tbJeTY .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;
}
.cid-uQZ8tbJeTY .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uQZ8tbJeTY div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uQZ8tbJeTY .copyright {
  font-size: 0.9rem;
  text-align: left;
}
.cid-uQZ8tbJeTY a.text-primary {
  color: #bbbbbb!important;
}
.cid-uQZ8tbJeTY a.text-primary:link,
.cid-uQZ8tbJeTY a.text-primary:hover,
.cid-uQZ8tbJeTY a.text-primary:active {
  color: #bbbbbb!important;
}
.cid-uQZ8tbJeTY h5 {
  border-bottom: 1px solid #bbbbbb;
}
.cid-uQZ8tbJeTY .media-wrap img {
  width: 70%;
}
.cid-uQZ8tbJeTY .bg-linkedin {
  background: #0077b5;
  color: #ffffff;
}
.cid-uQZ8tbJeTY .bg-linkedin:hover {
  background: #005582;
}
.cid-uQZ8tbJeTY .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-uQZ8tbJeTY .bg-youtube:hover {
  background: #cc0000;
}
.cid-uQZ8tbJeTY .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uQZ8tbJeTY .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uQZ8tbJeTY .iconfont-wrapper {
  display: inline-block;
  font-size: 20px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-uQZ8tbJeTY .iconfont-wrapper {
  border-radius: 0 !important;
}
.cid-uQZ8tbJeTY [class^="socicon-"]:before,
.cid-uQZ8tbJeTY [class*=" socicon-"]:before {
  line-height: 35px;
  padding: .4rem;
}
.cid-uQZ8tbJeTY .m-2 {
  margin: 0.2rem!important;
}
.cid-uQZ8tbJeTY .text-info {
  color: #ffc000!important;
}
@media (max-width: 768px) {
  .cid-uQZ8tbJeTY .media-wrap img {
    width: 45%;
  }
  .cid-uQZ8tbJeTY .social-list {
    text-align: left;
  }
  .cid-uQZ8tbJeTY .text-content {
    text-align: left;
  }
  .cid-uQZ8tbJeTY .text-content-left {
    padding-bottom: 1rem;
  }
}
.cid-uQZ8tbJeTY H5 {
  text-align: left;
}
.cid-uQZ8tbJeTY a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v7BCOmSwFj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v7BCOmSwFj nav.navbar {
  position: fixed;
}
.cid-v7BCOmSwFj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7BCOmSwFj .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7BCOmSwFj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  font-weight: 700;
}
.cid-v7BCOmSwFj .dropdown-item:hover,
.cid-v7BCOmSwFj .dropdown-item:focus {
  background: #004a77 !important;
  color: white !important;
}
.cid-v7BCOmSwFj .dropdown-item:hover span {
  color: white;
}
.cid-v7BCOmSwFj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7BCOmSwFj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7BCOmSwFj .nav-dropdown .link {
  padding: 26px 24px!important;
  margin: 0!important;
  font-weight: 700;
}
.cid-v7BCOmSwFj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7BCOmSwFj .nav-link {
  position: relative;
}
.cid-v7BCOmSwFj .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v7BCOmSwFj .container {
    flex-wrap: wrap;
  }
}
.cid-v7BCOmSwFj .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v7BCOmSwFj .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v7BCOmSwFj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v7BCOmSwFj .navbar-nav {
  text-transform: uppercase;
}
.cid-v7BCOmSwFj .dropdown-menu,
.cid-v7BCOmSwFj .navbar.opened {
  background: #ffffff !important;
}
.cid-v7BCOmSwFj .nav-item:focus,
.cid-v7BCOmSwFj .nav-link:focus {
  outline: none;
}
.cid-v7BCOmSwFj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7BCOmSwFj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7BCOmSwFj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7BCOmSwFj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7BCOmSwFj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7BCOmSwFj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7BCOmSwFj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v7BCOmSwFj .navbar.opened {
  transition: all 0.3s;
}
.cid-v7BCOmSwFj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7BCOmSwFj .navbar .navbar-logo img {
  width: auto;
}
.cid-v7BCOmSwFj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7BCOmSwFj .navbar.collapsed {
  justify-content: center;
}
.cid-v7BCOmSwFj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7BCOmSwFj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7BCOmSwFj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-v7BCOmSwFj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7BCOmSwFj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7BCOmSwFj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v7BCOmSwFj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7BCOmSwFj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7BCOmSwFj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7BCOmSwFj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7BCOmSwFj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7BCOmSwFj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7BCOmSwFj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7BCOmSwFj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v7BCOmSwFj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7BCOmSwFj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7BCOmSwFj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7BCOmSwFj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7BCOmSwFj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7BCOmSwFj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v7BCOmSwFj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v7BCOmSwFj .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7BCOmSwFj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7BCOmSwFj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7BCOmSwFj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v7BCOmSwFj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7BCOmSwFj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7BCOmSwFj .dropdown-item.active,
.cid-v7BCOmSwFj .dropdown-item:active {
  background-color: transparent;
}
.cid-v7BCOmSwFj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7BCOmSwFj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7BCOmSwFj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7BCOmSwFj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v7BCOmSwFj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7BCOmSwFj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7BCOmSwFj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7BCOmSwFj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7BCOmSwFj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v7BCOmSwFj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v7BCOmSwFj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7BCOmSwFj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7BCOmSwFj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7BCOmSwFj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7BCOmSwFj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7BCOmSwFj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7BCOmSwFj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7BCOmSwFj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7BCOmSwFj .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-v7BCOmSwFj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7BCOmSwFj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v7BCOmSwFj .navbar {
    height: 70px;
  }
  .cid-v7BCOmSwFj .navbar.opened {
    height: auto;
  }
  .cid-v7BCOmSwFj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7BCOmSwFj .menu-content-top {
  background: #004a77;
  max-width: 100%;
  justify-content: flex-end;
  padding: 0 1rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-v7BCOmSwFj .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7BCOmSwFj .right-wrap {
  justify-content: flex-end;
  max-height: 37px;
}
.cid-v7BCOmSwFj .info-widget:first-child {
  margin-left: 0;
}
.cid-v7BCOmSwFj .info-widget {
  margin-left: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v7BCOmSwFj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7BCOmSwFj .widget-icon {
  color: #e9e9e9;
  display: inline-block;
  padding-right: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
}
.cid-v7BCOmSwFj .info-widget .display-4 {
  font-size: 0.8rem;
  line-height: 1;
}
.cid-v7BCOmSwFj P {
  color: #ffffff;
}
.cid-v7BCOmSwFj .widget-content p {
  margin-bottom: 0;
}
.cid-v7BCOmSwFj .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v7BCOmSwFj .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  color: #004a77;
  background-color: #ffc000  ;
  transition: all 0.3s ease-in-out;
}
.cid-v7BCOmSwFj .nav-item .nav-link:hover,
.cid-v7BCOmSwFj .nav-item .nav-link:focus {
  background-color: transparent;
  color: #004a77!important;
}
.cid-v7BCOmSwFj .nav-item .nav-link:hover::after,
.cid-v7BCOmSwFj .nav-item .nav-link:focus::after {
  color: #004a77 !important;
}
.cid-v7BCOmSwFj .nav-item .nav-link:hover::before,
.cid-v7BCOmSwFj .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-v7BCOmSwFj .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v7BCOmSwFj .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v7BCOmSwFj .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
  font-weight: 700;
}
.cid-v7BCOmSwFj .navbar .navbar-collapse {
  justify-content: flex-start;
  margin-left: 1.4rem;
}
.cid-v7BCOmSwFj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff!important;
  width: 100%;
}
.cid-v7BCOmSwFj .dropdown-item:first-child {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.cid-v7BCOmSwFj .dropdown-item:last-child {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.cid-v7BCOmSwFj .navbar .dropdown-item {
  padding-left: 22px;
  padding-right: 22px;
  font-weight: 700;
}
.cid-v7BCOmSwFj .dropdown-item:hover,
.cid-v7BCOmSwFj .dropdown-item:focus {
  background: #eaeaea!important;
  color: #004a77!important;
}
.cid-v7BCOmSwFj .btn-secondary:hover,
.cid-v7BCOmSwFj .btn-secondary:focus {
  color: #232323!important;
}
.cid-v7BCOmSwFj .btn-secondary,
.cid-v7BCOmSwFj .btn-secondary:active {
  color: #232323!important;
}
.cid-v7BCOmSwFj .info-widget a.text-primary,
.cid-v7BCOmSwFj .info-widget a.text-primary:hover,
.cid-v7BCOmSwFj .info-widget a.text-primary:focus,
.cid-v7BCOmSwFj .info-widget a.text-primary.active {
  color: #fff !important;
}
@media (max-width: 768px) {
  .cid-v7BCOmSwFj .menu-content-top {
    display: none;
  }
  .cid-v7BCOmSwFj .container-fluid {
    border-top: 40px solid #004a77;
  }
}
.cid-v7BCOn7YPm {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BCOn7YPm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BCOn7YPm .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-v7BCOn7YPm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7BCOn7YPm .row {
  flex-direction: row-reverse;
}
.cid-v7BCOn7YPm img {
  width: 100%;
}
.cid-v7BCOniRxE {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BCOniRxE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BCOniRxE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BCOniRxE .mbr-section-title {
  text-align: left;
}
.cid-v7BCOniRxE .mbr-section-subtitle {
  text-align: left;
}
.cid-v7BCOniRxE .btm-line {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 1rem;
}
.cid-v7BCOnrvJU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BCOnyHd2 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7BCOnyHd2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BCOnyHd2 .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-v7BCOnyHd2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7BCOnyHd2 .row {
  flex-direction: row-reverse;
}
.cid-v7BCOnyHd2 img {
  width: 100%;
}
.cid-v7BCOnyHd2 .mbr-description {
  color: #a3a3a3;
}
.cid-v7BCOnGOYA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BCOnQcty {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7BCOnQcty .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BCOnQcty .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-v7BCOnQcty .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7BCOnQcty .row {
  flex-direction: row-reverse;
}
.cid-v7BCOnQcty img {
  width: 100%;
}
.cid-v7BCOnQcty .mbr-description {
  color: #a3a3a3;
}
.cid-v7BCOo8Pju {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BCOogm9q {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7BCOogm9q .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BCOogm9q .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-v7BCOogm9q .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7BCOogm9q .row {
  flex-direction: row-reverse;
}
.cid-v7BCOogm9q img {
  width: 100%;
}
.cid-v7BCOogm9q .mbr-description {
  color: #a3a3a3;
}
.cid-v7BCOoo71H {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BCOowlT2 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7BCOowlT2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BCOowlT2 .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-v7BCOowlT2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7BCOowlT2 .row {
  flex-direction: row-reverse;
}
.cid-v7BCOowlT2 img {
  width: 100%;
}
.cid-v7BCOowlT2 .mbr-description {
  color: #a3a3a3;
}
.cid-v7BCOoEhf7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BCOoLKWO {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7BCOoS9Ny {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v7BCOoS9Ny .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BCOoS9Ny .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BCOoS9Ny .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v7BCOoS9Ny .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v7BCOoS9Ny .row {
    text-align: center;
  }
  .cid-v7BCOoS9Ny .row > div {
    margin: auto;
  }
  .cid-v7BCOoS9Ny .social-row {
    justify-content: center;
  }
}
.cid-v7BCOoS9Ny .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v7BCOoS9Ny .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v7BCOoS9Ny .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v7BCOoS9Ny .list {
    margin-bottom: 0rem;
  }
}
.cid-v7BCOoS9Ny .mbr-text {
  color: #bbbbbb;
}
.cid-v7BCOoS9Ny .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;
}
.cid-v7BCOoS9Ny .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-v7BCOoS9Ny div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v7BCOoS9Ny .copyright {
  font-size: 0.9rem;
  text-align: left;
}
.cid-v7BCOoS9Ny a.text-primary {
  color: #bbbbbb!important;
}
.cid-v7BCOoS9Ny a.text-primary:link,
.cid-v7BCOoS9Ny a.text-primary:hover,
.cid-v7BCOoS9Ny a.text-primary:active {
  color: #bbbbbb!important;
}
.cid-v7BCOoS9Ny h5 {
  border-bottom: 1px solid #bbbbbb;
}
.cid-v7BCOoS9Ny .media-wrap img {
  width: 70%;
}
.cid-v7BCOoS9Ny .bg-linkedin {
  background: #0077b5;
  color: #ffffff;
}
.cid-v7BCOoS9Ny .bg-linkedin:hover {
  background: #005582;
}
.cid-v7BCOoS9Ny .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-v7BCOoS9Ny .bg-youtube:hover {
  background: #cc0000;
}
.cid-v7BCOoS9Ny .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v7BCOoS9Ny .bg-facebook:hover {
  background: #0b60cb;
}
.cid-v7BCOoS9Ny .iconfont-wrapper {
  display: inline-block;
  font-size: 20px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-v7BCOoS9Ny .iconfont-wrapper {
  border-radius: 0 !important;
}
.cid-v7BCOoS9Ny [class^="socicon-"]:before,
.cid-v7BCOoS9Ny [class*=" socicon-"]:before {
  line-height: 35px;
  padding: .4rem;
}
.cid-v7BCOoS9Ny .m-2 {
  margin: 0.2rem!important;
}
.cid-v7BCOoS9Ny .text-info {
  color: #ffc000!important;
}
@media (max-width: 768px) {
  .cid-v7BCOoS9Ny .media-wrap img {
    width: 45%;
  }
  .cid-v7BCOoS9Ny .social-list {
    text-align: left;
  }
  .cid-v7BCOoS9Ny .text-content {
    text-align: left;
  }
  .cid-v7BCOoS9Ny .text-content-left {
    padding-bottom: 1rem;
  }
}
.cid-v7BCOoS9Ny H5 {
  text-align: left;
}
.cid-v7BCOoS9Ny a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v7BCW6uaqy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v7BCW6uaqy nav.navbar {
  position: fixed;
}
.cid-v7BCW6uaqy .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7BCW6uaqy .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7BCW6uaqy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  font-weight: 700;
}
.cid-v7BCW6uaqy .dropdown-item:hover,
.cid-v7BCW6uaqy .dropdown-item:focus {
  background: #004a77 !important;
  color: white !important;
}
.cid-v7BCW6uaqy .dropdown-item:hover span {
  color: white;
}
.cid-v7BCW6uaqy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7BCW6uaqy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7BCW6uaqy .nav-dropdown .link {
  padding: 26px 24px!important;
  margin: 0!important;
  font-weight: 700;
}
.cid-v7BCW6uaqy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7BCW6uaqy .nav-link {
  position: relative;
}
.cid-v7BCW6uaqy .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v7BCW6uaqy .container {
    flex-wrap: wrap;
  }
}
.cid-v7BCW6uaqy .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v7BCW6uaqy .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v7BCW6uaqy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v7BCW6uaqy .navbar-nav {
  text-transform: uppercase;
}
.cid-v7BCW6uaqy .dropdown-menu,
.cid-v7BCW6uaqy .navbar.opened {
  background: #ffffff !important;
}
.cid-v7BCW6uaqy .nav-item:focus,
.cid-v7BCW6uaqy .nav-link:focus {
  outline: none;
}
.cid-v7BCW6uaqy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7BCW6uaqy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7BCW6uaqy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7BCW6uaqy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7BCW6uaqy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7BCW6uaqy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7BCW6uaqy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v7BCW6uaqy .navbar.opened {
  transition: all 0.3s;
}
.cid-v7BCW6uaqy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7BCW6uaqy .navbar .navbar-logo img {
  width: auto;
}
.cid-v7BCW6uaqy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7BCW6uaqy .navbar.collapsed {
  justify-content: center;
}
.cid-v7BCW6uaqy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7BCW6uaqy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7BCW6uaqy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-v7BCW6uaqy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7BCW6uaqy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7BCW6uaqy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v7BCW6uaqy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7BCW6uaqy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7BCW6uaqy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7BCW6uaqy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7BCW6uaqy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7BCW6uaqy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7BCW6uaqy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7BCW6uaqy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v7BCW6uaqy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7BCW6uaqy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7BCW6uaqy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7BCW6uaqy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7BCW6uaqy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7BCW6uaqy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v7BCW6uaqy .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v7BCW6uaqy .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7BCW6uaqy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7BCW6uaqy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7BCW6uaqy .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v7BCW6uaqy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7BCW6uaqy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7BCW6uaqy .dropdown-item.active,
.cid-v7BCW6uaqy .dropdown-item:active {
  background-color: transparent;
}
.cid-v7BCW6uaqy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7BCW6uaqy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7BCW6uaqy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7BCW6uaqy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v7BCW6uaqy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7BCW6uaqy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7BCW6uaqy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7BCW6uaqy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7BCW6uaqy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v7BCW6uaqy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v7BCW6uaqy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7BCW6uaqy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7BCW6uaqy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7BCW6uaqy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7BCW6uaqy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7BCW6uaqy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7BCW6uaqy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7BCW6uaqy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7BCW6uaqy .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-v7BCW6uaqy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7BCW6uaqy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v7BCW6uaqy .navbar {
    height: 70px;
  }
  .cid-v7BCW6uaqy .navbar.opened {
    height: auto;
  }
  .cid-v7BCW6uaqy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7BCW6uaqy .menu-content-top {
  background: #004a77;
  max-width: 100%;
  justify-content: flex-end;
  padding: 0 1rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-v7BCW6uaqy .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7BCW6uaqy .right-wrap {
  justify-content: flex-end;
  max-height: 37px;
}
.cid-v7BCW6uaqy .info-widget:first-child {
  margin-left: 0;
}
.cid-v7BCW6uaqy .info-widget {
  margin-left: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v7BCW6uaqy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7BCW6uaqy .widget-icon {
  color: #e9e9e9;
  display: inline-block;
  padding-right: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
}
.cid-v7BCW6uaqy .info-widget .display-4 {
  font-size: 0.8rem;
  line-height: 1;
}
.cid-v7BCW6uaqy P {
  color: #ffffff;
}
.cid-v7BCW6uaqy .widget-content p {
  margin-bottom: 0;
}
.cid-v7BCW6uaqy .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v7BCW6uaqy .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  color: #004a77;
  background-color: #ffc000  ;
  transition: all 0.3s ease-in-out;
}
.cid-v7BCW6uaqy .nav-item .nav-link:hover,
.cid-v7BCW6uaqy .nav-item .nav-link:focus {
  background-color: transparent;
  color: #004a77!important;
}
.cid-v7BCW6uaqy .nav-item .nav-link:hover::after,
.cid-v7BCW6uaqy .nav-item .nav-link:focus::after {
  color: #004a77 !important;
}
.cid-v7BCW6uaqy .nav-item .nav-link:hover::before,
.cid-v7BCW6uaqy .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-v7BCW6uaqy .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v7BCW6uaqy .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v7BCW6uaqy .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
  font-weight: 700;
}
.cid-v7BCW6uaqy .navbar .navbar-collapse {
  justify-content: flex-start;
  margin-left: 1.4rem;
}
.cid-v7BCW6uaqy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff!important;
  width: 100%;
}
.cid-v7BCW6uaqy .dropdown-item:first-child {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.cid-v7BCW6uaqy .dropdown-item:last-child {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.cid-v7BCW6uaqy .navbar .dropdown-item {
  padding-left: 22px;
  padding-right: 22px;
  font-weight: 700;
}
.cid-v7BCW6uaqy .dropdown-item:hover,
.cid-v7BCW6uaqy .dropdown-item:focus {
  background: #eaeaea!important;
  color: #004a77!important;
}
.cid-v7BCW6uaqy .btn-secondary:hover,
.cid-v7BCW6uaqy .btn-secondary:focus {
  color: #232323!important;
}
.cid-v7BCW6uaqy .btn-secondary,
.cid-v7BCW6uaqy .btn-secondary:active {
  color: #232323!important;
}
.cid-v7BCW6uaqy .info-widget a.text-primary,
.cid-v7BCW6uaqy .info-widget a.text-primary:hover,
.cid-v7BCW6uaqy .info-widget a.text-primary:focus,
.cid-v7BCW6uaqy .info-widget a.text-primary.active {
  color: #fff !important;
}
@media (max-width: 768px) {
  .cid-v7BCW6uaqy .menu-content-top {
    display: none;
  }
  .cid-v7BCW6uaqy .container-fluid {
    border-top: 40px solid #004a77;
  }
}
.cid-v7BCW6G9HC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BCW6G9HC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BCW6G9HC .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-v7BCW6G9HC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7BCW6G9HC .row {
  flex-direction: row-reverse;
}
.cid-v7BCW6G9HC img {
  width: 100%;
}
.cid-v7BCW6OgAZ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BCW6OgAZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BCW6OgAZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BCW6OgAZ .mbr-section-title {
  text-align: left;
}
.cid-v7BCW6OgAZ .mbr-section-subtitle {
  text-align: left;
}
.cid-v7BCW6OgAZ .btm-line {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 1rem;
}
.cid-v7BCW6Xuen {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BCW74gTG {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7BCW74gTG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BCW74gTG .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-v7BCW74gTG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7BCW74gTG .row {
  flex-direction: row-reverse;
}
.cid-v7BCW74gTG img {
  width: 100%;
}
.cid-v7BCW7bBW4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BCW7j07q {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7BCW7j07q .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BCW7j07q .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-v7BCW7j07q .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7BCW7j07q .row {
  flex-direction: row-reverse;
}
.cid-v7BCW7j07q img {
  width: 100%;
}
.cid-v7BCW7AfUY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BCW7GIjU {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7BCW7GIjU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BCW7GIjU .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-v7BCW7GIjU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7BCW7GIjU .row {
  flex-direction: row-reverse;
}
.cid-v7BCW7GIjU img {
  width: 100%;
}
.cid-v7BCW7OfTO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BCW7WlbK {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7BCW7WlbK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BCW7WlbK .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-v7BCW7WlbK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7BCW7WlbK .row {
  flex-direction: row-reverse;
}
.cid-v7BCW7WlbK img {
  width: 100%;
}
.cid-v7BCW83C8y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BCW8a7ge {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7BCW8ghnu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v7BCW8ghnu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BCW8ghnu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BCW8ghnu .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v7BCW8ghnu .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v7BCW8ghnu .row {
    text-align: center;
  }
  .cid-v7BCW8ghnu .row > div {
    margin: auto;
  }
  .cid-v7BCW8ghnu .social-row {
    justify-content: center;
  }
}
.cid-v7BCW8ghnu .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v7BCW8ghnu .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v7BCW8ghnu .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v7BCW8ghnu .list {
    margin-bottom: 0rem;
  }
}
.cid-v7BCW8ghnu .mbr-text {
  color: #bbbbbb;
}
.cid-v7BCW8ghnu .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;
}
.cid-v7BCW8ghnu .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-v7BCW8ghnu div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v7BCW8ghnu .copyright {
  font-size: 0.9rem;
  text-align: left;
}
.cid-v7BCW8ghnu a.text-primary {
  color: #bbbbbb!important;
}
.cid-v7BCW8ghnu a.text-primary:link,
.cid-v7BCW8ghnu a.text-primary:hover,
.cid-v7BCW8ghnu a.text-primary:active {
  color: #bbbbbb!important;
}
.cid-v7BCW8ghnu h5 {
  border-bottom: 1px solid #bbbbbb;
}
.cid-v7BCW8ghnu .media-wrap img {
  width: 70%;
}
.cid-v7BCW8ghnu .bg-linkedin {
  background: #0077b5;
  color: #ffffff;
}
.cid-v7BCW8ghnu .bg-linkedin:hover {
  background: #005582;
}
.cid-v7BCW8ghnu .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-v7BCW8ghnu .bg-youtube:hover {
  background: #cc0000;
}
.cid-v7BCW8ghnu .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v7BCW8ghnu .bg-facebook:hover {
  background: #0b60cb;
}
.cid-v7BCW8ghnu .iconfont-wrapper {
  display: inline-block;
  font-size: 20px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-v7BCW8ghnu .iconfont-wrapper {
  border-radius: 0 !important;
}
.cid-v7BCW8ghnu [class^="socicon-"]:before,
.cid-v7BCW8ghnu [class*=" socicon-"]:before {
  line-height: 35px;
  padding: .4rem;
}
.cid-v7BCW8ghnu .m-2 {
  margin: 0.2rem!important;
}
.cid-v7BCW8ghnu .text-info {
  color: #ffc000!important;
}
@media (max-width: 768px) {
  .cid-v7BCW8ghnu .media-wrap img {
    width: 45%;
  }
  .cid-v7BCW8ghnu .social-list {
    text-align: left;
  }
  .cid-v7BCW8ghnu .text-content {
    text-align: left;
  }
  .cid-v7BCW8ghnu .text-content-left {
    padding-bottom: 1rem;
  }
}
.cid-v7BCW8ghnu H5 {
  text-align: left;
}
.cid-v7BCW8ghnu a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v7BMP3guL4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v7BMP3guL4 nav.navbar {
  position: fixed;
}
.cid-v7BMP3guL4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7BMP3guL4 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7BMP3guL4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  font-weight: 700;
}
.cid-v7BMP3guL4 .dropdown-item:hover,
.cid-v7BMP3guL4 .dropdown-item:focus {
  background: #004a77 !important;
  color: white !important;
}
.cid-v7BMP3guL4 .dropdown-item:hover span {
  color: white;
}
.cid-v7BMP3guL4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7BMP3guL4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7BMP3guL4 .nav-dropdown .link {
  padding: 26px 24px!important;
  margin: 0!important;
  font-weight: 700;
}
.cid-v7BMP3guL4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7BMP3guL4 .nav-link {
  position: relative;
}
.cid-v7BMP3guL4 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v7BMP3guL4 .container {
    flex-wrap: wrap;
  }
}
.cid-v7BMP3guL4 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v7BMP3guL4 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v7BMP3guL4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v7BMP3guL4 .navbar-nav {
  text-transform: uppercase;
}
.cid-v7BMP3guL4 .dropdown-menu,
.cid-v7BMP3guL4 .navbar.opened {
  background: #ffffff !important;
}
.cid-v7BMP3guL4 .nav-item:focus,
.cid-v7BMP3guL4 .nav-link:focus {
  outline: none;
}
.cid-v7BMP3guL4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7BMP3guL4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7BMP3guL4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7BMP3guL4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7BMP3guL4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7BMP3guL4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7BMP3guL4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v7BMP3guL4 .navbar.opened {
  transition: all 0.3s;
}
.cid-v7BMP3guL4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7BMP3guL4 .navbar .navbar-logo img {
  width: auto;
}
.cid-v7BMP3guL4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7BMP3guL4 .navbar.collapsed {
  justify-content: center;
}
.cid-v7BMP3guL4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7BMP3guL4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7BMP3guL4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-v7BMP3guL4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7BMP3guL4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7BMP3guL4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v7BMP3guL4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7BMP3guL4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7BMP3guL4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7BMP3guL4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7BMP3guL4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7BMP3guL4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7BMP3guL4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7BMP3guL4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v7BMP3guL4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7BMP3guL4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7BMP3guL4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7BMP3guL4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7BMP3guL4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7BMP3guL4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v7BMP3guL4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v7BMP3guL4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7BMP3guL4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7BMP3guL4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7BMP3guL4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v7BMP3guL4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7BMP3guL4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7BMP3guL4 .dropdown-item.active,
.cid-v7BMP3guL4 .dropdown-item:active {
  background-color: transparent;
}
.cid-v7BMP3guL4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7BMP3guL4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7BMP3guL4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7BMP3guL4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v7BMP3guL4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7BMP3guL4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7BMP3guL4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7BMP3guL4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7BMP3guL4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v7BMP3guL4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v7BMP3guL4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7BMP3guL4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7BMP3guL4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7BMP3guL4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7BMP3guL4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7BMP3guL4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7BMP3guL4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7BMP3guL4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7BMP3guL4 .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-v7BMP3guL4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7BMP3guL4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v7BMP3guL4 .navbar {
    height: 70px;
  }
  .cid-v7BMP3guL4 .navbar.opened {
    height: auto;
  }
  .cid-v7BMP3guL4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7BMP3guL4 .menu-content-top {
  background: #004a77;
  max-width: 100%;
  justify-content: flex-end;
  padding: 0 1rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-v7BMP3guL4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7BMP3guL4 .right-wrap {
  justify-content: flex-end;
  max-height: 37px;
}
.cid-v7BMP3guL4 .info-widget:first-child {
  margin-left: 0;
}
.cid-v7BMP3guL4 .info-widget {
  margin-left: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v7BMP3guL4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7BMP3guL4 .widget-icon {
  color: #e9e9e9;
  display: inline-block;
  padding-right: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
}
.cid-v7BMP3guL4 .info-widget .display-4 {
  font-size: 0.8rem;
  line-height: 1;
}
.cid-v7BMP3guL4 P {
  color: #ffffff;
}
.cid-v7BMP3guL4 .widget-content p {
  margin-bottom: 0;
}
.cid-v7BMP3guL4 .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v7BMP3guL4 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  color: #004a77;
  background-color: #ffc000  ;
  transition: all 0.3s ease-in-out;
}
.cid-v7BMP3guL4 .nav-item .nav-link:hover,
.cid-v7BMP3guL4 .nav-item .nav-link:focus {
  background-color: transparent;
  color: #004a77!important;
}
.cid-v7BMP3guL4 .nav-item .nav-link:hover::after,
.cid-v7BMP3guL4 .nav-item .nav-link:focus::after {
  color: #004a77 !important;
}
.cid-v7BMP3guL4 .nav-item .nav-link:hover::before,
.cid-v7BMP3guL4 .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-v7BMP3guL4 .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v7BMP3guL4 .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v7BMP3guL4 .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
  font-weight: 700;
}
.cid-v7BMP3guL4 .navbar .navbar-collapse {
  justify-content: flex-start;
  margin-left: 1.4rem;
}
.cid-v7BMP3guL4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff!important;
  width: 100%;
}
.cid-v7BMP3guL4 .dropdown-item:first-child {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.cid-v7BMP3guL4 .dropdown-item:last-child {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.cid-v7BMP3guL4 .navbar .dropdown-item {
  padding-left: 22px;
  padding-right: 22px;
  font-weight: 700;
}
.cid-v7BMP3guL4 .dropdown-item:hover,
.cid-v7BMP3guL4 .dropdown-item:focus {
  background: #eaeaea!important;
  color: #004a77!important;
}
.cid-v7BMP3guL4 .btn-secondary:hover,
.cid-v7BMP3guL4 .btn-secondary:focus {
  color: #232323!important;
}
.cid-v7BMP3guL4 .btn-secondary,
.cid-v7BMP3guL4 .btn-secondary:active {
  color: #232323!important;
}
.cid-v7BMP3guL4 .info-widget a.text-primary,
.cid-v7BMP3guL4 .info-widget a.text-primary:hover,
.cid-v7BMP3guL4 .info-widget a.text-primary:focus,
.cid-v7BMP3guL4 .info-widget a.text-primary.active {
  color: #fff !important;
}
@media (max-width: 768px) {
  .cid-v7BMP3guL4 .menu-content-top {
    display: none;
  }
  .cid-v7BMP3guL4 .container-fluid {
    border-top: 40px solid #004a77;
  }
}
.cid-v7BMP3vGkA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BMP3vGkA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BMP3vGkA .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-v7BMP3vGkA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7BMP3vGkA .row {
  flex-direction: row-reverse;
}
.cid-v7BMP3vGkA img {
  width: 100%;
}
.cid-v7BMP3H3Sh {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BMP3H3Sh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BMP3H3Sh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BMP3H3Sh .mbr-section-title {
  text-align: left;
}
.cid-v7BMP3H3Sh .mbr-section-subtitle {
  text-align: left;
}
.cid-v7BMP3H3Sh .btm-line {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 1rem;
}
.cid-v7BMP3QTDU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BMP40Sb3 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7BMP40Sb3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BMP40Sb3 .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-v7BMP40Sb3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7BMP40Sb3 .row {
  flex-direction: row-reverse;
}
.cid-v7BMP40Sb3 img {
  width: 100%;
}
.cid-v7BMP4aDHO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BMP4jraB {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7BMP4jraB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BMP4jraB .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-v7BMP4jraB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7BMP4jraB .row {
  flex-direction: row-reverse;
}
.cid-v7BMP4jraB img {
  width: 100%;
}
.cid-v7BMP4EToH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BMP4OGS1 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7BMP4OGS1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BMP4OGS1 .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-v7BMP4OGS1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7BMP4OGS1 .row {
  flex-direction: row-reverse;
}
.cid-v7BMP4OGS1 img {
  width: 100%;
}
.cid-v7BMP50oMr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BMP59zQ9 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v7BMP59zQ9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BMP59zQ9 .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-v7BMP59zQ9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v7BMP59zQ9 .row {
  flex-direction: row-reverse;
}
.cid-v7BMP59zQ9 img {
  width: 100%;
}
.cid-v7BMP5kJuz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7BMP5tiCE {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7BMP5B2J6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v7BMP5B2J6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7BMP5B2J6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7BMP5B2J6 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v7BMP5B2J6 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v7BMP5B2J6 .row {
    text-align: center;
  }
  .cid-v7BMP5B2J6 .row > div {
    margin: auto;
  }
  .cid-v7BMP5B2J6 .social-row {
    justify-content: center;
  }
}
.cid-v7BMP5B2J6 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v7BMP5B2J6 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v7BMP5B2J6 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v7BMP5B2J6 .list {
    margin-bottom: 0rem;
  }
}
.cid-v7BMP5B2J6 .mbr-text {
  color: #bbbbbb;
}
.cid-v7BMP5B2J6 .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;
}
.cid-v7BMP5B2J6 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-v7BMP5B2J6 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v7BMP5B2J6 .copyright {
  font-size: 0.9rem;
  text-align: left;
}
.cid-v7BMP5B2J6 a.text-primary {
  color: #bbbbbb!important;
}
.cid-v7BMP5B2J6 a.text-primary:link,
.cid-v7BMP5B2J6 a.text-primary:hover,
.cid-v7BMP5B2J6 a.text-primary:active {
  color: #bbbbbb!important;
}
.cid-v7BMP5B2J6 h5 {
  border-bottom: 1px solid #bbbbbb;
}
.cid-v7BMP5B2J6 .media-wrap img {
  width: 70%;
}
.cid-v7BMP5B2J6 .bg-linkedin {
  background: #0077b5;
  color: #ffffff;
}
.cid-v7BMP5B2J6 .bg-linkedin:hover {
  background: #005582;
}
.cid-v7BMP5B2J6 .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-v7BMP5B2J6 .bg-youtube:hover {
  background: #cc0000;
}
.cid-v7BMP5B2J6 .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v7BMP5B2J6 .bg-facebook:hover {
  background: #0b60cb;
}
.cid-v7BMP5B2J6 .iconfont-wrapper {
  display: inline-block;
  font-size: 20px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-v7BMP5B2J6 .iconfont-wrapper {
  border-radius: 0 !important;
}
.cid-v7BMP5B2J6 [class^="socicon-"]:before,
.cid-v7BMP5B2J6 [class*=" socicon-"]:before {
  line-height: 35px;
  padding: .4rem;
}
.cid-v7BMP5B2J6 .m-2 {
  margin: 0.2rem!important;
}
.cid-v7BMP5B2J6 .text-info {
  color: #ffc000!important;
}
@media (max-width: 768px) {
  .cid-v7BMP5B2J6 .media-wrap img {
    width: 45%;
  }
  .cid-v7BMP5B2J6 .social-list {
    text-align: left;
  }
  .cid-v7BMP5B2J6 .text-content {
    text-align: left;
  }
  .cid-v7BMP5B2J6 .text-content-left {
    padding-bottom: 1rem;
  }
}
.cid-v7BMP5B2J6 H5 {
  text-align: left;
}
.cid-v7BMP5B2J6 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
