body {
  font-family: Quicksand;
}
.display-1 {
  font-family: 'Quicksand', sans-serif;
  font-size: 5rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -4.5px;
}
.display-1 > .mbr-iconfont {
  font-size: 8rem;
}
.display-2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.75rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -2.8px;
}
.display-2 > .mbr-iconfont {
  font-size: 4.4rem;
}
.display-4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 0.6px;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.25rem;
  line-height: 1.1;
  font-weight: 700;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.2rem;
  line-height: 1.7;
  font-weight: 500;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.2rem;
    font-size: calc( 1.6125rem + (2.75 - 1.6125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.6125rem + (2.75 - 1.6125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 8px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 8px;
}
.bg-primary {
  background-color: #03579e !important;
}
.bg-success {
  background-color: #80c5ff !important;
}
.bg-info {
  background-color: #cccccc !important;
}
.bg-warning {
  background-color: #808080 !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary {
  border: 0px !important;
  color: #ffffff;
  color: #ffffff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #03579e !important;
  border-color: #03579e !important;
  color: #cccccc !important;
}
.btn-primary:hover {
  color: #cccccc !important;
  background-color: #022e53 !important;
  border-color: #022e53 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #cccccc !important;
  background-color: #022e53 !important;
  border-color: #022e53 !important;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #94f1b6 !important;
  box-shadow: none !important;
}
.btn-primary:hover {
  background-color: #0473d0 !important;
}
.btn-secondary {
  border: 0px !important;
  color: #ffffff;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #03579e !important;
  border-color: #03579e !important;
  color: #cccccc !important;
}
.btn-secondary:hover {
  color: #cccccc !important;
  background-color: #022e53 !important;
  border-color: #022e53 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #cccccc !important;
  background-color: #022e53 !important;
  border-color: #022e53 !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #94f1b6 !important;
  box-shadow: none !important;
}
.btn-info {
  border: 0px !important;
  color: #ffffff;
}
.btn-info,
.btn-info:active {
  background-color: #cccccc !important;
  border-color: #cccccc !important;
  color: #cccccc !important;
}
.btn-info:hover {
  color: #cccccc !important;
  background-color: #a6a6a6 !important;
  border-color: #a6a6a6 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #cccccc !important;
  background-color: #a6a6a6 !important;
  border-color: #a6a6a6 !important;
}
.btn-info:hover,
.btn-info:focus {
  background-color: #94f1b6 !important;
  box-shadow: none !important;
}
.btn-success {
  border: 0px !important;
  color: #ffffff;
}
.btn-success,
.btn-success:active {
  background-color: #80c5ff !important;
  border-color: #80c5ff !important;
  color: #cccccc !important;
}
.btn-success:hover {
  color: #cccccc !important;
  background-color: #33a2ff !important;
  border-color: #33a2ff !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #cccccc !important;
  background-color: #33a2ff !important;
  border-color: #33a2ff !important;
}
.btn-success:hover,
.btn-success:focus {
  background-color: #94f1b6 !important;
  box-shadow: none !important;
}
.btn-warning {
  border: 0px !important;
  color: #ffffff;
}
.btn-warning,
.btn-warning:active {
  background-color: #808080 !important;
  border-color: #808080 !important;
  color: #cccccc !important;
}
.btn-warning:hover {
  color: #cccccc !important;
  background-color: #5a5a5a !important;
  border-color: #5a5a5a !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #cccccc !important;
  background-color: #5a5a5a !important;
  border-color: #5a5a5a !important;
}
.btn-warning:hover,
.btn-warning:focus {
  background-color: #94f1b6 !important;
  box-shadow: none !important;
}
.btn-danger {
  border: 0px !important;
  color: #ffffff;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #cccccc !important;
}
.btn-danger:hover {
  color: #cccccc !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #cccccc !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger:hover,
.btn-danger:focus {
  background-color: #94f1b6 !important;
  box-shadow: none !important;
}
.btn-white {
  border: 0px !important;
  color: #ffffff;
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #cccccc !important;
}
.btn-white:hover {
  color: #cccccc !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #cccccc !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover,
.btn-white:focus {
  background-color: #94f1b6 !important;
  box-shadow: none !important;
}
.btn-black {
  border: 0px !important;
  color: #ffffff;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #cccccc !important;
}
.btn-black:hover {
  color: #cccccc !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #cccccc !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover,
.btn-black:focus {
  background-color: #94f1b6 !important;
  box-shadow: none !important;
}
.btn-primary-outline {
  background-color: transparent !important;
  border: 2px solid #03579e !important;
  color: #ffffff !important;
  color: #03579e !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #03579e;
  color: #03579e;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #03579e;
  border-color: #03579e;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #03579e !important;
  border-color: #03579e !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus {
  background-color: #03579e !important;
  color: #cccccc !important;
}
.btn-primary-outline:hover {
  color: #cccccc !important;
}
.btn-secondary-outline {
  background-color: transparent !important;
  border: 2px solid #03579e !important;
  color: #ffffff !important;
  color: #03579e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #03579e;
  color: #03579e;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #03579e;
  border-color: #03579e;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #03579e !important;
  border-color: #03579e !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  background-color: #03579e !important;
  color: #cccccc !important;
}
.btn-secondary-outline:hover {
  color: #ffffff !important;
}
.btn-info-outline {
  background-color: transparent !important;
  border: 2px solid #cccccc !important;
  color: #ffffff !important;
  color: #cccccc !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #4d4d4d;
  background-color: #cccccc;
  border-color: #cccccc;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #4d4d4d !important;
  background-color: #cccccc !important;
  border-color: #cccccc !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus {
  background-color: #cccccc !important;
  color: #cccccc !important;
}
.btn-info-outline:hover {
  color: #ffffff !important;
}
.btn-success-outline {
  background-color: transparent !important;
  border: 2px solid #80c5ff !important;
  color: #ffffff !important;
  color: #80c5ff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #80c5ff;
  color: #80c5ff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #80c5ff;
  border-color: #80c5ff;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #80c5ff !important;
  border-color: #80c5ff !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus {
  background-color: #80c5ff !important;
  color: #cccccc !important;
}
.btn-success-outline:hover {
  color: #ffffff !important;
}
.btn-warning-outline {
  background-color: transparent !important;
  border: 2px solid #808080 !important;
  color: #ffffff !important;
  color: #808080 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #808080;
  color: #808080;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #808080;
  border-color: #808080;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #808080 !important;
  border-color: #808080 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus {
  background-color: #808080 !important;
  color: #cccccc !important;
}
.btn-warning-outline:hover {
  color: #ffffff !important;
}
.btn-danger-outline {
  background-color: transparent !important;
  border: 2px solid #b1a374 !important;
  color: #ffffff !important;
  color: #b1a374 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #b1a374;
  color: #b1a374;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus {
  background-color: #b1a374 !important;
  color: #cccccc !important;
}
.btn-danger-outline:hover {
  color: #ffffff !important;
}
.btn-black-outline {
  background-color: transparent !important;
  border: 2px solid #333333 !important;
  color: #ffffff !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus {
  background-color: #333333 !important;
  color: #cccccc !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #03579e !important;
}
.text-secondary {
  color: #03579e !important;
}
.text-success {
  color: #80c5ff !important;
}
.text-info {
  color: #cccccc !important;
}
.text-warning {
  color: #808080 !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #0d8dfa !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #0d8dfa !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #e6f4ff !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #b3b3b3 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #d6ceb5 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #03579e;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #cccccc;
}
.alert-warning {
  background-color: #808080;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-gallery-filter li.active .btn {
  background-color: #03579e;
  border-color: #03579e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #03579e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #2699fb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.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: #c0c0c0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.2rem;
  line-height: 1.7;
  font-weight: 500;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #03579e;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #03579e;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #03579e;
  border-bottom-color: #03579e;
}
.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: #03579e !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #03579e !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='%2303579e' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-u80YjQ2jMc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u80YjQ2jMc nav.navbar {
  position: fixed;
}
.cid-u80YjQ2jMc .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-u80YjQ2jMc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u80YjQ2jMc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u80YjQ2jMc .dropdown-item:hover,
.cid-u80YjQ2jMc .dropdown-item:focus {
  background: #03579e !important;
  color: white !important;
}
.cid-u80YjQ2jMc .dropdown-item:hover span {
  color: white;
}
.cid-u80YjQ2jMc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u80YjQ2jMc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u80YjQ2jMc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u80YjQ2jMc .nav-link {
  position: relative;
}
.cid-u80YjQ2jMc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u80YjQ2jMc .container {
    flex-wrap: nowrap;
  }
}
.cid-u80YjQ2jMc .navbar-nav {
  margin: 0 auto;
}
.cid-u80YjQ2jMc .dropdown-menu,
.cid-u80YjQ2jMc .navbar.opened {
  background: #ffffff !important;
}
.cid-u80YjQ2jMc .nav-item:focus,
.cid-u80YjQ2jMc .nav-link:focus {
  outline: none;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u80YjQ2jMc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u80YjQ2jMc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u80YjQ2jMc .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;
  border: none !important;
  box-shadow: none !important;
}
.cid-u80YjQ2jMc .navbar.opened {
  transition: all 0.3s;
}
.cid-u80YjQ2jMc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u80YjQ2jMc .navbar .navbar-logo img {
  width: auto;
}
.cid-u80YjQ2jMc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u80YjQ2jMc .navbar.collapsed {
  justify-content: center;
}
.cid-u80YjQ2jMc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u80YjQ2jMc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u80YjQ2jMc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u80YjQ2jMc .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-u80YjQ2jMc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u80YjQ2jMc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u80YjQ2jMc .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-u80YjQ2jMc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u80YjQ2jMc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u80YjQ2jMc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u80YjQ2jMc .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u80YjQ2jMc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u80YjQ2jMc .navbar.navbar-short {
  min-height: 60px;
}
.cid-u80YjQ2jMc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u80YjQ2jMc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u80YjQ2jMc .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u80YjQ2jMc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u80YjQ2jMc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u80YjQ2jMc .dropdown-item.active,
.cid-u80YjQ2jMc .dropdown-item:active {
  background-color: transparent;
}
.cid-u80YjQ2jMc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u80YjQ2jMc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u80YjQ2jMc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u80YjQ2jMc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u80YjQ2jMc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u80YjQ2jMc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u80YjQ2jMc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u80YjQ2jMc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u80YjQ2jMc .navbar {
    height: 70px;
  }
  .cid-u80YjQ2jMc .navbar.opened {
    height: auto;
  }
  .cid-u80YjQ2jMc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u80YjQ2jMc .container,
.cid-u80YjQ2jMc .container-fluid {
  position: relative;
  min-height: 108px;
}
.cid-u80YjQ2jMc .navbar-short {
  background-color: #ffffff !important;
}
.cid-u80YjQ2jMc .navbar-short .container,
.cid-u80YjQ2jMc .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-u80YjQ2jMc .navbar-short .container:before,
.cid-u80YjQ2jMc .navbar-short .container-fluid:before {
  display: none;
}
.cid-u80YjQ2jMc .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-u80YjQ2jMc .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-u80YjQ2jMc .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .navbar {
    overflow: hidden;
  }
  .cid-u80YjQ2jMc .container,
  .cid-u80YjQ2jMc .container-fluid {
    min-height: 85px;
  }
  .cid-u80YjQ2jMc .navbar-brand {
    min-height: 85px;
  }
  .cid-u80YjQ2jMc .navbar-short .container,
  .cid-u80YjQ2jMc .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-u80YjQ2jMc .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-u80YjQ2jMc .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-u80YjQ2jMc .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-u80YjQ2jMc .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-u80YjQ2jMc .mbr-section-btn {
    text-align: left;
  }
  .cid-u80YjQ2jMc .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-u80YjQ2jMc .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-u6MJFxSPi0 {
  background-color: #08487d;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-u6MJFxSPi0 .carousel {
  width: 100%;
}
.cid-u6MJFxSPi0 .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-u6MJFxSPi0 .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-u6MJFxSPi0 img,
.cid-u6MJFxSPi0 .item-wrapper {
  border-radius: 0 !important;
}
.cid-u6MJFxSPi0 .carousel-caption {
  bottom: 40px;
}
.cid-u6MJFxSPi0 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-u6MJFxSPi0 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-u6MJFxSPi0 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-u6MJFxSPi0 .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u6MJFxSPi0 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u6MJFxSPi0 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-u6MJFxSPi0 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u6MJFxSPi0 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u6MJFxSPi0 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u6MJFxSPi0 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u6MJFxSPi0 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u6MJFxSPi0 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-u6MJFxSPi0 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u6MJFxSPi0 .carousel-indicators li.active,
.cid-u6MJFxSPi0 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u6MJFxSPi0 .carousel-indicators li::after,
.cid-u6MJFxSPi0 .carousel-indicators li::before {
  content: none;
}
.cid-u6MJFxSPi0 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u6MJFxSPi0 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u6MJFxSPi0 .mbr-section-subtitle,
  .cid-u6MJFxSPi0 .mbr-section-text,
  .cid-u6MJFxSPi0 .mbr-section-btn {
    text-align: center;
  }
}
.cid-u6MJFxSPi0 .mbr-section-text,
.cid-u6MJFxSPi0 .mbr-section-btn {
  color: #000000;
  text-shadow: 2px 2px 4px black;
}
.cid-u6MJFxSPi0 H5 {
  color: #ffffff;
  text-shadow: 2px 2px 4px black;
  text-align: center;
}
.cid-u7yOtgFIWj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-u7yOtgFIWj .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yOtgFIWj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7yOtgFIWj .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-u7yOtgFIWj .mbr-section-title {
  color: #03579e;
}
.cid-u7yUGAf7k0 {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u7yUGAf7k0 .mbr-text {
  margin-bottom: 2.5rem;
}
.cid-u7yUGAf7k0 .mbr-section-title {
  color: #03579e;
  margin-bottom: 1.2rem;
  letter-spacing: -2.8px;
  text-align: left;
}
.cid-u7yUGAf7k0 img {
  height: 100%;
  object-fit: cover;
}
.cid-u7yUGAf7k0 .mbr-figure {
  height: 100%;
}
.cid-u7yUGAf7k0 .row {
  margin: 0;
  align-items: center;
}
.cid-u7yUGAf7k0 .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yUGAf7k0 .img-block {
    margin-top: 1rem;
    padding: 0;
  }
  .cid-u7yUGAf7k0 .text-block {
    margin-bottom: 1rem;
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-u7yUGAf7k0 .img-block {
    margin-top: 1rem;
    padding: 0;
  }
  .cid-u7yUGAf7k0 .text-block {
    margin-bottom: 1rem;
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-u7yUGAf7k0 .container {
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .cid-u7yUGAf7k0 .img-block {
    padding-left: 6rem;
  }
}
.cid-u7yUGAf7k0 .mbr-section-subtitle {
  font-weight: 700 !important;
}
.cid-u7yUGAf7k0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yUGAf7k0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7yUGAf7k0 .mbr-text,
.cid-u7yUGAf7k0 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-u7yV1FO0j2 {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u7yV1FO0j2 .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-u7yV1FO0j2 .mbr-text {
  margin-bottom: 2.5rem;
}
.cid-u7yV1FO0j2 .mbr-section-title {
  color: #03579e;
  margin-bottom: 1.2rem;
  letter-spacing: -2.8px;
  text-align: left;
}
.cid-u7yV1FO0j2 img {
  height: 100%;
  object-fit: cover;
}
.cid-u7yV1FO0j2 .mbr-figure {
  height: 100%;
}
.cid-u7yV1FO0j2 .row {
  margin: 0;
  align-items: center;
}
.cid-u7yV1FO0j2 .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yV1FO0j2 .img-block {
    margin-top: 1rem;
    padding: 0;
  }
  .cid-u7yV1FO0j2 .text-block {
    margin-bottom: 1rem;
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-u7yV1FO0j2 .img-block {
    margin-top: 1rem;
    padding: 0;
  }
  .cid-u7yV1FO0j2 .text-block {
    margin-bottom: 1rem;
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-u7yV1FO0j2 .container {
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .cid-u7yV1FO0j2 .img-block {
    padding-left: 6rem;
  }
}
.cid-u7yV1FO0j2 .mbr-section-subtitle {
  font-weight: 700 !important;
}
.cid-u7yV1FO0j2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yV1FO0j2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7yV1FO0j2 .mbr-text,
.cid-u7yV1FO0j2 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-u7yV2gUa1S {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u7yV2gUa1S .mbr-text {
  margin-bottom: 2.5rem;
}
.cid-u7yV2gUa1S .mbr-section-title {
  color: #03579e;
  margin-bottom: 1.2rem;
  letter-spacing: -2.8px;
  text-align: left;
}
.cid-u7yV2gUa1S img {
  height: 100%;
  object-fit: cover;
}
.cid-u7yV2gUa1S .mbr-figure {
  height: 100%;
}
.cid-u7yV2gUa1S .row {
  margin: 0;
  align-items: center;
}
.cid-u7yV2gUa1S .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yV2gUa1S .img-block {
    margin-top: 1rem;
    padding: 0;
  }
  .cid-u7yV2gUa1S .text-block {
    margin-bottom: 1rem;
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-u7yV2gUa1S .img-block {
    margin-top: 1rem;
    padding: 0;
  }
  .cid-u7yV2gUa1S .text-block {
    margin-bottom: 1rem;
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-u7yV2gUa1S .container {
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .cid-u7yV2gUa1S .img-block {
    padding-left: 6rem;
  }
}
.cid-u7yV2gUa1S .mbr-section-subtitle {
  font-weight: 700 !important;
}
.cid-u7yV2gUa1S .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yV2gUa1S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7yV2gUa1S .mbr-text,
.cid-u7yV2gUa1S .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-u7yV2Pq2Pw {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-u7yV2Pq2Pw .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-u7yV2Pq2Pw .mbr-text {
  margin-bottom: 2.5rem;
}
.cid-u7yV2Pq2Pw .mbr-section-title {
  color: #03579e;
  margin-bottom: 1.2rem;
  letter-spacing: -2.8px;
  text-align: left;
}
.cid-u7yV2Pq2Pw img {
  height: 100%;
  object-fit: cover;
}
.cid-u7yV2Pq2Pw .mbr-figure {
  height: 100%;
}
.cid-u7yV2Pq2Pw .row {
  margin: 0;
  align-items: center;
}
.cid-u7yV2Pq2Pw .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yV2Pq2Pw .img-block {
    margin-top: 1rem;
    padding: 0;
  }
  .cid-u7yV2Pq2Pw .text-block {
    margin-bottom: 1rem;
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-u7yV2Pq2Pw .img-block {
    margin-top: 1rem;
    padding: 0;
  }
  .cid-u7yV2Pq2Pw .text-block {
    margin-bottom: 1rem;
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-u7yV2Pq2Pw .container {
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .cid-u7yV2Pq2Pw .img-block {
    padding-left: 6rem;
  }
}
.cid-u7yV2Pq2Pw .mbr-section-subtitle {
  font-weight: 700 !important;
}
.cid-u7yV2Pq2Pw .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yV2Pq2Pw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7yV2Pq2Pw .mbr-text,
.cid-u7yV2Pq2Pw .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-u6MOVslD0S {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-u6MOVslD0S .mbr-section-subtitle {
  color: #80c5ff;
  font-weight: 700;
}
.cid-u6MOVslD0S .mbr-text {
  color: #777777;
  margin-top: 1.2rem;
}
.cid-u6MOVslD0S .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6MOVslD0S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6MOVslD0S H3 {
  color: #08487d;
}
.cid-u6MOVslD0S .mbr-text,
.cid-u6MOVslD0S .mbr-section-btn {
  color: #000000;
}
.cid-u6MPIaWOKL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6MPIaWOKL .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6MPIaWOKL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6MPIaWOKL .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-u6MPIaWOKL .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-u6MPIaWOKL .container {
    padding: 0 22px;
  }
}
.cid-u6MPIaWOKL .row {
  justify-content: center;
  margin: 0 -6px;
}
.cid-u6MPIaWOKL .item {
  padding: 0 6px;
  margin-bottom: 12px;
}
.cid-u6MPIaWOKL .item .item-wrapper .item-img {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 480px;
  padding: 32px;
}
@media (max-width: 768px) {
  .cid-u6MPIaWOKL .item .item-wrapper .item-img {
    height: 400px;
  }
}
.cid-u6MPIaWOKL .item .item-wrapper .item-img:hover::before,
.cid-u6MPIaWOKL .item .item-wrapper .item-img:focus::before {
  opacity: 0;
}
.cid-u6MPIaWOKL .item .item-wrapper .item-img:hover .item-content,
.cid-u6MPIaWOKL .item .item-wrapper .item-img:focus .item-content {
  transform: translateY(-2rem);
}
.cid-u6MPIaWOKL .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u6MPIaWOKL .item .item-wrapper .item-img::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: .5;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}
.cid-u6MPIaWOKL .item .item-wrapper .item-img .item-content {
  position: relative;
  z-index: 1;
  transition: all 0.5s ease-in-out;
  width: 100%;
}
.cid-u6MPIaWOKL .item .item-wrapper .item-img .item-content .card-title {
  margin-bottom: 16px;
}
.cid-u6MPIaWOKL .item .item-wrapper .item-img .item-content .card-text {
  margin-bottom: 0;
}
.cid-u6MPIaWOKL .card-title {
  color: #ffffff;
  text-shadow: 2px 2px 4px black;
}
.cid-u6MPIaWOKL .card-text {
  color: #ffffff;
}
.cid-rUTpGH0hGw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #03579e;
}
.cid-rUTpGH0hGw .mbr-iconfont {
  font-size: 80px;
}
.cid-rUTpGH0hGw h3 {
  text-align: center;
}
.cid-rUTpGH0hGw .card {
  word-wrap: break-word;
}
@media (min-width: 1200px) {
  .cid-rUTpGH0hGw .panel-item {
    padding: 0 2.8rem;
  }
}
.cid-rUTpGH0hGw H3 {
  color: #ffffff;
}
.cid-rUTpGH0hGw H4 {
  color: #ffffff;
}
.cid-u6MTydRCU6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u6MTydRCU6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6MTydRCU6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6MTydRCU6 .row {
  justify-content: center;
}
.cid-u6MTydRCU6 .video-wrapper iframe {
  width: 100%;
}
.cid-u6MTydRCU6 .title-wrapper {
  margin-bottom: 32px;
}
.cid-u6MTydRCU6 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u6MTydRCU6 .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-u6MTydRCU6 .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #08487d;
  z-index: -1;
}
.cid-u6MTydRCU6 .video-block {
  max-height: 300px;
}
@media (max-width: 992px) {
  .cid-u6MTydRCU6 .video-block {
    margin-bottom: 24px;
  }
}
.cid-u6MTydRCU6 .mbr-figure__img {
  max-height: 300px;
  object-fit: cover;
}
.cid-u6MTydRCU6 .mbr-section-title {
  color: #08487d;
  text-align: center;
}
.cid-u6MZNZivW1 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
  position: relative;
  margin-top: -1px;
}
.cid-u6MZNZivW1 .section-border-item {
  background-color: #08487d;
  z-index: 1;
}
.cid-u6MZNZivW1 .mbr-section-head {
  width: 100%;
  padding-bottom: 5rem;
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .cid-u6MZNZivW1 .mbr-section-head {
    padding-bottom: 4.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u6MZNZivW1 .mbr-section-head {
    padding-bottom: 3rem;
    margin-bottom: 2rem;
  }
}
.cid-u6MZNZivW1 .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 0;
}
.cid-u6MZNZivW1 .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1.5rem;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-u6MZNZivW1 .mbr-section-subtitle {
    margin-top: 1.25rem;
  }
}
.cid-u6MZNZivW1 .box {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}
.cid-u6MZNZivW1 .mbr-media {
  width: 100%;
  position: relative;
}
.cid-u6MZNZivW1 .mbr-media img {
  width: 100%;
  height: auto;
  max-height: 100vh;
  max-width: 100%;
  object-fit: cover;
}
.cid-u6MZNZivW1 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u6MZNZivW1 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: 0.3s all;
}
.cid-u6MZNZivW1 .icon-wrap:hover {
  transform: translate(-50%, -55%);
}
.cid-u6MZNZivW1 .icon-wrap a .mbr-iconfont {
  color: #fcdb42;
  font-size: 7.5vw !important;
}
@media (max-width: 991px) {
  .cid-u6MZNZivW1 .icon-wrap a .mbr-iconfont {
    font-size: 10.5vw !important;
  }
}
@media (max-width: 575px) {
  .cid-u6MZNZivW1 .icon-wrap a .mbr-iconfont {
    font-size: 12.3vw !important;
  }
}
.cid-u6MZNZivW1 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u6MZNZivW1 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u6MZNZivW1 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u6MZNZivW1 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u6MZNZivW1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u6ftkzkis6 {
  padding-top: 270px;
  padding-bottom: 270px;
  background-image: url("../../../assets/images/libro-2000x1124.jpg");
}
.cid-u6ftkzkis6 .mbr-section-title {
  font-family: 'Quicksand', sans-serif;
}
.cid-u6ftkzkis6 .promo-primary-description {
  position: absolute;
  bottom: 0rem;
  width: 100%;
  text-align: right;
}
.cid-u6ftkzkis6 .mbr-section-subtitle {
  margin-bottom: 1rem;
  font-family: 'Quicksand', sans-serif;
}
.cid-u6ftkzkis6 .container::before {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  bottom: -35px;
  width: 75px;
  left: 16px;
  background-color: #08487d;
}
.cid-u6ftkzkis6 .container::after {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  width: 25px;
  left: 96px;
  background-color: #08487d;
  bottom: -35px;
}
@media (max-width: 992px) {
  .cid-u6ftkzkis6 .promo-primary-description {
    padding-right: 2rem;
  }
}
@media (min-width: 1200px) {
  .cid-u6ftkzkis6 .bottom-title {
    margin-right: 9rem;
    font-size: 150px;
  }
}
.cid-u6ftkzkis6 .bottom-title {
  letter-spacing: 0px;
}
.cid-u6ftkzkis6 .mbr-section-btn {
  margin-top: 1.8rem;
}
.cid-u6ftkzkis6 .btn-primary-outline {
  color: #ffffff !important;
}
.cid-u6ftkzkis6 .btn {
  margin-left: 0rem;
  margin-right: 1rem;
}
.cid-u6ftkzkis6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6ftkzkis6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6ftkzkis6 H4 {
  color: #80c5ff;
}
.cid-rUTpHPmDUm {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rUTpHPmDUm .mbr-overlay {
  background-color: #232323;
  opacity: 0.5;
}
.cid-rUTpHPmDUm .mbr-section-subtitle {
  font-weight: 700 !important;
  color: #80c5ff;
  margin-bottom: 0.7rem;
}
.cid-rUTpHPmDUm input,
.cid-rUTpHPmDUm textarea {
  font-size: 14px;
}
.cid-rUTpHPmDUm input {
  padding: 1.5rem 1.8rem!important;
  border-radius: 50px;
}
.cid-rUTpHPmDUm textarea {
  padding: 0.9rem 2rem!important;
  border-radius: 30px;
  height: 100%;
}
.cid-rUTpHPmDUm .form-group {
  margin-bottom: 1.9rem;
  padding: 0rem;
}
.cid-rUTpHPmDUm .col-auto {
  width: 100%;
  text-align: center;
}
.cid-rUTpHPmDUm img {
  width: 90%;
  border-radius: 8px;
}
.cid-rUTpHPmDUm .mbr-form .btn {
  margin: .4rem .4rem;
  margin-left: 0rem;
}
.cid-rUTpHPmDUm .btn {
  padding: 1rem 3.5rem!important;
}
.cid-rUTpHPmDUm .title-block {
  margin-bottom: 2rem;
}
.cid-rUTpHPmDUm .form-control,
.cid-rUTpHPmDUm .field-input {
  background-color: #ffffff;
  border-color: #e2e3e7;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-rUTpHPmDUm .form-control:hover,
.cid-rUTpHPmDUm .field-input:hover {
  background-color: #e2e3e7;
  border-color: #e2e3e7;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-rUTpHPmDUm .form-control:focus,
.cid-rUTpHPmDUm .field-input:focus {
  background-color: #ffffff;
  border-color: #e2e3e7;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-rUTpHPmDUm input::-webkit-input-placeholder,
.cid-rUTpHPmDUm textarea::-webkit-input-placeholder {
  color: #807d78;
}
.cid-rUTpHPmDUm input:-moz-placeholder,
.cid-rUTpHPmDUm textarea:-moz-placeholder {
  color: #807d78;
}
.cid-rUTpHPmDUm .jq-selectbox li,
.cid-rUTpHPmDUm .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-rUTpHPmDUm .jq-selectbox li:hover,
.cid-rUTpHPmDUm .jq-selectbox li.selected {
  background-color: #e2e3e7;
  color: #000000;
}
.cid-rUTpHPmDUm .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-rUTpHPmDUm .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #e2e3e7;
}
.cid-rUTpHPmDUm H5 {
  padding-bottom: 2rem;
  color: #03579e;
}
.cid-rUTpHPmDUm .mbr-text {
  color: #777777;
}
.cid-rUTpHPmDUm .mbr-form {
  padding: 0rem;
}
.cid-rUTpHPmDUm .btn-form {
  margin-top: 0.2rem;
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .cid-rUTpHPmDUm .form-row {
    margin: 0;
  }
  .cid-rUTpHPmDUm .btn-form {
    width: 100%;
    padding-right: 1rem;
  }
  .cid-rUTpHPmDUm .btn {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-rUTpHPmDUm img {
    width: 100%;
  }
}
.cid-rUTpHPmDUm .form-row > [class*=col-] {
  padding: 0 1rem;
}
.cid-rUTpJyOYUP {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #03579e;
}
.cid-rUTpJyOYUP .mbr-section-subtitle {
  color: #999999;
  font-weight: 700;
}
.cid-rUTpJyOYUP .mbr-text {
  color: #777777;
  margin-top: 1.2rem;
}
.cid-rUTpJyOYUP H2 {
  color: #ffffff;
}
.cid-rUTpK0ygK3 {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #03579e;
}
.cid-rUTpK0ygK3 .mbr-iconfont-2 {
  color: #42474c !important;
  margin: 0 0.5rem;
}
.cid-rUTpK0ygK3 .mbr-iconfont-1 {
  font-size: 3.1rem;
  color: #42474c;
}
.cid-rUTpK0ygK3 .social-list {
  display: flex;
  justify-content: center;
}
.cid-rUTpK0ygK3 .card-inner {
  transition: 0.7s;
}
.cid-rUTpK0ygK3 .btn {
  margin-left: 0rem;
}
.cid-rUTpK0ygK3 .row {
  padding-bottom: 8rem;
}
.cid-rUTpK0ygK3 .link {
  margin: 0;
}
.cid-rUTpK0ygK3 .card-title {
  position: relative;
}
.cid-rUTpK0ygK3 .mbr-text {
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.cid-rUTpK0ygK3 .card-box {
  position: relative;
}
.cid-rUTpK0ygK3 .card-img {
  margin-bottom: 1.5rem;
}
.cid-rUTpK0ygK3 .mbr-section-title {
  margin-bottom: 1.5rem;
}
@media (max-width: 992px) {
  .cid-rUTpK0ygK3 .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-rUTpK0ygK3 .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-rUTpK0ygK3 .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-rUTpK0ygK3 .mbr-text,
.cid-rUTpK0ygK3 .link {
  color: #ffffff;
}
.cid-rUTpL6oEdG {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #08487d;
}
.cid-rUTpL6oEdG .media-container-row {
  align-items: center;
}
.cid-rUTpL6oEdG .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-rUTpL6oEdG .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-rUTpL6oEdG .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-rUTpL6oEdG .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-rUTpL6oEdG .foot-menu-item {
  transform: 0.2s;
}
.cid-rUTpL6oEdG .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-rUTpL6oEdG .foot-menu {
    justify-content: center;
  }
  .cid-rUTpL6oEdG .mbr-text {
    text-align: center;
  }
  .cid-rUTpL6oEdG .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-rUTpL6oEdG .foot-menu {
    justify-content: flex-end;
  }
}
.cid-rUTpL6oEdG .link:hover {
  text-decoration: underline;
}
.cid-rUTpL6oEdG .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #a3a3a3;
}
.cid-rUTpL6oEdG .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-rUTpL6oEdG .container {
    padding: 0;
  }
}
.cid-rUTpL6oEdG .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-u6fxdyKV1M {
  background-image: url("../../../assets/images/e23a4406-2000x1333.jpeg");
}
.cid-u6fxdyKV1M .mbr-overlay {
  background: #444444;
}
.cid-u6fxdyKV1M .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-u6fxdyKV1M .mbr-section-subtitle,
.cid-u6fxdyKV1M mbr-section-btn {
  color: #ffffff;
}
.cid-u6fxdyKV1M B {
  color: #333333;
}
.cid-u6fxdyKV1M H1 {
  color: #ffffff;
  text-shadow: 2px 2px 4px black;
}
.cid-u6OrU7jlbw {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-u6OrU7jlbw .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6OrU7jlbw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6OrU7jlbw .mbr-section-subtitle {
  color: #08487d;
  text-align: center;
}
.cid-u6OrU7jlbw .mbr-section-title {
  color: #c34fce;
}
.cid-u6fwM7czCf {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u6fwM7czCf .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6fwM7czCf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6fwM7czCf .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-u6fwM7czCf .mbr-section-title {
  color: #c34fce;
}
.cid-u6fvuxRycV {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-u6fvuxRycV .mbr-text {
  margin-bottom: 2.5rem;
}
.cid-u6fvuxRycV .mbr-section-title {
  color: #08487d;
  margin-bottom: 1.2rem;
  letter-spacing: -2.8px;
}
.cid-u6fvuxRycV img {
  height: 100%;
  object-fit: cover;
}
.cid-u6fvuxRycV .mbr-figure {
  height: 100%;
}
.cid-u6fvuxRycV .row {
  margin: 0;
  align-items: center;
}
.cid-u6fvuxRycV .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-u6fvuxRycV .img-block {
    margin-top: 1rem;
    padding: 0;
  }
  .cid-u6fvuxRycV .text-block {
    margin-bottom: 1rem;
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-u6fvuxRycV .img-block {
    margin-top: 1rem;
    padding: 0;
  }
  .cid-u6fvuxRycV .text-block {
    margin-bottom: 1rem;
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-u6fvuxRycV .container {
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .cid-u6fvuxRycV .img-block {
    padding-left: 6rem;
  }
}
.cid-u6fvuxRycV .mbr-section-subtitle {
  font-weight: 700 !important;
}
.cid-u6fvuxRycV .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6fvuxRycV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6fvuxRycV .mbr-text,
.cid-u6fvuxRycV .mbr-section-btn {
  color: #000000;
}
.cid-u6fxrDHf3Y {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/sfondo-home-1920x1081.jpg");
}
.cid-u6fxrDHf3Y .mbr-overlay {
  background: #444444;
}
.cid-u6fxrDHf3Y .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-u6fxrDHf3Y .mbr-section-subtitle,
.cid-u6fxrDHf3Y mbr-section-btn {
  color: #ffffff;
}
.cid-u6fxrDHf3Y B {
  color: #333333;
}
.cid-u6fxrDHf3Y H1 {
  color: #ffffff;
  text-shadow: 2px 2px 4px black;
}
.cid-u6fv0XXo9g {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-u6fv0XXo9g .mbr-overlay {
  background-color: #232323;
  opacity: 0.5;
}
.cid-u6fv0XXo9g .mbr-section-subtitle {
  font-weight: 700 !important;
  color: #80c5ff;
  margin-bottom: 0.7rem;
}
.cid-u6fv0XXo9g input,
.cid-u6fv0XXo9g textarea {
  font-size: 14px;
}
.cid-u6fv0XXo9g input {
  padding: 1.5rem 1.8rem!important;
  border-radius: 50px;
}
.cid-u6fv0XXo9g textarea {
  padding: 0.9rem 2rem!important;
  border-radius: 30px;
  height: 100%;
}
.cid-u6fv0XXo9g .form-group {
  margin-bottom: 1.9rem;
  padding: 0rem;
}
.cid-u6fv0XXo9g .col-auto {
  width: 100%;
  text-align: center;
}
.cid-u6fv0XXo9g img {
  width: 90%;
  border-radius: 8px;
}
.cid-u6fv0XXo9g .mbr-form .btn {
  margin: .4rem .4rem;
  margin-left: 0rem;
}
.cid-u6fv0XXo9g .btn {
  padding: 1rem 3.5rem!important;
}
.cid-u6fv0XXo9g .title-block {
  margin-bottom: 2rem;
}
.cid-u6fv0XXo9g .form-control,
.cid-u6fv0XXo9g .field-input {
  background-color: #ffffff;
  border-color: #e2e3e7;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-u6fv0XXo9g .form-control:hover,
.cid-u6fv0XXo9g .field-input:hover {
  background-color: #e2e3e7;
  border-color: #e2e3e7;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-u6fv0XXo9g .form-control:focus,
.cid-u6fv0XXo9g .field-input:focus {
  background-color: #ffffff;
  border-color: #e2e3e7;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-u6fv0XXo9g input::-webkit-input-placeholder,
.cid-u6fv0XXo9g textarea::-webkit-input-placeholder {
  color: #807d78;
}
.cid-u6fv0XXo9g input:-moz-placeholder,
.cid-u6fv0XXo9g textarea:-moz-placeholder {
  color: #807d78;
}
.cid-u6fv0XXo9g .jq-selectbox li,
.cid-u6fv0XXo9g .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-u6fv0XXo9g .jq-selectbox li:hover,
.cid-u6fv0XXo9g .jq-selectbox li.selected {
  background-color: #e2e3e7;
  color: #000000;
}
.cid-u6fv0XXo9g .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-u6fv0XXo9g .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #e2e3e7;
}
.cid-u6fv0XXo9g H5 {
  padding-bottom: 2rem;
  color: #03579e;
}
.cid-u6fv0XXo9g .mbr-text {
  color: #777777;
}
.cid-u6fv0XXo9g .mbr-form {
  padding: 0rem;
}
.cid-u6fv0XXo9g .btn-form {
  margin-top: 0.2rem;
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .cid-u6fv0XXo9g .form-row {
    margin: 0;
  }
  .cid-u6fv0XXo9g .btn-form {
    width: 100%;
    padding-right: 1rem;
  }
  .cid-u6fv0XXo9g .btn {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-u6fv0XXo9g img {
    width: 100%;
  }
}
.cid-u6fv0XXo9g .form-row > [class*=col-] {
  padding: 0 1rem;
}
.cid-u6fv0YpeLu {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #03579e;
}
.cid-u6fv0YpeLu .mbr-section-subtitle {
  color: #999999;
  font-weight: 700;
}
.cid-u6fv0YpeLu .mbr-text {
  color: #777777;
  margin-top: 1.2rem;
}
.cid-u6fv0YpeLu H2 {
  color: #ffffff;
}
.cid-u6fv0YOeYe {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #03579e;
}
.cid-u6fv0YOeYe .mbr-iconfont-2 {
  color: #42474c !important;
  margin: 0 0.5rem;
}
.cid-u6fv0YOeYe .mbr-iconfont-1 {
  font-size: 3.1rem;
  color: #42474c;
}
.cid-u6fv0YOeYe .social-list {
  display: flex;
  justify-content: center;
}
.cid-u6fv0YOeYe .card-inner {
  transition: 0.7s;
}
.cid-u6fv0YOeYe .btn {
  margin-left: 0rem;
}
.cid-u6fv0YOeYe .row {
  padding-bottom: 8rem;
}
.cid-u6fv0YOeYe .link {
  margin: 0;
}
.cid-u6fv0YOeYe .card-title {
  position: relative;
}
.cid-u6fv0YOeYe .mbr-text {
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.cid-u6fv0YOeYe .card-box {
  position: relative;
}
.cid-u6fv0YOeYe .card-img {
  margin-bottom: 1.5rem;
}
.cid-u6fv0YOeYe .mbr-section-title {
  margin-bottom: 1.5rem;
}
@media (max-width: 992px) {
  .cid-u6fv0YOeYe .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-u6fv0YOeYe .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u6fv0YOeYe .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-u6fv0YOeYe .mbr-text,
.cid-u6fv0YOeYe .link {
  color: #ffffff;
}
.cid-u6fv0ZnsWx {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #08487d;
}
.cid-u6fv0ZnsWx .media-container-row {
  align-items: center;
}
.cid-u6fv0ZnsWx .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u6fv0ZnsWx .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u6fv0ZnsWx .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u6fv0ZnsWx .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-u6fv0ZnsWx .foot-menu-item {
  transform: 0.2s;
}
.cid-u6fv0ZnsWx .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-u6fv0ZnsWx .foot-menu {
    justify-content: center;
  }
  .cid-u6fv0ZnsWx .mbr-text {
    text-align: center;
  }
  .cid-u6fv0ZnsWx .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-u6fv0ZnsWx .foot-menu {
    justify-content: flex-end;
  }
}
.cid-u6fv0ZnsWx .link:hover {
  text-decoration: underline;
}
.cid-u6fv0ZnsWx .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #a3a3a3;
}
.cid-u6fv0ZnsWx .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-u6fv0ZnsWx .container {
    padding: 0;
  }
}
.cid-u6fv0ZnsWx .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-u80YjQ2jMc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u80YjQ2jMc nav.navbar {
  position: fixed;
}
.cid-u80YjQ2jMc .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-u80YjQ2jMc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u80YjQ2jMc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u80YjQ2jMc .dropdown-item:hover,
.cid-u80YjQ2jMc .dropdown-item:focus {
  background: #03579e !important;
  color: white !important;
}
.cid-u80YjQ2jMc .dropdown-item:hover span {
  color: white;
}
.cid-u80YjQ2jMc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u80YjQ2jMc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u80YjQ2jMc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u80YjQ2jMc .nav-link {
  position: relative;
}
.cid-u80YjQ2jMc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u80YjQ2jMc .container {
    flex-wrap: nowrap;
  }
}
.cid-u80YjQ2jMc .navbar-nav {
  margin: 0 auto;
}
.cid-u80YjQ2jMc .dropdown-menu,
.cid-u80YjQ2jMc .navbar.opened {
  background: #ffffff !important;
}
.cid-u80YjQ2jMc .nav-item:focus,
.cid-u80YjQ2jMc .nav-link:focus {
  outline: none;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u80YjQ2jMc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u80YjQ2jMc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u80YjQ2jMc .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;
  border: none !important;
  box-shadow: none !important;
}
.cid-u80YjQ2jMc .navbar.opened {
  transition: all 0.3s;
}
.cid-u80YjQ2jMc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u80YjQ2jMc .navbar .navbar-logo img {
  width: auto;
}
.cid-u80YjQ2jMc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u80YjQ2jMc .navbar.collapsed {
  justify-content: center;
}
.cid-u80YjQ2jMc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u80YjQ2jMc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u80YjQ2jMc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u80YjQ2jMc .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-u80YjQ2jMc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u80YjQ2jMc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u80YjQ2jMc .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-u80YjQ2jMc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u80YjQ2jMc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u80YjQ2jMc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u80YjQ2jMc .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u80YjQ2jMc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u80YjQ2jMc .navbar.navbar-short {
  min-height: 60px;
}
.cid-u80YjQ2jMc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u80YjQ2jMc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u80YjQ2jMc .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u80YjQ2jMc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u80YjQ2jMc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u80YjQ2jMc .dropdown-item.active,
.cid-u80YjQ2jMc .dropdown-item:active {
  background-color: transparent;
}
.cid-u80YjQ2jMc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u80YjQ2jMc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u80YjQ2jMc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u80YjQ2jMc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u80YjQ2jMc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u80YjQ2jMc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u80YjQ2jMc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u80YjQ2jMc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u80YjQ2jMc .navbar {
    height: 70px;
  }
  .cid-u80YjQ2jMc .navbar.opened {
    height: auto;
  }
  .cid-u80YjQ2jMc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u80YjQ2jMc .container,
.cid-u80YjQ2jMc .container-fluid {
  position: relative;
  min-height: 108px;
}
.cid-u80YjQ2jMc .navbar-short {
  background-color: #ffffff !important;
}
.cid-u80YjQ2jMc .navbar-short .container,
.cid-u80YjQ2jMc .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-u80YjQ2jMc .navbar-short .container:before,
.cid-u80YjQ2jMc .navbar-short .container-fluid:before {
  display: none;
}
.cid-u80YjQ2jMc .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-u80YjQ2jMc .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-u80YjQ2jMc .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .navbar {
    overflow: hidden;
  }
  .cid-u80YjQ2jMc .container,
  .cid-u80YjQ2jMc .container-fluid {
    min-height: 85px;
  }
  .cid-u80YjQ2jMc .navbar-brand {
    min-height: 85px;
  }
  .cid-u80YjQ2jMc .navbar-short .container,
  .cid-u80YjQ2jMc .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-u80YjQ2jMc .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-u80YjQ2jMc .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-u80YjQ2jMc .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-u80YjQ2jMc .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-u80YjQ2jMc .mbr-section-btn {
    text-align: left;
  }
  .cid-u80YjQ2jMc .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-u80YjQ2jMc .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-u70cnbyR0j {
  background-image: url("../../../assets/images/mbr-1920x1272.jpg");
}
.cid-u70cnbyR0j .mbr-overlay {
  background: #444444;
}
.cid-u70cnbyR0j .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-u70cnbyR0j .mbr-section-subtitle,
.cid-u70cnbyR0j mbr-section-btn {
  color: #ffffff;
}
.cid-u70cnbyR0j B {
  color: #333333;
}
.cid-u70cnbyR0j H1 {
  color: #ffffff;
  text-shadow: 2px 2px 4px black;
}
.cid-u70cneDbFg {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #03579e;
}
.cid-u70cneDbFg .mbr-section-subtitle {
  color: #999999;
  font-weight: 700;
}
.cid-u70cneDbFg .mbr-text {
  color: #777777;
  margin-top: 1.2rem;
}
.cid-u70cneDbFg H2 {
  color: #ffffff;
}
.cid-u70cneXsbZ {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #03579e;
}
.cid-u70cneXsbZ .mbr-iconfont-2 {
  color: #42474c !important;
  margin: 0 0.5rem;
}
.cid-u70cneXsbZ .mbr-iconfont-1 {
  font-size: 3.1rem;
  color: #42474c;
}
.cid-u70cneXsbZ .social-list {
  display: flex;
  justify-content: center;
}
.cid-u70cneXsbZ .card-inner {
  transition: 0.7s;
}
.cid-u70cneXsbZ .btn {
  margin-left: 0rem;
}
.cid-u70cneXsbZ .row {
  padding-bottom: 8rem;
}
.cid-u70cneXsbZ .link {
  margin: 0;
}
.cid-u70cneXsbZ .card-title {
  position: relative;
}
.cid-u70cneXsbZ .mbr-text {
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.cid-u70cneXsbZ .card-box {
  position: relative;
}
.cid-u70cneXsbZ .card-img {
  margin-bottom: 1.5rem;
}
.cid-u70cneXsbZ .mbr-section-title {
  margin-bottom: 1.5rem;
}
@media (max-width: 992px) {
  .cid-u70cneXsbZ .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-u70cneXsbZ .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u70cneXsbZ .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-u70cneXsbZ .mbr-text,
.cid-u70cneXsbZ .link {
  color: #ffffff;
}
.cid-u70cneib3Q {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-u70cneib3Q .mbr-overlay {
  background-color: #232323;
  opacity: 0.5;
}
.cid-u70cneib3Q .mbr-section-subtitle {
  font-weight: 700 !important;
  color: #80c5ff;
  margin-bottom: 0.7rem;
}
.cid-u70cneib3Q input,
.cid-u70cneib3Q textarea {
  font-size: 14px;
}
.cid-u70cneib3Q input {
  padding: 1.5rem 1.8rem!important;
  border-radius: 50px;
}
.cid-u70cneib3Q textarea {
  padding: 0.9rem 2rem!important;
  border-radius: 30px;
  height: 100%;
}
.cid-u70cneib3Q .form-group {
  margin-bottom: 1.9rem;
  padding: 0rem;
}
.cid-u70cneib3Q .col-auto {
  width: 100%;
  text-align: center;
}
.cid-u70cneib3Q img {
  width: 90%;
  border-radius: 8px;
}
.cid-u70cneib3Q .mbr-form .btn {
  margin: .4rem .4rem;
  margin-left: 0rem;
}
.cid-u70cneib3Q .btn {
  padding: 1rem 3.5rem!important;
}
.cid-u70cneib3Q .title-block {
  margin-bottom: 2rem;
}
.cid-u70cneib3Q .form-control,
.cid-u70cneib3Q .field-input {
  background-color: #ffffff;
  border-color: #e2e3e7;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-u70cneib3Q .form-control:hover,
.cid-u70cneib3Q .field-input:hover {
  background-color: #e2e3e7;
  border-color: #e2e3e7;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-u70cneib3Q .form-control:focus,
.cid-u70cneib3Q .field-input:focus {
  background-color: #ffffff;
  border-color: #e2e3e7;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-u70cneib3Q input::-webkit-input-placeholder,
.cid-u70cneib3Q textarea::-webkit-input-placeholder {
  color: #807d78;
}
.cid-u70cneib3Q input:-moz-placeholder,
.cid-u70cneib3Q textarea:-moz-placeholder {
  color: #807d78;
}
.cid-u70cneib3Q .jq-selectbox li,
.cid-u70cneib3Q .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-u70cneib3Q .jq-selectbox li:hover,
.cid-u70cneib3Q .jq-selectbox li.selected {
  background-color: #e2e3e7;
  color: #000000;
}
.cid-u70cneib3Q .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-u70cneib3Q .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #e2e3e7;
}
.cid-u70cneib3Q H5 {
  padding-bottom: 2rem;
  color: #03579e;
}
.cid-u70cneib3Q .mbr-text {
  color: #777777;
}
.cid-u70cneib3Q .mbr-form {
  padding: 0rem;
}
.cid-u70cneib3Q .btn-form {
  margin-top: 0.2rem;
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .cid-u70cneib3Q .form-row {
    margin: 0;
  }
  .cid-u70cneib3Q .btn-form {
    width: 100%;
    padding-right: 1rem;
  }
  .cid-u70cneib3Q .btn {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-u70cneib3Q img {
    width: 100%;
  }
}
.cid-u70cneib3Q .form-row > [class*=col-] {
  padding: 0 1rem;
}
.cid-u70cnfr5ca {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #08487d;
}
.cid-u70cnfr5ca .media-container-row {
  align-items: center;
}
.cid-u70cnfr5ca .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u70cnfr5ca .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u70cnfr5ca .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u70cnfr5ca .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-u70cnfr5ca .foot-menu-item {
  transform: 0.2s;
}
.cid-u70cnfr5ca .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-u70cnfr5ca .foot-menu {
    justify-content: center;
  }
  .cid-u70cnfr5ca .mbr-text {
    text-align: center;
  }
  .cid-u70cnfr5ca .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-u70cnfr5ca .foot-menu {
    justify-content: flex-end;
  }
}
.cid-u70cnfr5ca .link:hover {
  text-decoration: underline;
}
.cid-u70cnfr5ca .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #a3a3a3;
}
.cid-u70cnfr5ca .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-u70cnfr5ca .container {
    padding: 0;
  }
}
.cid-u70cnfr5ca .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-u80YjQ2jMc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u80YjQ2jMc nav.navbar {
  position: fixed;
}
.cid-u80YjQ2jMc .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-u80YjQ2jMc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u80YjQ2jMc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u80YjQ2jMc .dropdown-item:hover,
.cid-u80YjQ2jMc .dropdown-item:focus {
  background: #03579e !important;
  color: white !important;
}
.cid-u80YjQ2jMc .dropdown-item:hover span {
  color: white;
}
.cid-u80YjQ2jMc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u80YjQ2jMc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u80YjQ2jMc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u80YjQ2jMc .nav-link {
  position: relative;
}
.cid-u80YjQ2jMc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u80YjQ2jMc .container {
    flex-wrap: nowrap;
  }
}
.cid-u80YjQ2jMc .navbar-nav {
  margin: 0 auto;
}
.cid-u80YjQ2jMc .dropdown-menu,
.cid-u80YjQ2jMc .navbar.opened {
  background: #ffffff !important;
}
.cid-u80YjQ2jMc .nav-item:focus,
.cid-u80YjQ2jMc .nav-link:focus {
  outline: none;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u80YjQ2jMc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u80YjQ2jMc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u80YjQ2jMc .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;
  border: none !important;
  box-shadow: none !important;
}
.cid-u80YjQ2jMc .navbar.opened {
  transition: all 0.3s;
}
.cid-u80YjQ2jMc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u80YjQ2jMc .navbar .navbar-logo img {
  width: auto;
}
.cid-u80YjQ2jMc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u80YjQ2jMc .navbar.collapsed {
  justify-content: center;
}
.cid-u80YjQ2jMc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u80YjQ2jMc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u80YjQ2jMc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u80YjQ2jMc .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-u80YjQ2jMc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u80YjQ2jMc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u80YjQ2jMc .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-u80YjQ2jMc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u80YjQ2jMc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u80YjQ2jMc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u80YjQ2jMc .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u80YjQ2jMc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u80YjQ2jMc .navbar.navbar-short {
  min-height: 60px;
}
.cid-u80YjQ2jMc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u80YjQ2jMc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u80YjQ2jMc .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u80YjQ2jMc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u80YjQ2jMc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u80YjQ2jMc .dropdown-item.active,
.cid-u80YjQ2jMc .dropdown-item:active {
  background-color: transparent;
}
.cid-u80YjQ2jMc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u80YjQ2jMc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u80YjQ2jMc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u80YjQ2jMc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u80YjQ2jMc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u80YjQ2jMc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u80YjQ2jMc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u80YjQ2jMc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u80YjQ2jMc .navbar {
    height: 70px;
  }
  .cid-u80YjQ2jMc .navbar.opened {
    height: auto;
  }
  .cid-u80YjQ2jMc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u80YjQ2jMc .container,
.cid-u80YjQ2jMc .container-fluid {
  position: relative;
  min-height: 108px;
}
.cid-u80YjQ2jMc .navbar-short {
  background-color: #ffffff !important;
}
.cid-u80YjQ2jMc .navbar-short .container,
.cid-u80YjQ2jMc .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-u80YjQ2jMc .navbar-short .container:before,
.cid-u80YjQ2jMc .navbar-short .container-fluid:before {
  display: none;
}
.cid-u80YjQ2jMc .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-u80YjQ2jMc .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-u80YjQ2jMc .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .navbar {
    overflow: hidden;
  }
  .cid-u80YjQ2jMc .container,
  .cid-u80YjQ2jMc .container-fluid {
    min-height: 85px;
  }
  .cid-u80YjQ2jMc .navbar-brand {
    min-height: 85px;
  }
  .cid-u80YjQ2jMc .navbar-short .container,
  .cid-u80YjQ2jMc .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-u80YjQ2jMc .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-u80YjQ2jMc .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-u80YjQ2jMc .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-u80YjQ2jMc .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-u80YjQ2jMc .mbr-section-btn {
    text-align: left;
  }
  .cid-u80YjQ2jMc .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-u80YjQ2jMc .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-u70diD6b0N {
  background-image: url("../../../assets/images/mount-everest-himalayas-nuptse-lhotse-51387-2000x844.jpg");
}
.cid-u70diD6b0N .mbr-overlay {
  background: #444444;
}
.cid-u70diD6b0N .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-u70diD6b0N .mbr-section-subtitle,
.cid-u70diD6b0N mbr-section-btn {
  color: #ffffff;
}
.cid-u70diD6b0N B {
  color: #333333;
}
.cid-u70diD6b0N H1 {
  color: #ffffff;
  text-shadow: 2px 2px 4px black;
}
.cid-u70e0EVOMb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u70e0EVOMb .mbr-fallback-image.disabled {
  display: none;
}
.cid-u70e0EVOMb .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-u70e0EVOMb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u70e0EVOMb .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u70e0EVOMb .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u70e0EVOMb .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u70e0EVOMb .mbr-section-title {
  color: #03579e;
}
.cid-u70e0EVOMb .mbr-text,
.cid-u70e0EVOMb .mbr-section-btn {
  color: #000000;
}
.cid-u70diFC3pU {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #03579e;
}
.cid-u70diFC3pU .mbr-section-subtitle {
  color: #999999;
  font-weight: 700;
}
.cid-u70diFC3pU .mbr-text {
  color: #777777;
  margin-top: 1.2rem;
}
.cid-u70diFC3pU H2 {
  color: #ffffff;
}
.cid-u70diG1bwh {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #03579e;
}
.cid-u70diG1bwh .mbr-iconfont-2 {
  color: #42474c !important;
  margin: 0 0.5rem;
}
.cid-u70diG1bwh .mbr-iconfont-1 {
  font-size: 3.1rem;
  color: #42474c;
}
.cid-u70diG1bwh .social-list {
  display: flex;
  justify-content: center;
}
.cid-u70diG1bwh .card-inner {
  transition: 0.7s;
}
.cid-u70diG1bwh .btn {
  margin-left: 0rem;
}
.cid-u70diG1bwh .row {
  padding-bottom: 8rem;
}
.cid-u70diG1bwh .link {
  margin: 0;
}
.cid-u70diG1bwh .card-title {
  position: relative;
}
.cid-u70diG1bwh .mbr-text {
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.cid-u70diG1bwh .card-box {
  position: relative;
}
.cid-u70diG1bwh .card-img {
  margin-bottom: 1.5rem;
}
.cid-u70diG1bwh .mbr-section-title {
  margin-bottom: 1.5rem;
}
@media (max-width: 992px) {
  .cid-u70diG1bwh .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-u70diG1bwh .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u70diG1bwh .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-u70diG1bwh .mbr-text,
.cid-u70diG1bwh .link {
  color: #ffffff;
}
.cid-u70diGyzHV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #08487d;
}
.cid-u70diGyzHV .media-container-row {
  align-items: center;
}
.cid-u70diGyzHV .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u70diGyzHV .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u70diGyzHV .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u70diGyzHV .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-u70diGyzHV .foot-menu-item {
  transform: 0.2s;
}
.cid-u70diGyzHV .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-u70diGyzHV .foot-menu {
    justify-content: center;
  }
  .cid-u70diGyzHV .mbr-text {
    text-align: center;
  }
  .cid-u70diGyzHV .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-u70diGyzHV .foot-menu {
    justify-content: flex-end;
  }
}
.cid-u70diGyzHV .link:hover {
  text-decoration: underline;
}
.cid-u70diGyzHV .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #a3a3a3;
}
.cid-u70diGyzHV .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-u70diGyzHV .container {
    padding: 0;
  }
}
.cid-u70diGyzHV .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-u80YjQ2jMc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u80YjQ2jMc nav.navbar {
  position: fixed;
}
.cid-u80YjQ2jMc .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-u80YjQ2jMc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u80YjQ2jMc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u80YjQ2jMc .dropdown-item:hover,
.cid-u80YjQ2jMc .dropdown-item:focus {
  background: #03579e !important;
  color: white !important;
}
.cid-u80YjQ2jMc .dropdown-item:hover span {
  color: white;
}
.cid-u80YjQ2jMc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u80YjQ2jMc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u80YjQ2jMc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u80YjQ2jMc .nav-link {
  position: relative;
}
.cid-u80YjQ2jMc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u80YjQ2jMc .container {
    flex-wrap: nowrap;
  }
}
.cid-u80YjQ2jMc .navbar-nav {
  margin: 0 auto;
}
.cid-u80YjQ2jMc .dropdown-menu,
.cid-u80YjQ2jMc .navbar.opened {
  background: #ffffff !important;
}
.cid-u80YjQ2jMc .nav-item:focus,
.cid-u80YjQ2jMc .nav-link:focus {
  outline: none;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u80YjQ2jMc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u80YjQ2jMc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u80YjQ2jMc .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;
  border: none !important;
  box-shadow: none !important;
}
.cid-u80YjQ2jMc .navbar.opened {
  transition: all 0.3s;
}
.cid-u80YjQ2jMc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u80YjQ2jMc .navbar .navbar-logo img {
  width: auto;
}
.cid-u80YjQ2jMc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u80YjQ2jMc .navbar.collapsed {
  justify-content: center;
}
.cid-u80YjQ2jMc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u80YjQ2jMc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u80YjQ2jMc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u80YjQ2jMc .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-u80YjQ2jMc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u80YjQ2jMc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u80YjQ2jMc .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-u80YjQ2jMc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u80YjQ2jMc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u80YjQ2jMc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u80YjQ2jMc .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u80YjQ2jMc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u80YjQ2jMc .navbar.navbar-short {
  min-height: 60px;
}
.cid-u80YjQ2jMc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u80YjQ2jMc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u80YjQ2jMc .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u80YjQ2jMc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u80YjQ2jMc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u80YjQ2jMc .dropdown-item.active,
.cid-u80YjQ2jMc .dropdown-item:active {
  background-color: transparent;
}
.cid-u80YjQ2jMc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u80YjQ2jMc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u80YjQ2jMc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u80YjQ2jMc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u80YjQ2jMc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u80YjQ2jMc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u80YjQ2jMc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u80YjQ2jMc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u80YjQ2jMc .navbar {
    height: 70px;
  }
  .cid-u80YjQ2jMc .navbar.opened {
    height: auto;
  }
  .cid-u80YjQ2jMc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u80YjQ2jMc .container,
.cid-u80YjQ2jMc .container-fluid {
  position: relative;
  min-height: 108px;
}
.cid-u80YjQ2jMc .navbar-short {
  background-color: #ffffff !important;
}
.cid-u80YjQ2jMc .navbar-short .container,
.cid-u80YjQ2jMc .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-u80YjQ2jMc .navbar-short .container:before,
.cid-u80YjQ2jMc .navbar-short .container-fluid:before {
  display: none;
}
.cid-u80YjQ2jMc .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-u80YjQ2jMc .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-u80YjQ2jMc .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .navbar {
    overflow: hidden;
  }
  .cid-u80YjQ2jMc .container,
  .cid-u80YjQ2jMc .container-fluid {
    min-height: 85px;
  }
  .cid-u80YjQ2jMc .navbar-brand {
    min-height: 85px;
  }
  .cid-u80YjQ2jMc .navbar-short .container,
  .cid-u80YjQ2jMc .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-u80YjQ2jMc .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-u80YjQ2jMc .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-u80YjQ2jMc .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-u80YjQ2jMc .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-u80YjQ2jMc .mbr-section-btn {
    text-align: left;
  }
  .cid-u80YjQ2jMc .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-u80YjQ2jMc .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-u70eSmHe7z {
  background-image: url("../../../assets/images/dsc00289-2000x1333.jpeg");
}
.cid-u70eSmHe7z .mbr-overlay {
  background: #000000;
}
.cid-u70eSmHe7z .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-u70eSmHe7z .mbr-section-subtitle,
.cid-u70eSmHe7z mbr-section-btn {
  color: #ffffff;
}
.cid-u70eSmHe7z B {
  color: #333333;
}
.cid-u70eSmHe7z H1 {
  color: #ffffff;
  text-shadow: 2px 2px 4px black;
}
.cid-u70fwVG0mt {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
.cid-u70fwVG0mt .mbr-fallback-image.disabled {
  display: none;
}
.cid-u70fwVG0mt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u70fwVG0mt .mbr-section-head {
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .cid-u70fwVG0mt .mbr-section-head {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-u70fwVG0mt .mbr-section-head {
    margin-bottom: 20px;
  }
}
.cid-u70fwVG0mt .mbr-section-title {
  color: #08487d;
  text-align: center;
}
.cid-u70fwVG0mt .mbr-section-subtitle {
  margin-top: 16px;
  color: #6c7a88;
}
@media (max-width: 767px) {
  .cid-u70fwVG0mt .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-u70fwVG0mt .cards-wrap {
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-u70fwVG0mt .cards-wrap {
    gap: 12px;
  }
}
.cid-u70fwVG0mt .card {
  display: flex;
  width: calc(25% - 60px/4);
  padding: 50px;
  border-radius: 40px;
  background-color: #ffffff;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .cid-u70fwVG0mt .card {
    padding: 30px;
  }
}
@media (max-width: 1199px) {
  .cid-u70fwVG0mt .card {
    padding: 20px;
    border-radius: 12px;
    width: calc(100%/3 - 20px);
  }
}
@media (max-width: 767px) {
  .cid-u70fwVG0mt .card {
    padding: 12px;
    border-radius: 12px;
    width: calc(100%/2 - 10px);
  }
}
@media (max-width: 575px) {
  .cid-u70fwVG0mt .card {
    width: 100%;
  }
}
.cid-u70fwVG0mt .card-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  height: 100%;
}
.cid-u70fwVG0mt .img-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-u70fwVG0mt .img-wrapper img {
  height: 100px;
  width: auto;
}
@media (max-width: 1399px) {
  .cid-u70fwVG0mt .img-wrapper img {
    height: 80px;
  }
}
.cid-u70fwVG0mt .card-box {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1rem;
}
.cid-u70fwVG0mt .card-subtitle {
  color: #80c5ff;
  word-break: normal;
}
.cid-u70fwVG0mt .card-title {
  color: #1a1e21;
}
.cid-u7yJE8U8YS {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #efefef;
}
.cid-u7yJE8U8YS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yJE8U8YS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7yJE8U8YS .mbr-section-head {
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .cid-u7yJE8U8YS .mbr-section-head {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-u7yJE8U8YS .mbr-section-head {
    margin-bottom: 20px;
  }
}
.cid-u7yJE8U8YS .mbr-section-title {
  color: #08487d;
  text-align: center;
}
.cid-u7yJE8U8YS .mbr-section-subtitle {
  margin-top: 16px;
  color: #6c7a88;
}
@media (max-width: 767px) {
  .cid-u7yJE8U8YS .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-u7yJE8U8YS .cards-wrap {
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-u7yJE8U8YS .cards-wrap {
    gap: 12px;
  }
}
.cid-u7yJE8U8YS .card {
  display: flex;
  width: calc(25% - 60px/4);
  padding: 50px;
  border-radius: 40px;
  background-color: #ffffff;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .cid-u7yJE8U8YS .card {
    padding: 30px;
  }
}
@media (max-width: 1199px) {
  .cid-u7yJE8U8YS .card {
    padding: 20px;
    border-radius: 12px;
    width: calc(100%/3 - 20px);
  }
}
@media (max-width: 767px) {
  .cid-u7yJE8U8YS .card {
    padding: 12px;
    border-radius: 12px;
    width: calc(100%/2 - 10px);
  }
}
@media (max-width: 575px) {
  .cid-u7yJE8U8YS .card {
    width: 100%;
  }
}
.cid-u7yJE8U8YS .card-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  height: 100%;
}
.cid-u7yJE8U8YS .img-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-u7yJE8U8YS .img-wrapper img {
  height: 100px;
  width: auto;
}
@media (max-width: 1399px) {
  .cid-u7yJE8U8YS .img-wrapper img {
    height: 80px;
  }
}
.cid-u7yJE8U8YS .card-box {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1rem;
}
.cid-u7yJE8U8YS .card-subtitle {
  color: #80c5ff;
  word-break: normal;
}
.cid-u7yJE8U8YS .card-title {
  color: #1a1e21;
}
.cid-u70fLSoVQY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #03579e;
}
.cid-u70fLSoVQY .mbr-fallback-image.disabled {
  display: none;
}
.cid-u70fLSoVQY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u70fLSoVQY .mbr-section-head {
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .cid-u70fLSoVQY .mbr-section-head {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-u70fLSoVQY .mbr-section-head {
    margin-bottom: 20px;
  }
}
.cid-u70fLSoVQY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-u70fLSoVQY .mbr-section-subtitle {
  margin-top: 16px;
  color: #6c7a88;
}
@media (max-width: 767px) {
  .cid-u70fLSoVQY .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-u70fLSoVQY .cards-wrap {
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-u70fLSoVQY .cards-wrap {
    gap: 12px;
  }
}
.cid-u70fLSoVQY .card {
  display: flex;
  width: calc(25% - 60px/4);
  padding: 50px;
  border-radius: 40px;
  background-color: #ffffff;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .cid-u70fLSoVQY .card {
    padding: 30px;
  }
}
@media (max-width: 1199px) {
  .cid-u70fLSoVQY .card {
    padding: 20px;
    border-radius: 12px;
    width: calc(100%/3 - 20px);
  }
}
@media (max-width: 767px) {
  .cid-u70fLSoVQY .card {
    padding: 12px;
    border-radius: 12px;
    width: calc(100%/2 - 10px);
  }
}
@media (max-width: 575px) {
  .cid-u70fLSoVQY .card {
    width: 100%;
  }
}
.cid-u70fLSoVQY .card-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  height: 100%;
}
.cid-u70fLSoVQY .img-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-u70fLSoVQY .img-wrapper img {
  height: 100px;
  width: auto;
}
@media (max-width: 1399px) {
  .cid-u70fLSoVQY .img-wrapper img {
    height: 80px;
  }
}
.cid-u70fLSoVQY .card-box {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1rem;
}
.cid-u70fLSoVQY .card-subtitle {
  color: #FA7E26;
  word-break: normal;
}
.cid-u70fLSoVQY .card-title {
  color: #1a1e21;
}
.cid-u70fxEnTxv {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-u70fxEnTxv .mbri-left:before {
  content: "\f053" !important;
}
.cid-u70fxEnTxv .mbri-right:before {
  content: "\f054" !important;
}
.cid-u70fxEnTxv .carousel-control-next,
.cid-u70fxEnTxv .carousel-control-prev {
  opacity: 1;
  width: 45px;
  height: 45px;
}
.cid-u70fxEnTxv .profession {
  display: inline;
  font-weight: 700;
  color: #000000;
}
.cid-u70fxEnTxv .author {
  display: inline;
  margin: auto 0;
  font-weight: 700;
  color: #000000;
}
.cid-u70fxEnTxv .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.cid-u70fxEnTxv .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-u70fxEnTxv .carousel-item.active,
.cid-u70fxEnTxv .carousel-item-next,
.cid-u70fxEnTxv .carousel-item-prev {
  display: flex;
}
.cid-u70fxEnTxv .mbr-section-subtitle {
  margin-bottom: 0.8rem;
  color: #80c5ff;
  font-weight: 700;
}
.cid-u70fxEnTxv .testimonials-slider__icon {
  font-size: 150px;
  width: 100px;
  color: #08487d;
  font-weight: 700;
  display: inline-block;
}
.cid-u70fxEnTxv .line::before {
  content: "";
  display: inline-block;
  height: 2px;
  width: 40px;
  background: #80c5ff;
  vertical-align: middle;
  margin-right: 20px;
}
.cid-u70fxEnTxv .carousel-controls a {
  transition: .3s;
  border: 2px solid #03579e;
  border-radius: 50%;
}
.cid-u70fxEnTxv .carousel-controls a span {
  font-size: 1rem !important;
  color: #03579e;
}
.cid-u70fxEnTxv .carousel-controls a:hover {
  background-color: #08487d;
  border-color: #80c5ff;
}
.cid-u70fxEnTxv .carousel-controls a:hover span {
  color: #ffffff;
}
.cid-u70fxEnTxv .mbr-section-title {
  margin-bottom: 3.2rem;
}
.cid-u70fxEnTxv .mbr-text {
  margin-bottom: 2.4rem;
}
.cid-u70fxEnTxv .author-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-u70fxEnTxv h3,
.cid-u70fxEnTxv h4 {
  margin: 0;
  padding: 0;
}
.cid-u70fxEnTxv .block-bottom {
  padding: 0rem;
}
@media (max-width: 767px) {
  .cid-u70fxEnTxv .wrapper-block {
    display: flex;
    margin-top: 5.5rem;
  }
  .cid-u70fxEnTxv .carousel-control-next {
    left: 4.3rem;
  }
  .cid-u70fxEnTxv .carousel-control-prev {
    position: absolute;
    left: 0.8rem !important;
  }
  .cid-u70fxEnTxv .testimonials-slider__icon {
    display: none;
  }
  .cid-u70fxEnTxv .carousel-controls a {
    top: 7rem;
    bottom: auto;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-u70fxEnTxv .wrapper-block {
    display: flex;
    margin-top: 5.5rem;
  }
  .cid-u70fxEnTxv .carousel-control-next {
    left: 4.3rem;
  }
  .cid-u70fxEnTxv .carousel-control-prev {
    position: absolute;
    left: 0.8rem !important;
  }
  .cid-u70fxEnTxv .testimonials-slider__icon {
    line-height: 80px;
    font-size: 100px;
    margin-right: 1rem;
  }
  .cid-u70fxEnTxv .carousel-controls a {
    top: 9rem;
    bottom: auto;
  }
}
@media (min-width: 992px) {
  .cid-u70fxEnTxv .wrapper-block {
    display: flex;
  }
  .cid-u70fxEnTxv .carousel-control-next {
    right: 2.2rem;
  }
  .cid-u70fxEnTxv .carousel-control-prev {
    position: absolute;
    right: 5.7rem !important;
    left: auto;
  }
  .cid-u70fxEnTxv .testimonials-slider__icon {
    line-height: 105px;
    margin-right: 2rem;
  }
  .cid-u70fxEnTxv .carousel-controls a {
    top: 3.5rem;
    bottom: auto;
  }
}
.cid-u70fxEnTxv .icon-left {
  margin-right: 0.1rem;
}
.cid-u70fxEnTxv .icon-right {
  margin-left: 0.1rem;
}
.cid-u70fxEnTxv H1 {
  color: #08487d;
}
.cid-u70fxEnTxv .mbr-text,
.cid-u70fxEnTxv .mbr-section-btn {
  color: #000000;
}
.cid-u70eSq3Pcd {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #08487d;
}
.cid-u70eSq3Pcd .media-container-row {
  align-items: center;
}
.cid-u70eSq3Pcd .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u70eSq3Pcd .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u70eSq3Pcd .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u70eSq3Pcd .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-u70eSq3Pcd .foot-menu-item {
  transform: 0.2s;
}
.cid-u70eSq3Pcd .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-u70eSq3Pcd .foot-menu {
    justify-content: center;
  }
  .cid-u70eSq3Pcd .mbr-text {
    text-align: center;
  }
  .cid-u70eSq3Pcd .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-u70eSq3Pcd .foot-menu {
    justify-content: flex-end;
  }
}
.cid-u70eSq3Pcd .link:hover {
  text-decoration: underline;
}
.cid-u70eSq3Pcd .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #a3a3a3;
}
.cid-u70eSq3Pcd .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-u70eSq3Pcd .container {
    padding: 0;
  }
}
.cid-u70eSq3Pcd .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-u80YjQ2jMc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u80YjQ2jMc nav.navbar {
  position: fixed;
}
.cid-u80YjQ2jMc .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-u80YjQ2jMc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u80YjQ2jMc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u80YjQ2jMc .dropdown-item:hover,
.cid-u80YjQ2jMc .dropdown-item:focus {
  background: #03579e !important;
  color: white !important;
}
.cid-u80YjQ2jMc .dropdown-item:hover span {
  color: white;
}
.cid-u80YjQ2jMc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u80YjQ2jMc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u80YjQ2jMc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u80YjQ2jMc .nav-link {
  position: relative;
}
.cid-u80YjQ2jMc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u80YjQ2jMc .container {
    flex-wrap: nowrap;
  }
}
.cid-u80YjQ2jMc .navbar-nav {
  margin: 0 auto;
}
.cid-u80YjQ2jMc .dropdown-menu,
.cid-u80YjQ2jMc .navbar.opened {
  background: #ffffff !important;
}
.cid-u80YjQ2jMc .nav-item:focus,
.cid-u80YjQ2jMc .nav-link:focus {
  outline: none;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u80YjQ2jMc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u80YjQ2jMc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u80YjQ2jMc .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;
  border: none !important;
  box-shadow: none !important;
}
.cid-u80YjQ2jMc .navbar.opened {
  transition: all 0.3s;
}
.cid-u80YjQ2jMc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u80YjQ2jMc .navbar .navbar-logo img {
  width: auto;
}
.cid-u80YjQ2jMc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u80YjQ2jMc .navbar.collapsed {
  justify-content: center;
}
.cid-u80YjQ2jMc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u80YjQ2jMc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u80YjQ2jMc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u80YjQ2jMc .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-u80YjQ2jMc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u80YjQ2jMc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u80YjQ2jMc .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-u80YjQ2jMc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u80YjQ2jMc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u80YjQ2jMc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u80YjQ2jMc .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u80YjQ2jMc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u80YjQ2jMc .navbar.navbar-short {
  min-height: 60px;
}
.cid-u80YjQ2jMc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u80YjQ2jMc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u80YjQ2jMc .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u80YjQ2jMc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u80YjQ2jMc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u80YjQ2jMc .dropdown-item.active,
.cid-u80YjQ2jMc .dropdown-item:active {
  background-color: transparent;
}
.cid-u80YjQ2jMc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u80YjQ2jMc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u80YjQ2jMc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u80YjQ2jMc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u80YjQ2jMc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u80YjQ2jMc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u80YjQ2jMc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u80YjQ2jMc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u80YjQ2jMc .navbar {
    height: 70px;
  }
  .cid-u80YjQ2jMc .navbar.opened {
    height: auto;
  }
  .cid-u80YjQ2jMc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u80YjQ2jMc .container,
.cid-u80YjQ2jMc .container-fluid {
  position: relative;
  min-height: 108px;
}
.cid-u80YjQ2jMc .navbar-short {
  background-color: #ffffff !important;
}
.cid-u80YjQ2jMc .navbar-short .container,
.cid-u80YjQ2jMc .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-u80YjQ2jMc .navbar-short .container:before,
.cid-u80YjQ2jMc .navbar-short .container-fluid:before {
  display: none;
}
.cid-u80YjQ2jMc .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-u80YjQ2jMc .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-u80YjQ2jMc .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .navbar {
    overflow: hidden;
  }
  .cid-u80YjQ2jMc .container,
  .cid-u80YjQ2jMc .container-fluid {
    min-height: 85px;
  }
  .cid-u80YjQ2jMc .navbar-brand {
    min-height: 85px;
  }
  .cid-u80YjQ2jMc .navbar-short .container,
  .cid-u80YjQ2jMc .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-u80YjQ2jMc .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-u80YjQ2jMc .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-u80YjQ2jMc .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-u80YjQ2jMc .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-u80YjQ2jMc .mbr-section-btn {
    text-align: left;
  }
  .cid-u80YjQ2jMc .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-u80YjQ2jMc .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-u70hlkW5O7 {
  background-image: url("../../../assets/images/sfondo2-2000x1339.jpg");
}
.cid-u70hlkW5O7 .mbr-overlay {
  background: #000000;
}
.cid-u70hlkW5O7 .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-u70hlkW5O7 .mbr-section-subtitle,
.cid-u70hlkW5O7 mbr-section-btn {
  color: #ffffff;
}
.cid-u70hlkW5O7 B {
  color: #333333;
}
.cid-u70hlkW5O7 H1 {
  color: #ffffff;
  text-shadow: 2px 2px 4px black;
}
.cid-u70hllJSqY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-u70hllJSqY .mbr-fallback-image.disabled {
  display: none;
}
.cid-u70hllJSqY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u70hllJSqY .mbr-section-subtitle {
  color: #08487d;
  text-align: center;
}
.cid-u70hllJSqY .mbr-section-title {
  color: #c34fce;
}
.cid-u70hlm4cPY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u70hlm4cPY .mbr-fallback-image.disabled {
  display: none;
}
.cid-u70hlm4cPY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u70hlm4cPY .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-u70hlm4cPY .mbr-section-title {
  color: #c34fce;
}
.cid-u70hlnFw3E {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #03579e;
}
.cid-u70hlnFw3E .mbr-section-subtitle {
  color: #999999;
  font-weight: 700;
}
.cid-u70hlnFw3E .mbr-text {
  color: #777777;
  margin-top: 1.2rem;
}
.cid-u70hlnFw3E H2 {
  color: #ffffff;
}
.cid-u70hlo3zRq {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #03579e;
}
.cid-u70hlo3zRq .mbr-iconfont-2 {
  color: #42474c !important;
  margin: 0 0.5rem;
}
.cid-u70hlo3zRq .mbr-iconfont-1 {
  font-size: 3.1rem;
  color: #42474c;
}
.cid-u70hlo3zRq .social-list {
  display: flex;
  justify-content: center;
}
.cid-u70hlo3zRq .card-inner {
  transition: 0.7s;
}
.cid-u70hlo3zRq .btn {
  margin-left: 0rem;
}
.cid-u70hlo3zRq .row {
  padding-bottom: 8rem;
}
.cid-u70hlo3zRq .link {
  margin: 0;
}
.cid-u70hlo3zRq .card-title {
  position: relative;
}
.cid-u70hlo3zRq .mbr-text {
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.cid-u70hlo3zRq .card-box {
  position: relative;
}
.cid-u70hlo3zRq .card-img {
  margin-bottom: 1.5rem;
}
.cid-u70hlo3zRq .mbr-section-title {
  margin-bottom: 1.5rem;
}
@media (max-width: 992px) {
  .cid-u70hlo3zRq .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-u70hlo3zRq .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u70hlo3zRq .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-u70hlo3zRq .mbr-text,
.cid-u70hlo3zRq .link {
  color: #ffffff;
}
.cid-u70hloxosA {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #08487d;
}
.cid-u70hloxosA .media-container-row {
  align-items: center;
}
.cid-u70hloxosA .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u70hloxosA .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u70hloxosA .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u70hloxosA .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-u70hloxosA .foot-menu-item {
  transform: 0.2s;
}
.cid-u70hloxosA .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-u70hloxosA .foot-menu {
    justify-content: center;
  }
  .cid-u70hloxosA .mbr-text {
    text-align: center;
  }
  .cid-u70hloxosA .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-u70hloxosA .foot-menu {
    justify-content: flex-end;
  }
}
.cid-u70hloxosA .link:hover {
  text-decoration: underline;
}
.cid-u70hloxosA .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #a3a3a3;
}
.cid-u70hloxosA .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-u70hloxosA .container {
    padding: 0;
  }
}
.cid-u70hloxosA .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-u80YjQ2jMc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u80YjQ2jMc nav.navbar {
  position: fixed;
}
.cid-u80YjQ2jMc .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-u80YjQ2jMc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u80YjQ2jMc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u80YjQ2jMc .dropdown-item:hover,
.cid-u80YjQ2jMc .dropdown-item:focus {
  background: #03579e !important;
  color: white !important;
}
.cid-u80YjQ2jMc .dropdown-item:hover span {
  color: white;
}
.cid-u80YjQ2jMc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u80YjQ2jMc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u80YjQ2jMc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u80YjQ2jMc .nav-link {
  position: relative;
}
.cid-u80YjQ2jMc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u80YjQ2jMc .container {
    flex-wrap: nowrap;
  }
}
.cid-u80YjQ2jMc .navbar-nav {
  margin: 0 auto;
}
.cid-u80YjQ2jMc .dropdown-menu,
.cid-u80YjQ2jMc .navbar.opened {
  background: #ffffff !important;
}
.cid-u80YjQ2jMc .nav-item:focus,
.cid-u80YjQ2jMc .nav-link:focus {
  outline: none;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u80YjQ2jMc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u80YjQ2jMc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u80YjQ2jMc .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;
  border: none !important;
  box-shadow: none !important;
}
.cid-u80YjQ2jMc .navbar.opened {
  transition: all 0.3s;
}
.cid-u80YjQ2jMc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u80YjQ2jMc .navbar .navbar-logo img {
  width: auto;
}
.cid-u80YjQ2jMc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u80YjQ2jMc .navbar.collapsed {
  justify-content: center;
}
.cid-u80YjQ2jMc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u80YjQ2jMc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u80YjQ2jMc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u80YjQ2jMc .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-u80YjQ2jMc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u80YjQ2jMc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u80YjQ2jMc .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-u80YjQ2jMc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u80YjQ2jMc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u80YjQ2jMc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u80YjQ2jMc .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u80YjQ2jMc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u80YjQ2jMc .navbar.navbar-short {
  min-height: 60px;
}
.cid-u80YjQ2jMc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u80YjQ2jMc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u80YjQ2jMc .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u80YjQ2jMc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u80YjQ2jMc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u80YjQ2jMc .dropdown-item.active,
.cid-u80YjQ2jMc .dropdown-item:active {
  background-color: transparent;
}
.cid-u80YjQ2jMc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u80YjQ2jMc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u80YjQ2jMc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u80YjQ2jMc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u80YjQ2jMc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u80YjQ2jMc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u80YjQ2jMc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u80YjQ2jMc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u80YjQ2jMc .navbar {
    height: 70px;
  }
  .cid-u80YjQ2jMc .navbar.opened {
    height: auto;
  }
  .cid-u80YjQ2jMc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u80YjQ2jMc .container,
.cid-u80YjQ2jMc .container-fluid {
  position: relative;
  min-height: 108px;
}
.cid-u80YjQ2jMc .navbar-short {
  background-color: #ffffff !important;
}
.cid-u80YjQ2jMc .navbar-short .container,
.cid-u80YjQ2jMc .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-u80YjQ2jMc .navbar-short .container:before,
.cid-u80YjQ2jMc .navbar-short .container-fluid:before {
  display: none;
}
.cid-u80YjQ2jMc .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-u80YjQ2jMc .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-u80YjQ2jMc .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .navbar {
    overflow: hidden;
  }
  .cid-u80YjQ2jMc .container,
  .cid-u80YjQ2jMc .container-fluid {
    min-height: 85px;
  }
  .cid-u80YjQ2jMc .navbar-brand {
    min-height: 85px;
  }
  .cid-u80YjQ2jMc .navbar-short .container,
  .cid-u80YjQ2jMc .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-u80YjQ2jMc .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-u80YjQ2jMc .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-u80YjQ2jMc .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-u80YjQ2jMc .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-u80YjQ2jMc .mbr-section-btn {
    text-align: left;
  }
  .cid-u80YjQ2jMc .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-u80YjQ2jMc .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-u70i07ulh9 {
  background-image: url("../../../assets/images/sfondo2-2000x1339.jpg");
}
.cid-u70i07ulh9 .mbr-overlay {
  background: #000000;
}
.cid-u70i07ulh9 .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-u70i07ulh9 .mbr-section-subtitle,
.cid-u70i07ulh9 mbr-section-btn {
  color: #ffffff;
}
.cid-u70i07ulh9 B {
  color: #333333;
}
.cid-u70i07ulh9 H1 {
  color: #ffffff;
  text-shadow: 2px 2px 4px black;
}
.cid-u70io0bVrN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-u70io0bVrN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u70io0bVrN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u70io0bVrN .mbr-section-subtitle {
  color: #08487d;
  text-align: center;
}
.cid-u70io0bVrN .mbr-section-title {
  color: #c34fce;
}
.cid-u70i08FzoX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u70i08FzoX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u70i08FzoX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u70i08FzoX .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-u70i08FzoX .mbr-section-title {
  color: #c34fce;
}
.cid-u70i090krJ {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #03579e;
}
.cid-u70i090krJ .mbr-section-subtitle {
  color: #999999;
  font-weight: 700;
}
.cid-u70i090krJ .mbr-text {
  color: #777777;
  margin-top: 1.2rem;
}
.cid-u70i090krJ H2 {
  color: #ffffff;
}
.cid-u70i09kGG7 {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #03579e;
}
.cid-u70i09kGG7 .mbr-iconfont-2 {
  color: #42474c !important;
  margin: 0 0.5rem;
}
.cid-u70i09kGG7 .mbr-iconfont-1 {
  font-size: 3.1rem;
  color: #42474c;
}
.cid-u70i09kGG7 .social-list {
  display: flex;
  justify-content: center;
}
.cid-u70i09kGG7 .card-inner {
  transition: 0.7s;
}
.cid-u70i09kGG7 .btn {
  margin-left: 0rem;
}
.cid-u70i09kGG7 .row {
  padding-bottom: 8rem;
}
.cid-u70i09kGG7 .link {
  margin: 0;
}
.cid-u70i09kGG7 .card-title {
  position: relative;
}
.cid-u70i09kGG7 .mbr-text {
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.cid-u70i09kGG7 .card-box {
  position: relative;
}
.cid-u70i09kGG7 .card-img {
  margin-bottom: 1.5rem;
}
.cid-u70i09kGG7 .mbr-section-title {
  margin-bottom: 1.5rem;
}
@media (max-width: 992px) {
  .cid-u70i09kGG7 .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-u70i09kGG7 .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u70i09kGG7 .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-u70i09kGG7 .mbr-text,
.cid-u70i09kGG7 .link {
  color: #ffffff;
}
.cid-u70i09QKQD {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #08487d;
}
.cid-u70i09QKQD .media-container-row {
  align-items: center;
}
.cid-u70i09QKQD .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u70i09QKQD .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u70i09QKQD .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u70i09QKQD .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-u70i09QKQD .foot-menu-item {
  transform: 0.2s;
}
.cid-u70i09QKQD .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-u70i09QKQD .foot-menu {
    justify-content: center;
  }
  .cid-u70i09QKQD .mbr-text {
    text-align: center;
  }
  .cid-u70i09QKQD .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-u70i09QKQD .foot-menu {
    justify-content: flex-end;
  }
}
.cid-u70i09QKQD .link:hover {
  text-decoration: underline;
}
.cid-u70i09QKQD .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #a3a3a3;
}
.cid-u70i09QKQD .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-u70i09QKQD .container {
    padding: 0;
  }
}
.cid-u70i09QKQD .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-u80YjQ2jMc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u80YjQ2jMc nav.navbar {
  position: fixed;
}
.cid-u80YjQ2jMc .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-u80YjQ2jMc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u80YjQ2jMc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u80YjQ2jMc .dropdown-item:hover,
.cid-u80YjQ2jMc .dropdown-item:focus {
  background: #03579e !important;
  color: white !important;
}
.cid-u80YjQ2jMc .dropdown-item:hover span {
  color: white;
}
.cid-u80YjQ2jMc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u80YjQ2jMc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u80YjQ2jMc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u80YjQ2jMc .nav-link {
  position: relative;
}
.cid-u80YjQ2jMc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u80YjQ2jMc .container {
    flex-wrap: nowrap;
  }
}
.cid-u80YjQ2jMc .navbar-nav {
  margin: 0 auto;
}
.cid-u80YjQ2jMc .dropdown-menu,
.cid-u80YjQ2jMc .navbar.opened {
  background: #ffffff !important;
}
.cid-u80YjQ2jMc .nav-item:focus,
.cid-u80YjQ2jMc .nav-link:focus {
  outline: none;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u80YjQ2jMc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u80YjQ2jMc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u80YjQ2jMc .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;
  border: none !important;
  box-shadow: none !important;
}
.cid-u80YjQ2jMc .navbar.opened {
  transition: all 0.3s;
}
.cid-u80YjQ2jMc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u80YjQ2jMc .navbar .navbar-logo img {
  width: auto;
}
.cid-u80YjQ2jMc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u80YjQ2jMc .navbar.collapsed {
  justify-content: center;
}
.cid-u80YjQ2jMc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u80YjQ2jMc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u80YjQ2jMc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u80YjQ2jMc .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-u80YjQ2jMc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u80YjQ2jMc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u80YjQ2jMc .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-u80YjQ2jMc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u80YjQ2jMc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u80YjQ2jMc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u80YjQ2jMc .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u80YjQ2jMc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u80YjQ2jMc .navbar.navbar-short {
  min-height: 60px;
}
.cid-u80YjQ2jMc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u80YjQ2jMc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u80YjQ2jMc .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u80YjQ2jMc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u80YjQ2jMc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u80YjQ2jMc .dropdown-item.active,
.cid-u80YjQ2jMc .dropdown-item:active {
  background-color: transparent;
}
.cid-u80YjQ2jMc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u80YjQ2jMc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u80YjQ2jMc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u80YjQ2jMc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u80YjQ2jMc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u80YjQ2jMc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u80YjQ2jMc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u80YjQ2jMc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u80YjQ2jMc .navbar {
    height: 70px;
  }
  .cid-u80YjQ2jMc .navbar.opened {
    height: auto;
  }
  .cid-u80YjQ2jMc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u80YjQ2jMc .container,
.cid-u80YjQ2jMc .container-fluid {
  position: relative;
  min-height: 108px;
}
.cid-u80YjQ2jMc .navbar-short {
  background-color: #ffffff !important;
}
.cid-u80YjQ2jMc .navbar-short .container,
.cid-u80YjQ2jMc .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-u80YjQ2jMc .navbar-short .container:before,
.cid-u80YjQ2jMc .navbar-short .container-fluid:before {
  display: none;
}
.cid-u80YjQ2jMc .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-u80YjQ2jMc .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-u80YjQ2jMc .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .navbar {
    overflow: hidden;
  }
  .cid-u80YjQ2jMc .container,
  .cid-u80YjQ2jMc .container-fluid {
    min-height: 85px;
  }
  .cid-u80YjQ2jMc .navbar-brand {
    min-height: 85px;
  }
  .cid-u80YjQ2jMc .navbar-short .container,
  .cid-u80YjQ2jMc .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-u80YjQ2jMc .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-u80YjQ2jMc .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-u80YjQ2jMc .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-u80YjQ2jMc .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-u80YjQ2jMc .mbr-section-btn {
    text-align: left;
  }
  .cid-u80YjQ2jMc .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-u80YjQ2jMc .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-u70iF57g8R {
  background-image: url("../../../assets/images/sfondo2-2000x1339.jpg");
}
.cid-u70iF57g8R .mbr-overlay {
  background: #000000;
}
.cid-u70iF57g8R .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-u70iF57g8R .mbr-section-subtitle,
.cid-u70iF57g8R mbr-section-btn {
  color: #ffffff;
}
.cid-u70iF57g8R B {
  color: #333333;
}
.cid-u70iF57g8R H1 {
  color: #ffffff;
  text-shadow: 2px 2px 4px black;
}
.cid-u70iF7cXDj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-u70iF7cXDj .mbr-fallback-image.disabled {
  display: none;
}
.cid-u70iF7cXDj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u70iF7cXDj .mbr-section-subtitle {
  color: #08487d;
  text-align: center;
}
.cid-u70iF7cXDj .mbr-section-title {
  color: #c34fce;
}
.cid-u70iF8mnPF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u70iF8mnPF .mbr-fallback-image.disabled {
  display: none;
}
.cid-u70iF8mnPF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u70iF8mnPF .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-u70iF8mnPF .mbr-section-title {
  color: #c34fce;
}
.cid-u70iF9h8JP {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #03579e;
}
.cid-u70iF9h8JP .mbr-section-subtitle {
  color: #999999;
  font-weight: 700;
}
.cid-u70iF9h8JP .mbr-text {
  color: #777777;
  margin-top: 1.2rem;
}
.cid-u70iF9h8JP H2 {
  color: #ffffff;
}
.cid-u70iFaqxDR {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #03579e;
}
.cid-u70iFaqxDR .mbr-iconfont-2 {
  color: #42474c !important;
  margin: 0 0.5rem;
}
.cid-u70iFaqxDR .mbr-iconfont-1 {
  font-size: 3.1rem;
  color: #42474c;
}
.cid-u70iFaqxDR .social-list {
  display: flex;
  justify-content: center;
}
.cid-u70iFaqxDR .card-inner {
  transition: 0.7s;
}
.cid-u70iFaqxDR .btn {
  margin-left: 0rem;
}
.cid-u70iFaqxDR .row {
  padding-bottom: 8rem;
}
.cid-u70iFaqxDR .link {
  margin: 0;
}
.cid-u70iFaqxDR .card-title {
  position: relative;
}
.cid-u70iFaqxDR .mbr-text {
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.cid-u70iFaqxDR .card-box {
  position: relative;
}
.cid-u70iFaqxDR .card-img {
  margin-bottom: 1.5rem;
}
.cid-u70iFaqxDR .mbr-section-title {
  margin-bottom: 1.5rem;
}
@media (max-width: 992px) {
  .cid-u70iFaqxDR .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-u70iFaqxDR .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u70iFaqxDR .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-u70iFaqxDR .mbr-text,
.cid-u70iFaqxDR .link {
  color: #ffffff;
}
.cid-u70iFbv5cC {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #08487d;
}
.cid-u70iFbv5cC .media-container-row {
  align-items: center;
}
.cid-u70iFbv5cC .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u70iFbv5cC .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u70iFbv5cC .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u70iFbv5cC .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-u70iFbv5cC .foot-menu-item {
  transform: 0.2s;
}
.cid-u70iFbv5cC .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-u70iFbv5cC .foot-menu {
    justify-content: center;
  }
  .cid-u70iFbv5cC .mbr-text {
    text-align: center;
  }
  .cid-u70iFbv5cC .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-u70iFbv5cC .foot-menu {
    justify-content: flex-end;
  }
}
.cid-u70iFbv5cC .link:hover {
  text-decoration: underline;
}
.cid-u70iFbv5cC .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #a3a3a3;
}
.cid-u70iFbv5cC .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-u70iFbv5cC .container {
    padding: 0;
  }
}
.cid-u70iFbv5cC .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-u80YjQ2jMc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u80YjQ2jMc nav.navbar {
  position: fixed;
}
.cid-u80YjQ2jMc .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-u80YjQ2jMc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u80YjQ2jMc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u80YjQ2jMc .dropdown-item:hover,
.cid-u80YjQ2jMc .dropdown-item:focus {
  background: #03579e !important;
  color: white !important;
}
.cid-u80YjQ2jMc .dropdown-item:hover span {
  color: white;
}
.cid-u80YjQ2jMc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u80YjQ2jMc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u80YjQ2jMc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u80YjQ2jMc .nav-link {
  position: relative;
}
.cid-u80YjQ2jMc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u80YjQ2jMc .container {
    flex-wrap: nowrap;
  }
}
.cid-u80YjQ2jMc .navbar-nav {
  margin: 0 auto;
}
.cid-u80YjQ2jMc .dropdown-menu,
.cid-u80YjQ2jMc .navbar.opened {
  background: #ffffff !important;
}
.cid-u80YjQ2jMc .nav-item:focus,
.cid-u80YjQ2jMc .nav-link:focus {
  outline: none;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u80YjQ2jMc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u80YjQ2jMc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u80YjQ2jMc .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;
  border: none !important;
  box-shadow: none !important;
}
.cid-u80YjQ2jMc .navbar.opened {
  transition: all 0.3s;
}
.cid-u80YjQ2jMc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u80YjQ2jMc .navbar .navbar-logo img {
  width: auto;
}
.cid-u80YjQ2jMc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u80YjQ2jMc .navbar.collapsed {
  justify-content: center;
}
.cid-u80YjQ2jMc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u80YjQ2jMc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u80YjQ2jMc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u80YjQ2jMc .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-u80YjQ2jMc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u80YjQ2jMc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u80YjQ2jMc .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-u80YjQ2jMc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u80YjQ2jMc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u80YjQ2jMc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u80YjQ2jMc .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u80YjQ2jMc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u80YjQ2jMc .navbar.navbar-short {
  min-height: 60px;
}
.cid-u80YjQ2jMc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u80YjQ2jMc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u80YjQ2jMc .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u80YjQ2jMc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u80YjQ2jMc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u80YjQ2jMc .dropdown-item.active,
.cid-u80YjQ2jMc .dropdown-item:active {
  background-color: transparent;
}
.cid-u80YjQ2jMc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u80YjQ2jMc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u80YjQ2jMc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u80YjQ2jMc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u80YjQ2jMc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u80YjQ2jMc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u80YjQ2jMc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u80YjQ2jMc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u80YjQ2jMc .navbar {
    height: 70px;
  }
  .cid-u80YjQ2jMc .navbar.opened {
    height: auto;
  }
  .cid-u80YjQ2jMc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u80YjQ2jMc .container,
.cid-u80YjQ2jMc .container-fluid {
  position: relative;
  min-height: 108px;
}
.cid-u80YjQ2jMc .navbar-short {
  background-color: #ffffff !important;
}
.cid-u80YjQ2jMc .navbar-short .container,
.cid-u80YjQ2jMc .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-u80YjQ2jMc .navbar-short .container:before,
.cid-u80YjQ2jMc .navbar-short .container-fluid:before {
  display: none;
}
.cid-u80YjQ2jMc .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-u80YjQ2jMc .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-u80YjQ2jMc .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .navbar {
    overflow: hidden;
  }
  .cid-u80YjQ2jMc .container,
  .cid-u80YjQ2jMc .container-fluid {
    min-height: 85px;
  }
  .cid-u80YjQ2jMc .navbar-brand {
    min-height: 85px;
  }
  .cid-u80YjQ2jMc .navbar-short .container,
  .cid-u80YjQ2jMc .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-u80YjQ2jMc .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-u80YjQ2jMc .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-u80YjQ2jMc .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-u80YjQ2jMc .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-u80YjQ2jMc .mbr-section-btn {
    text-align: left;
  }
  .cid-u80YjQ2jMc .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-u80YjQ2jMc .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-u70jxUxVFl {
  background-image: url("../../../assets/images/sarika-waterfall-1920x1280.jpg");
}
.cid-u70jxUxVFl .mbr-overlay {
  background: #000000;
}
.cid-u70jxUxVFl .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-u70jxUxVFl .mbr-section-subtitle,
.cid-u70jxUxVFl mbr-section-btn {
  color: #ffffff;
}
.cid-u70jxUxVFl B {
  color: #333333;
}
.cid-u70jxUxVFl H1 {
  color: #ffffff;
  text-shadow: 2px 2px 4px black;
}
.cid-u70jxWqfRY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-u70jxWqfRY .mbr-fallback-image.disabled {
  display: none;
}
.cid-u70jxWqfRY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u70jxWqfRY .mbr-section-subtitle {
  color: #08487d;
  text-align: center;
}
.cid-u70jxWqfRY .mbr-section-title {
  color: #c34fce;
}
.cid-u8kjbIVuVL {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u8kjbIVuVL .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u8kjbIVuVL .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u8kjbIVuVL .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u8kjbIVuVL .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u8kjbIVuVL .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f7;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u8kjbIVuVL .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-u8kjbIVuVL .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-u8kjbIVuVL .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-u8kjbIVuVL .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-u8kjbIVuVL .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-u8kjbIVuVL .mbr-gallery-filter ul {
  display: block;
}
.cid-u8kjbIVuVL .mbr-gallery-filter ul li {
  position: relative;
}
.cid-u8kjbIVuVL .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-u8kjbIVuVL .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-u8kjbIVuVL .mbr-gallery-filter li.active::after,
.cid-u8kjbIVuVL .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-u8kjbIVuVL .mbr-gallery-title {
  transition: all.3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-u8kjbIVuVL .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-u8kjbIVuVL .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-u8kjbIVuVL .icon-focus:before {
  content: '\e95e';
}
.cid-u8kjbIVuVL .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-u8kjbIVuVL .mbr-section-title {
  margin: 0;
}
.cid-u8kjbIVuVL .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-u8kjbIVuVL .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-u8kjbIVuVL .mbr-gallery-item > div > span {
  color: #232323;
}
.cid-u8kjbIVuVL .mbr-section-subtitle {
  color: #000000;
}
.cid-u8kkoaRe4v {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-u8kkoaRe4v .mbr-text {
  margin-bottom: 2.5rem;
}
.cid-u8kkoaRe4v .mbr-section-title {
  color: #03579e;
  margin-bottom: 1.2rem;
  letter-spacing: -2.8px;
}
.cid-u8kkoaRe4v img {
  height: 100%;
  object-fit: cover;
}
.cid-u8kkoaRe4v .mbr-figure {
  height: 100%;
}
.cid-u8kkoaRe4v .row {
  margin: 0;
  align-items: center;
}
.cid-u8kkoaRe4v .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-u8kkoaRe4v .img-block {
    margin-top: 1rem;
    padding: 0;
  }
  .cid-u8kkoaRe4v .text-block {
    margin-bottom: 1rem;
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-u8kkoaRe4v .img-block {
    margin-top: 1rem;
    padding: 0;
  }
  .cid-u8kkoaRe4v .text-block {
    margin-bottom: 1rem;
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-u8kkoaRe4v .container {
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .cid-u8kkoaRe4v .img-block {
    padding-left: 6rem;
  }
}
.cid-u8kkoaRe4v .mbr-section-subtitle {
  font-weight: 700 !important;
}
.cid-u8kkoaRe4v .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8kkoaRe4v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8kkoaRe4v .mbr-text,
.cid-u8kkoaRe4v .mbr-section-btn {
  color: #000000;
}
.cid-u70jxYnlzM {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #03579e;
}
.cid-u70jxYnlzM .mbr-section-subtitle {
  color: #999999;
  font-weight: 700;
}
.cid-u70jxYnlzM .mbr-text {
  color: #777777;
  margin-top: 1.2rem;
}
.cid-u70jxYnlzM H2 {
  color: #ffffff;
}
.cid-u70jxZivfX {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #03579e;
}
.cid-u70jxZivfX .mbr-iconfont-2 {
  color: #42474c !important;
  margin: 0 0.5rem;
}
.cid-u70jxZivfX .mbr-iconfont-1 {
  font-size: 3.1rem;
  color: #42474c;
}
.cid-u70jxZivfX .social-list {
  display: flex;
  justify-content: center;
}
.cid-u70jxZivfX .card-inner {
  transition: 0.7s;
}
.cid-u70jxZivfX .btn {
  margin-left: 0rem;
}
.cid-u70jxZivfX .row {
  padding-bottom: 8rem;
}
.cid-u70jxZivfX .link {
  margin: 0;
}
.cid-u70jxZivfX .card-title {
  position: relative;
}
.cid-u70jxZivfX .mbr-text {
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.cid-u70jxZivfX .card-box {
  position: relative;
}
.cid-u70jxZivfX .card-img {
  margin-bottom: 1.5rem;
}
.cid-u70jxZivfX .mbr-section-title {
  margin-bottom: 1.5rem;
}
@media (max-width: 992px) {
  .cid-u70jxZivfX .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-u70jxZivfX .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u70jxZivfX .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-u70jxZivfX .mbr-text,
.cid-u70jxZivfX .link {
  color: #ffffff;
}
.cid-u70jy0kWAa {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #08487d;
}
.cid-u70jy0kWAa .media-container-row {
  align-items: center;
}
.cid-u70jy0kWAa .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u70jy0kWAa .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u70jy0kWAa .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u70jy0kWAa .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-u70jy0kWAa .foot-menu-item {
  transform: 0.2s;
}
.cid-u70jy0kWAa .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-u70jy0kWAa .foot-menu {
    justify-content: center;
  }
  .cid-u70jy0kWAa .mbr-text {
    text-align: center;
  }
  .cid-u70jy0kWAa .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-u70jy0kWAa .foot-menu {
    justify-content: flex-end;
  }
}
.cid-u70jy0kWAa .link:hover {
  text-decoration: underline;
}
.cid-u70jy0kWAa .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #a3a3a3;
}
.cid-u70jy0kWAa .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-u70jy0kWAa .container {
    padding: 0;
  }
}
.cid-u70jy0kWAa .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-u80YjQ2jMc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u80YjQ2jMc nav.navbar {
  position: fixed;
}
.cid-u80YjQ2jMc .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-u80YjQ2jMc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u80YjQ2jMc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u80YjQ2jMc .dropdown-item:hover,
.cid-u80YjQ2jMc .dropdown-item:focus {
  background: #03579e !important;
  color: white !important;
}
.cid-u80YjQ2jMc .dropdown-item:hover span {
  color: white;
}
.cid-u80YjQ2jMc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u80YjQ2jMc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u80YjQ2jMc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u80YjQ2jMc .nav-link {
  position: relative;
}
.cid-u80YjQ2jMc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u80YjQ2jMc .container {
    flex-wrap: nowrap;
  }
}
.cid-u80YjQ2jMc .navbar-nav {
  margin: 0 auto;
}
.cid-u80YjQ2jMc .dropdown-menu,
.cid-u80YjQ2jMc .navbar.opened {
  background: #ffffff !important;
}
.cid-u80YjQ2jMc .nav-item:focus,
.cid-u80YjQ2jMc .nav-link:focus {
  outline: none;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u80YjQ2jMc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u80YjQ2jMc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u80YjQ2jMc .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;
  border: none !important;
  box-shadow: none !important;
}
.cid-u80YjQ2jMc .navbar.opened {
  transition: all 0.3s;
}
.cid-u80YjQ2jMc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u80YjQ2jMc .navbar .navbar-logo img {
  width: auto;
}
.cid-u80YjQ2jMc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u80YjQ2jMc .navbar.collapsed {
  justify-content: center;
}
.cid-u80YjQ2jMc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u80YjQ2jMc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u80YjQ2jMc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u80YjQ2jMc .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-u80YjQ2jMc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u80YjQ2jMc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u80YjQ2jMc .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-u80YjQ2jMc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u80YjQ2jMc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u80YjQ2jMc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u80YjQ2jMc .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u80YjQ2jMc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u80YjQ2jMc .navbar.navbar-short {
  min-height: 60px;
}
.cid-u80YjQ2jMc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u80YjQ2jMc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u80YjQ2jMc .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u80YjQ2jMc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u80YjQ2jMc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u80YjQ2jMc .dropdown-item.active,
.cid-u80YjQ2jMc .dropdown-item:active {
  background-color: transparent;
}
.cid-u80YjQ2jMc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u80YjQ2jMc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u80YjQ2jMc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u80YjQ2jMc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u80YjQ2jMc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u80YjQ2jMc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u80YjQ2jMc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u80YjQ2jMc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u80YjQ2jMc .navbar {
    height: 70px;
  }
  .cid-u80YjQ2jMc .navbar.opened {
    height: auto;
  }
  .cid-u80YjQ2jMc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u80YjQ2jMc .container,
.cid-u80YjQ2jMc .container-fluid {
  position: relative;
  min-height: 108px;
}
.cid-u80YjQ2jMc .navbar-short {
  background-color: #ffffff !important;
}
.cid-u80YjQ2jMc .navbar-short .container,
.cid-u80YjQ2jMc .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-u80YjQ2jMc .navbar-short .container:before,
.cid-u80YjQ2jMc .navbar-short .container-fluid:before {
  display: none;
}
.cid-u80YjQ2jMc .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-u80YjQ2jMc .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-u80YjQ2jMc .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .navbar {
    overflow: hidden;
  }
  .cid-u80YjQ2jMc .container,
  .cid-u80YjQ2jMc .container-fluid {
    min-height: 85px;
  }
  .cid-u80YjQ2jMc .navbar-brand {
    min-height: 85px;
  }
  .cid-u80YjQ2jMc .navbar-short .container,
  .cid-u80YjQ2jMc .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-u80YjQ2jMc .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-u80YjQ2jMc .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-u80YjQ2jMc .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-u80YjQ2jMc .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-u80YjQ2jMc .mbr-section-btn {
    text-align: left;
  }
  .cid-u80YjQ2jMc .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-u80YjQ2jMc .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-u80RoK5H25 {
  background-image: url("../../../assets/images/beautiful-spring-meadow-with-white-flowers-rays-setting-sun-2000x1125.jpg");
}
.cid-u80RoK5H25 .mbr-overlay {
  background: #444444;
}
.cid-u80RoK5H25 .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-u80RoK5H25 .mbr-section-subtitle,
.cid-u80RoK5H25 mbr-section-btn {
  color: #ffffff;
}
.cid-u80RoK5H25 B {
  color: #333333;
}
.cid-u80RoK5H25 H1 {
  color: #ffffff;
  text-shadow: 2px 2px 4px black;
}
.cid-u80RoKNwEz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-u80RoKNwEz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u80RoKNwEz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u80RoKNwEz .mbr-section-subtitle {
  color: #08487d;
  text-align: center;
}
.cid-u80RoKNwEz .mbr-section-title {
  color: #c34fce;
}
.cid-u80RoL5Z3h {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u80RoL5Z3h .mbr-fallback-image.disabled {
  display: none;
}
.cid-u80RoL5Z3h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u80RoL5Z3h .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-u80RoL5Z3h .mbr-section-title {
  color: #c34fce;
}
.cid-u80RoLOM8u {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-u80RoLOM8u .mbr-overlay {
  background-color: #232323;
  opacity: 0.5;
}
.cid-u80RoLOM8u .mbr-section-subtitle {
  font-weight: 700 !important;
  color: #80c5ff;
  margin-bottom: 0.7rem;
}
.cid-u80RoLOM8u input,
.cid-u80RoLOM8u textarea {
  font-size: 14px;
}
.cid-u80RoLOM8u input {
  padding: 1.5rem 1.8rem!important;
  border-radius: 50px;
}
.cid-u80RoLOM8u textarea {
  padding: 0.9rem 2rem!important;
  border-radius: 30px;
  height: 100%;
}
.cid-u80RoLOM8u .form-group {
  margin-bottom: 1.9rem;
  padding: 0rem;
}
.cid-u80RoLOM8u .col-auto {
  width: 100%;
  text-align: center;
}
.cid-u80RoLOM8u img {
  width: 90%;
  border-radius: 8px;
}
.cid-u80RoLOM8u .mbr-form .btn {
  margin: .4rem .4rem;
  margin-left: 0rem;
}
.cid-u80RoLOM8u .btn {
  padding: 1rem 3.5rem!important;
}
.cid-u80RoLOM8u .title-block {
  margin-bottom: 2rem;
}
.cid-u80RoLOM8u .form-control,
.cid-u80RoLOM8u .field-input {
  background-color: #ffffff;
  border-color: #e2e3e7;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-u80RoLOM8u .form-control:hover,
.cid-u80RoLOM8u .field-input:hover {
  background-color: #e2e3e7;
  border-color: #e2e3e7;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-u80RoLOM8u .form-control:focus,
.cid-u80RoLOM8u .field-input:focus {
  background-color: #ffffff;
  border-color: #e2e3e7;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-u80RoLOM8u input::-webkit-input-placeholder,
.cid-u80RoLOM8u textarea::-webkit-input-placeholder {
  color: #807d78;
}
.cid-u80RoLOM8u input:-moz-placeholder,
.cid-u80RoLOM8u textarea:-moz-placeholder {
  color: #807d78;
}
.cid-u80RoLOM8u .jq-selectbox li,
.cid-u80RoLOM8u .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-u80RoLOM8u .jq-selectbox li:hover,
.cid-u80RoLOM8u .jq-selectbox li.selected {
  background-color: #e2e3e7;
  color: #000000;
}
.cid-u80RoLOM8u .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-u80RoLOM8u .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #e2e3e7;
}
.cid-u80RoLOM8u H5 {
  padding-bottom: 2rem;
  color: #03579e;
}
.cid-u80RoLOM8u .mbr-text {
  color: #777777;
}
.cid-u80RoLOM8u .mbr-form {
  padding: 0rem;
}
.cid-u80RoLOM8u .btn-form {
  margin-top: 0.2rem;
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .cid-u80RoLOM8u .form-row {
    margin: 0;
  }
  .cid-u80RoLOM8u .btn-form {
    width: 100%;
    padding-right: 1rem;
  }
  .cid-u80RoLOM8u .btn {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-u80RoLOM8u img {
    width: 100%;
  }
}
.cid-u80RoLOM8u .form-row > [class*=col-] {
  padding: 0 1rem;
}
.cid-u80RoM7fzd {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #03579e;
}
.cid-u80RoM7fzd .mbr-section-subtitle {
  color: #999999;
  font-weight: 700;
}
.cid-u80RoM7fzd .mbr-text {
  color: #777777;
  margin-top: 1.2rem;
}
.cid-u80RoM7fzd H2 {
  color: #ffffff;
}
.cid-u80RoMnCHX {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #03579e;
}
.cid-u80RoMnCHX .mbr-iconfont-2 {
  color: #42474c !important;
  margin: 0 0.5rem;
}
.cid-u80RoMnCHX .mbr-iconfont-1 {
  font-size: 3.1rem;
  color: #42474c;
}
.cid-u80RoMnCHX .social-list {
  display: flex;
  justify-content: center;
}
.cid-u80RoMnCHX .card-inner {
  transition: 0.7s;
}
.cid-u80RoMnCHX .btn {
  margin-left: 0rem;
}
.cid-u80RoMnCHX .row {
  padding-bottom: 8rem;
}
.cid-u80RoMnCHX .link {
  margin: 0;
}
.cid-u80RoMnCHX .card-title {
  position: relative;
}
.cid-u80RoMnCHX .mbr-text {
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.cid-u80RoMnCHX .card-box {
  position: relative;
}
.cid-u80RoMnCHX .card-img {
  margin-bottom: 1.5rem;
}
.cid-u80RoMnCHX .mbr-section-title {
  margin-bottom: 1.5rem;
}
@media (max-width: 992px) {
  .cid-u80RoMnCHX .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-u80RoMnCHX .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u80RoMnCHX .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-u80RoMnCHX .mbr-text,
.cid-u80RoMnCHX .link {
  color: #ffffff;
}
.cid-u80RoMMXzv {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #08487d;
}
.cid-u80RoMMXzv .media-container-row {
  align-items: center;
}
.cid-u80RoMMXzv .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u80RoMMXzv .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u80RoMMXzv .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u80RoMMXzv .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-u80RoMMXzv .foot-menu-item {
  transform: 0.2s;
}
.cid-u80RoMMXzv .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-u80RoMMXzv .foot-menu {
    justify-content: center;
  }
  .cid-u80RoMMXzv .mbr-text {
    text-align: center;
  }
  .cid-u80RoMMXzv .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-u80RoMMXzv .foot-menu {
    justify-content: flex-end;
  }
}
.cid-u80RoMMXzv .link:hover {
  text-decoration: underline;
}
.cid-u80RoMMXzv .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #a3a3a3;
}
.cid-u80RoMMXzv .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-u80RoMMXzv .container {
    padding: 0;
  }
}
.cid-u80RoMMXzv .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-u80YjQ2jMc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u80YjQ2jMc nav.navbar {
  position: fixed;
}
.cid-u80YjQ2jMc .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-u80YjQ2jMc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u80YjQ2jMc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u80YjQ2jMc .dropdown-item:hover,
.cid-u80YjQ2jMc .dropdown-item:focus {
  background: #03579e !important;
  color: white !important;
}
.cid-u80YjQ2jMc .dropdown-item:hover span {
  color: white;
}
.cid-u80YjQ2jMc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u80YjQ2jMc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u80YjQ2jMc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u80YjQ2jMc .nav-link {
  position: relative;
}
.cid-u80YjQ2jMc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u80YjQ2jMc .container {
    flex-wrap: nowrap;
  }
}
.cid-u80YjQ2jMc .navbar-nav {
  margin: 0 auto;
}
.cid-u80YjQ2jMc .dropdown-menu,
.cid-u80YjQ2jMc .navbar.opened {
  background: #ffffff !important;
}
.cid-u80YjQ2jMc .nav-item:focus,
.cid-u80YjQ2jMc .nav-link:focus {
  outline: none;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u80YjQ2jMc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u80YjQ2jMc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u80YjQ2jMc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u80YjQ2jMc .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;
  border: none !important;
  box-shadow: none !important;
}
.cid-u80YjQ2jMc .navbar.opened {
  transition: all 0.3s;
}
.cid-u80YjQ2jMc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u80YjQ2jMc .navbar .navbar-logo img {
  width: auto;
}
.cid-u80YjQ2jMc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u80YjQ2jMc .navbar.collapsed {
  justify-content: center;
}
.cid-u80YjQ2jMc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u80YjQ2jMc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u80YjQ2jMc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u80YjQ2jMc .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-u80YjQ2jMc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u80YjQ2jMc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u80YjQ2jMc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u80YjQ2jMc .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-u80YjQ2jMc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u80YjQ2jMc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u80YjQ2jMc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u80YjQ2jMc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u80YjQ2jMc .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u80YjQ2jMc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u80YjQ2jMc .navbar.navbar-short {
  min-height: 60px;
}
.cid-u80YjQ2jMc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u80YjQ2jMc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u80YjQ2jMc .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u80YjQ2jMc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u80YjQ2jMc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u80YjQ2jMc .dropdown-item.active,
.cid-u80YjQ2jMc .dropdown-item:active {
  background-color: transparent;
}
.cid-u80YjQ2jMc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u80YjQ2jMc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u80YjQ2jMc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u80YjQ2jMc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u80YjQ2jMc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u80YjQ2jMc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u80YjQ2jMc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u80YjQ2jMc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u80YjQ2jMc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u80YjQ2jMc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u80YjQ2jMc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u80YjQ2jMc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u80YjQ2jMc .navbar {
    height: 70px;
  }
  .cid-u80YjQ2jMc .navbar.opened {
    height: auto;
  }
  .cid-u80YjQ2jMc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u80YjQ2jMc .container,
.cid-u80YjQ2jMc .container-fluid {
  position: relative;
  min-height: 108px;
}
.cid-u80YjQ2jMc .navbar-short {
  background-color: #ffffff !important;
}
.cid-u80YjQ2jMc .navbar-short .container,
.cid-u80YjQ2jMc .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-u80YjQ2jMc .navbar-short .container:before,
.cid-u80YjQ2jMc .navbar-short .container-fluid:before {
  display: none;
}
.cid-u80YjQ2jMc .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-u80YjQ2jMc .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-u80YjQ2jMc .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-u80YjQ2jMc .navbar {
    overflow: hidden;
  }
  .cid-u80YjQ2jMc .container,
  .cid-u80YjQ2jMc .container-fluid {
    min-height: 85px;
  }
  .cid-u80YjQ2jMc .navbar-brand {
    min-height: 85px;
  }
  .cid-u80YjQ2jMc .navbar-short .container,
  .cid-u80YjQ2jMc .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-u80YjQ2jMc .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-u80YjQ2jMc .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-u80YjQ2jMc .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-u80YjQ2jMc .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-u80YjQ2jMc .mbr-section-btn {
    text-align: left;
  }
  .cid-u80YjQ2jMc .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-u80YjQ2jMc .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-u8AvZjkIly {
  background-image: url("../../../assets/images/privacy-e-cyber-security-norme-1920x1080.jpg");
}
.cid-u8AvZjkIly .mbr-overlay {
  background: #000000;
}
.cid-u8AvZjkIly .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-u8AvZjkIly .mbr-section-subtitle,
.cid-u8AvZjkIly mbr-section-btn {
  color: #ffffff;
}
.cid-u8AvZjkIly B {
  color: #333333;
}
.cid-u8AvZjkIly H1 {
  color: #ffffff;
  text-shadow: 2px 2px 4px black;
}
.cid-u8AvZjC4w2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-u8AvZjC4w2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8AvZjC4w2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8AvZjC4w2 .mbr-section-subtitle {
  color: #08487d;
  text-align: center;
}
.cid-u8AvZjC4w2 .mbr-section-title {
  color: #c34fce;
}
.cid-u8AvZjOf6J {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u8AvZjOf6J .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8AvZjOf6J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8AvZjOf6J .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-u8AvZjOf6J .mbr-section-title {
  color: #c34fce;
}
.cid-u8AvZk0oTA {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #03579e;
}
.cid-u8AvZk0oTA .mbr-section-subtitle {
  color: #999999;
  font-weight: 700;
}
.cid-u8AvZk0oTA .mbr-text {
  color: #777777;
  margin-top: 1.2rem;
}
.cid-u8AvZk0oTA H2 {
  color: #ffffff;
}
.cid-u8AvZkcz3R {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #03579e;
}
.cid-u8AvZkcz3R .mbr-iconfont-2 {
  color: #42474c !important;
  margin: 0 0.5rem;
}
.cid-u8AvZkcz3R .mbr-iconfont-1 {
  font-size: 3.1rem;
  color: #42474c;
}
.cid-u8AvZkcz3R .social-list {
  display: flex;
  justify-content: center;
}
.cid-u8AvZkcz3R .card-inner {
  transition: 0.7s;
}
.cid-u8AvZkcz3R .btn {
  margin-left: 0rem;
}
.cid-u8AvZkcz3R .row {
  padding-bottom: 8rem;
}
.cid-u8AvZkcz3R .link {
  margin: 0;
}
.cid-u8AvZkcz3R .card-title {
  position: relative;
}
.cid-u8AvZkcz3R .mbr-text {
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.cid-u8AvZkcz3R .card-box {
  position: relative;
}
.cid-u8AvZkcz3R .card-img {
  margin-bottom: 1.5rem;
}
.cid-u8AvZkcz3R .mbr-section-title {
  margin-bottom: 1.5rem;
}
@media (max-width: 992px) {
  .cid-u8AvZkcz3R .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-u8AvZkcz3R .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u8AvZkcz3R .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-u8AvZkcz3R .mbr-text,
.cid-u8AvZkcz3R .link {
  color: #ffffff;
}
.cid-u8AvZkwquO {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #08487d;
}
.cid-u8AvZkwquO .media-container-row {
  align-items: center;
}
.cid-u8AvZkwquO .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u8AvZkwquO .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u8AvZkwquO .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u8AvZkwquO .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-u8AvZkwquO .foot-menu-item {
  transform: 0.2s;
}
.cid-u8AvZkwquO .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-u8AvZkwquO .foot-menu {
    justify-content: center;
  }
  .cid-u8AvZkwquO .mbr-text {
    text-align: center;
  }
  .cid-u8AvZkwquO .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-u8AvZkwquO .foot-menu {
    justify-content: flex-end;
  }
}
.cid-u8AvZkwquO .link:hover {
  text-decoration: underline;
}
.cid-u8AvZkwquO .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #a3a3a3;
}
.cid-u8AvZkwquO .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-u8AvZkwquO .container {
    padding: 0;
  }
}
.cid-u8AvZkwquO .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-u8AvZkLPWu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u8AvZkLPWu nav.navbar {
  position: fixed;
}
.cid-u8AvZkLPWu .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-u8AvZkLPWu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u8AvZkLPWu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u8AvZkLPWu .dropdown-item:hover,
.cid-u8AvZkLPWu .dropdown-item:focus {
  background: #03579e !important;
  color: white !important;
}
.cid-u8AvZkLPWu .dropdown-item:hover span {
  color: white;
}
.cid-u8AvZkLPWu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u8AvZkLPWu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u8AvZkLPWu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u8AvZkLPWu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u8AvZkLPWu .nav-link {
  position: relative;
}
.cid-u8AvZkLPWu .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u8AvZkLPWu .container {
    flex-wrap: nowrap;
  }
}
.cid-u8AvZkLPWu .navbar-nav {
  margin: 0 auto;
}
.cid-u8AvZkLPWu .dropdown-menu,
.cid-u8AvZkLPWu .navbar.opened {
  background: #ffffff !important;
}
.cid-u8AvZkLPWu .nav-item:focus,
.cid-u8AvZkLPWu .nav-link:focus {
  outline: none;
}
.cid-u8AvZkLPWu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u8AvZkLPWu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u8AvZkLPWu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u8AvZkLPWu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8AvZkLPWu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u8AvZkLPWu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u8AvZkLPWu .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;
  border: none !important;
  box-shadow: none !important;
}
.cid-u8AvZkLPWu .navbar.opened {
  transition: all 0.3s;
}
.cid-u8AvZkLPWu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u8AvZkLPWu .navbar .navbar-logo img {
  width: auto;
}
.cid-u8AvZkLPWu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u8AvZkLPWu .navbar.collapsed {
  justify-content: center;
}
.cid-u8AvZkLPWu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u8AvZkLPWu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u8AvZkLPWu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-u8AvZkLPWu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8AvZkLPWu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8AvZkLPWu .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-u8AvZkLPWu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8AvZkLPWu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u8AvZkLPWu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u8AvZkLPWu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8AvZkLPWu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8AvZkLPWu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u8AvZkLPWu .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-u8AvZkLPWu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u8AvZkLPWu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u8AvZkLPWu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u8AvZkLPWu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u8AvZkLPWu .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u8AvZkLPWu .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u8AvZkLPWu .navbar.navbar-short {
  min-height: 60px;
}
.cid-u8AvZkLPWu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u8AvZkLPWu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u8AvZkLPWu .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u8AvZkLPWu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8AvZkLPWu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8AvZkLPWu .dropdown-item.active,
.cid-u8AvZkLPWu .dropdown-item:active {
  background-color: transparent;
}
.cid-u8AvZkLPWu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8AvZkLPWu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8AvZkLPWu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8AvZkLPWu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u8AvZkLPWu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u8AvZkLPWu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8AvZkLPWu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u8AvZkLPWu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u8AvZkLPWu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u8AvZkLPWu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-u8AvZkLPWu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8AvZkLPWu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8AvZkLPWu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8AvZkLPWu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8AvZkLPWu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8AvZkLPWu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8AvZkLPWu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8AvZkLPWu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8AvZkLPWu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u8AvZkLPWu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u8AvZkLPWu .navbar {
    height: 70px;
  }
  .cid-u8AvZkLPWu .navbar.opened {
    height: auto;
  }
  .cid-u8AvZkLPWu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8AvZkLPWu .container,
.cid-u8AvZkLPWu .container-fluid {
  position: relative;
  min-height: 108px;
}
.cid-u8AvZkLPWu .navbar-short {
  background-color: #ffffff !important;
}
.cid-u8AvZkLPWu .navbar-short .container,
.cid-u8AvZkLPWu .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-u8AvZkLPWu .navbar-short .container:before,
.cid-u8AvZkLPWu .navbar-short .container-fluid:before {
  display: none;
}
.cid-u8AvZkLPWu .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-u8AvZkLPWu .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-u8AvZkLPWu .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 991px) {
  .cid-u8AvZkLPWu .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-u8AvZkLPWu .navbar {
    overflow: hidden;
  }
  .cid-u8AvZkLPWu .container,
  .cid-u8AvZkLPWu .container-fluid {
    min-height: 85px;
  }
  .cid-u8AvZkLPWu .navbar-brand {
    min-height: 85px;
  }
  .cid-u8AvZkLPWu .navbar-short .container,
  .cid-u8AvZkLPWu .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-u8AvZkLPWu .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-u8AvZkLPWu .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-u8AvZkLPWu .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-u8AvZkLPWu .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-u8AvZkLPWu .mbr-section-btn {
    text-align: left;
  }
  .cid-u8AvZkLPWu .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-u8AvZkLPWu .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
