.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Roboto', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Roboto', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.125rem;
}
.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #00adef !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #e43f3f !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #00adef !important;
  border-color: #00adef !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #006e98 !important;
  border-color: #006e98 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #006e98 !important;
  border-color: #006e98 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #35355a !important;
  border-color: #35355a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #151523 !important;
  border-color: #151523 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #151523 !important;
  border-color: #151523 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #00adef;
  color: #00adef;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #006e98 !important;
  background-color: transparent!important;
  border-color: #006e98 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #00adef !important;
  border-color: #00adef !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #35355a;
  color: #35355a;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #151523 !important;
  background-color: transparent!important;
  border-color: #151523 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #35355a !important;
  border-color: #35355a !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #e43f3f;
  color: #e43f3f;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b31919 !important;
  background-color: transparent!important;
  border-color: #b31919 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #00adef !important;
}
.text-secondary {
  color: #35355a !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #e43f3f !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #006389 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #0f0f1a !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #a61717 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #00adef;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #e43f3f;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #00adef;
  border-color: #00adef;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #00adef;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #bcecff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fdf2f2;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.125rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #00adef !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.125rem;
}
blockquote {
  border-color: #00adef;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #00adef;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #00adef;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #00adef;
  border-bottom-color: #00adef;
}
.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: #000000 !important;
  background-color: #00adef !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: #35355a !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='%2300adef' %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-tzUh7vAxON {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tzUh7vAxON nav.navbar {
  position: fixed;
}
.cid-tzUh7vAxON .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-tzUh7vAxON .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tzUh7vAxON .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tzUh7vAxON .dropdown-item:hover,
.cid-tzUh7vAxON .dropdown-item:focus {
  background: #00adef !important;
  color: white !important;
}
.cid-tzUh7vAxON .dropdown-item:hover span {
  color: white;
}
.cid-tzUh7vAxON .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tzUh7vAxON .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tzUh7vAxON .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tzUh7vAxON .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tzUh7vAxON .nav-link {
  position: relative;
}
.cid-tzUh7vAxON .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tzUh7vAxON .container {
    flex-wrap: wrap;
  }
}
.cid-tzUh7vAxON .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tzUh7vAxON .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tzUh7vAxON .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tzUh7vAxON .dropdown-menu,
.cid-tzUh7vAxON .navbar.opened {
  background: #ffffff !important;
}
.cid-tzUh7vAxON .nav-item:focus,
.cid-tzUh7vAxON .nav-link:focus {
  outline: none;
}
.cid-tzUh7vAxON .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tzUh7vAxON .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzUh7vAxON .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tzUh7vAxON .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tzUh7vAxON .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tzUh7vAxON .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tzUh7vAxON .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tzUh7vAxON .navbar.opened {
  transition: all 0.3s;
}
.cid-tzUh7vAxON .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tzUh7vAxON .navbar .navbar-logo img {
  width: auto;
}
.cid-tzUh7vAxON .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tzUh7vAxON .navbar.collapsed {
  justify-content: center;
}
.cid-tzUh7vAxON .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tzUh7vAxON .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 600px) {
  .cid-tzUh7vAxON .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tzUh7vAxON .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tzUh7vAxON .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tzUh7vAxON .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-tzUh7vAxON .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tzUh7vAxON .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tzUh7vAxON .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tzUh7vAxON .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tzUh7vAxON .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tzUh7vAxON .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tzUh7vAxON .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tzUh7vAxON .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-tzUh7vAxON .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tzUh7vAxON .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tzUh7vAxON .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tzUh7vAxON .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tzUh7vAxON .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tzUh7vAxON .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tzUh7vAxON .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tzUh7vAxON .navbar.navbar-short {
  min-height: 60px;
}
.cid-tzUh7vAxON .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tzUh7vAxON .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tzUh7vAxON .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tzUh7vAxON .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tzUh7vAxON .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tzUh7vAxON .dropdown-item.active,
.cid-tzUh7vAxON .dropdown-item:active {
  background-color: transparent;
}
.cid-tzUh7vAxON .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tzUh7vAxON .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tzUh7vAxON .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tzUh7vAxON .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tzUh7vAxON .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tzUh7vAxON .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzUh7vAxON ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tzUh7vAxON .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tzUh7vAxON button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tzUh7vAxON button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tzUh7vAxON button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tzUh7vAxON button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzUh7vAxON button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzUh7vAxON button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tzUh7vAxON nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzUh7vAxON nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tzUh7vAxON nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tzUh7vAxON nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzUh7vAxON .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tzUh7vAxON a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tzUh7vAxON .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tzUh7vAxON .navbar {
    height: 70px;
  }
  .cid-tzUh7vAxON .navbar.opened {
    height: auto;
  }
  .cid-tzUh7vAxON .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tzUhaLIflD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tzUhaLIflD .carousel {
  height: 700px;
}
.cid-tzUhaLIflD .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tzUhaLIflD .carousel-item,
.cid-tzUhaLIflD .carousel-inner {
    height: 100%;
}
.cid-tzUhaLIflD .carousel-caption {
  bottom: 40px;
}
.cid-tzUhaLIflD .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tzUhaLIflD .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tzUhaLIflD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tzUhaLIflD .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tzUhaLIflD .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tzUhaLIflD .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tzUhaLIflD .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tzUhaLIflD .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-tzUhaLIflD .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tzUhaLIflD .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tzUhaLIflD .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tzUhaLIflD .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tzUhaLIflD .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-tzUhaLIflD .carousel-indicators li.active,
.cid-tzUhaLIflD .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tzUhaLIflD .carousel-indicators li::after,
.cid-tzUhaLIflD .carousel-indicators li::before {
  content: none;
}
.cid-tzUhaLIflD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tzUhaLIflD .carousel-indicators {
    display: none !important;
  }
}
.cid-tzUiHD4Qys {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tzUiHD4Qys .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzUiHD4Qys .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAe8TLxxNc {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tAe8TLxxNc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAe8TLxxNc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tAe8TLxxNc .container {
    max-width: 1400px;
  }
}
.cid-tAe8TLxxNc .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tAe8TLxxNc .card-wrapper {
  margin-top: 3rem;
}
.cid-tAe8TLxxNc .row {
  justify-content: center;
}
.cid-tzUiBwdLKZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tzUiBwdLKZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzUiBwdLKZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 600px) {
  .cid-tzUiBwdLKZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzUiBwdLKZ .row {
  flex-direction: row-reverse;
}
.cid-tzUiBwdLKZ img {
    width: 100%;
    text-align: center;
}
@media (min-width: 600px) {
  .cid-tzUiBwdLKZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzUiDkSJV5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tzUiDkSJV5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzUiDkSJV5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 600px) {
  .cid-tzUiDkSJV5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzUiDkSJV5 img {
  width: 100%;
}
@media (min-width: 600px) {
  .cid-tzUiDkSJV5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzUl0W74RV {
  background-image: url("../../../assets/images/6-3.jpg");
}
.cid-tzUl0W74RV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzUl0W74RV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzUj7ex1xf {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzUkkR6an7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tzUkkR6an7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzUkkR6an7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 600px) {
  .cid-tzUkkR6an7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzUkkR6an7 .row {
  flex-direction: row-reverse;
}
.cid-tzUkkR6an7 img {
  width: 100%;
}
.cid-tzUkMREoAW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tzUkMREoAW .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tzUiXCyrr9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tzUiXCyrr9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzUiXCyrr9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center;
  width: 80%;
  height: 80%;
  position: absolute;
  top: 0;
}
@media (max-width: 600px) {
  .cid-tzUiXCyrr9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzUiXCyrr9 .row {
  flex-direction: row-reverse;
}
.cid-tzUiXCyrr9 img {
  width: 90%;
}
.cid-tzUkJ5jj8k {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tAsoY9JATa {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #00adef;
}
.cid-tAsoY9JATa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAsoY9JATa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAsoY9JATa .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tAsoY9JATa .container {
    max-width: 1400px;
  }
}
.cid-tAsoY9JATa .card {
  margin: auto;
}
.cid-tAsoY9JATa .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-tAsoY9JATa .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tAsoY9JATa .row {
  justify-content: center;
}
.cid-tAsoY9JATa H3 {
  color: #ffffff;
}
.cid-tAsoY9JATa .card-title,
.cid-tAsoY9JATa .card-box {
  color: #ffffff;
}
.cid-tAv1Fqf0HO {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #00adef;
}
.cid-tAv1Fqf0HO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAv1Fqf0HO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAv1Fqf0HO .img-wrapper {
  text-align: center;
}
.cid-tAv1Fqf0HO img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-tAv1Fqf0HO .row {
  align-items: flex-start;
}
.cid-tAv1Fqf0HO .card-wrapper {
  border-radius: 4px;
  background: #00adef;
}
@media (max-width: 992px) {
  .cid-tAv1Fqf0HO .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-tAv1Fqf0HO .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tAv1Fqf0HO .card-wrapper {
    padding: 1rem;
  }
}
.cid-tAv1Fqf0HO .card-title {
  color: #ffffff;
}
.cid-tAsp4J31BT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tAsp4J31BT .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tAsp4J31BT form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 600px) {
  .cid-tAsp4J31BT form.mbr-form {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAsp4J31BT form.mbr-form {
    padding: 1rem;
  }
}
.cid-tAsp4J31BT form.mbr-form .mbr-section-btn {
  text-align: center;
  margin-bottom: 1.2rem;
}
.cid-tAsp4J31BT form.mbr-form .mbr-section-btn .btn {
  width: 100%;
  height: 100%;
}
.cid-tCIAJQlrU5 {
  background-image: url("../../../assets/images/18-1.jpg");
}
.cid-tCIAJQlrU5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCIAJQlrU5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCIAJQlrU5 .mbr-section-title {
  color: #ffffff;
}
.cid-tCIAJQlrU5 .mbr-text,
.cid-tCIAJQlrU5 .mbr-section-btn {
  color: #ffffff;
}
.cid-tAteOX41ZE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tAteOX41ZE img,
.cid-tAteOX41ZE .item-img {
  width: 100%;
}
.cid-tAteOX41ZE .item:focus,
.cid-tAteOX41ZE span:focus {
  outline: none;
}
.cid-tAteOX41ZE .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tAteOX41ZE .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tAteOX41ZE .item {
  padding: 0;
  margin: 0;
}
.cid-tAteOX41ZE .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAteOX41ZE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAteOX41ZE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAteOX41ZE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAteOX41ZE .mbr-section-title {
  color: #232323;
}
.cid-tAsmAKM46D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tAsmAKM46D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAsmAKM46D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAsmAKM46D .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #00adef;
  margin-bottom: 2rem;
}
.cid-tAsmAKM46D .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-tAsmAKM46D .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tAsmAKM46D .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tAeaDzEMT3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tAeaDzEMT3 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tAeaDzEMT3 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tAeaDzEMT3 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tAeaDzEMT3 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tzUjP3fsWU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #35355a;
}
.cid-tzUjP3fsWU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzUjP3fsWU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzUjP3fsWU .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tzUjP3fsWU .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tzUjP3fsWU .row {
    text-align: center;
  }
  .cid-tzUjP3fsWU .social-row {
    justify-content: center;
  }
}
.cid-tzUjP3fsWU .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tzUjP3fsWU .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tzUjP3fsWU .list {
    margin-bottom: 0rem;
  }
}
.cid-tzUjP3fsWU .mbr-text {
  color: #ffffff;
}
.cid-tzUjP3fsWU .mbr-iconfont {
  color: black;
}
.cid-tAeaKIYHHC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tAeaKIYHHC nav.navbar {
  position: fixed;
}
.cid-tAeaKIYHHC .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-tAeaKIYHHC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tAeaKIYHHC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tAeaKIYHHC .dropdown-item:hover,
.cid-tAeaKIYHHC .dropdown-item:focus {
  background: #00adef !important;
  color: white !important;
}
.cid-tAeaKIYHHC .dropdown-item:hover span {
  color: white;
}
.cid-tAeaKIYHHC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tAeaKIYHHC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tAeaKIYHHC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tAeaKIYHHC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tAeaKIYHHC .nav-link {
  position: relative;
}
.cid-tAeaKIYHHC .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tAeaKIYHHC .container {
    flex-wrap: wrap;
  }
}
.cid-tAeaKIYHHC .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tAeaKIYHHC .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tAeaKIYHHC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tAeaKIYHHC .dropdown-menu,
.cid-tAeaKIYHHC .navbar.opened {
  background: #ffffff !important;
}
.cid-tAeaKIYHHC .nav-item:focus,
.cid-tAeaKIYHHC .nav-link:focus {
  outline: none;
}
.cid-tAeaKIYHHC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tAeaKIYHHC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tAeaKIYHHC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tAeaKIYHHC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tAeaKIYHHC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tAeaKIYHHC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tAeaKIYHHC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tAeaKIYHHC .navbar.opened {
  transition: all 0.3s;
}
.cid-tAeaKIYHHC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tAeaKIYHHC .navbar .navbar-logo img {
  width: auto;
}
.cid-tAeaKIYHHC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tAeaKIYHHC .navbar.collapsed {
  justify-content: center;
}
.cid-tAeaKIYHHC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tAeaKIYHHC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tAeaKIYHHC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tAeaKIYHHC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tAeaKIYHHC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tAeaKIYHHC .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-tAeaKIYHHC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tAeaKIYHHC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tAeaKIYHHC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tAeaKIYHHC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tAeaKIYHHC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tAeaKIYHHC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tAeaKIYHHC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tAeaKIYHHC .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-tAeaKIYHHC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tAeaKIYHHC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tAeaKIYHHC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tAeaKIYHHC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tAeaKIYHHC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tAeaKIYHHC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tAeaKIYHHC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tAeaKIYHHC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tAeaKIYHHC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tAeaKIYHHC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tAeaKIYHHC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tAeaKIYHHC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tAeaKIYHHC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tAeaKIYHHC .dropdown-item.active,
.cid-tAeaKIYHHC .dropdown-item:active {
  background-color: transparent;
}
.cid-tAeaKIYHHC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tAeaKIYHHC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tAeaKIYHHC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tAeaKIYHHC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tAeaKIYHHC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tAeaKIYHHC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tAeaKIYHHC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tAeaKIYHHC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tAeaKIYHHC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tAeaKIYHHC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tAeaKIYHHC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tAeaKIYHHC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAeaKIYHHC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAeaKIYHHC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tAeaKIYHHC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAeaKIYHHC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tAeaKIYHHC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tAeaKIYHHC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAeaKIYHHC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tAeaKIYHHC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tAeaKIYHHC .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tAeaKIYHHC .navbar {
    height: 70px;
  }
  .cid-tAeaKIYHHC .navbar.opened {
    height: auto;
  }
  .cid-tAeaKIYHHC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tAebTQq7WA {
  background-image: url("../../../assets/images/14-3.jpg");
}
.cid-tAebTQq7WA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAebTQq7WA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAebTQq7WA .mbr-section-title {
  color: #ffffff;
}
.cid-tAebTQq7WA .mbr-text,
.cid-tAebTQq7WA .mbr-section-btn {
  color: #ffffff;
}
.cid-tAeaKJSe64 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tAeaKJSe64 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAeaKJSe64 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAeaKKwkwG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tAeaKKwkwG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAeaKKwkwG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 600px) {
  .cid-tAeaKKwkwG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAeaKKwkwG .row {
  flex-direction: row-reverse;
}
.cid-tAeaKKwkwG img {
  width: 100%;
}
@media (min-width: 600px) {
  .cid-tAeaKKwkwG .text-wrapper {
    padding: 2rem;
  }
}
.cid-tAeaKKR16l {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tAeaKKR16l .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAeaKKR16l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 600px) {
  .cid-tAeaKKR16l .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAeaKKR16l img {
  width: 100%;
}
@media (min-width: 600px) {
  .cid-tAeaKKR16l .text-wrapper {
    padding: 2rem;
  }
}
.cid-tArSYH2C0i {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tArSYH2C0i .mbr-fallback-image.disabled {
  display: none;
}
.cid-tArSYH2C0i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 600px) {
  .cid-tArSYH2C0i .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tArSYH2C0i .row {
  flex-direction: row-reverse;
}
.cid-tArSYH2C0i img {
  width: 100%;
}
@media (min-width: 600px) {
  .cid-tArSYH2C0i .text-wrapper {
    padding: 2rem;
  }
}
.cid-tAeaKLLbR0 {
  background-image: url("../../../assets/images/18-2.jpg");
}
.cid-tAeaKLLbR0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAeaKLLbR0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAeaKLLbR0 .mbr-section-title {
  color: #00adef;
}
.cid-tAeaKLZbXB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tArTN5rmm6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tArTN5rmm6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tArTN5rmm6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tArTN5rmm6 .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 600px) {
  .cid-tArTN5rmm6 .card {
    margin-bottom: 2rem!important;
  }
  .cid-tArTN5rmm6 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 600px) {
  .cid-tArTN5rmm6 .link-wrap {
    align-items: center;
  }
}
.cid-tArTN5rmm6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tArVORxAdb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tArVORxAdb .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tArVORxAdb form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-tArVORxAdb form.mbr-form {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tArVORxAdb form.mbr-form {
    padding: 1rem;
  }
}
.cid-tArVORxAdb form.mbr-form .mbr-section-btn {
  text-align: center;
  margin-bottom: 1.2rem;
}
.cid-tArVORxAdb form.mbr-form .mbr-section-btn .btn {
  width: 100%;
  height: 100%;
}
.cid-tAeaKN1wa0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tAeaKN1wa0 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tAeaKN1wa0 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tAeaKN1wa0 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tAeaKN1wa0 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tAeaKNf1gZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #35355a;
}
.cid-tAeaKNf1gZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAeaKNf1gZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAeaKNf1gZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tAeaKNf1gZ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tAeaKNf1gZ .row {
    text-align: center;
  }
  .cid-tAeaKNf1gZ .social-row {
    justify-content: center;
  }
}
.cid-tAeaKNf1gZ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tAeaKNf1gZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tAeaKNf1gZ .list {
    margin-bottom: 0rem;
  }
}
.cid-tAeaKNf1gZ .mbr-text {
  color: #ffffff;
}
.cid-tAeaKNf1gZ .mbr-iconfont {
  color: black;
}
.cid-tAeaUaIUBd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tAeaUaIUBd nav.navbar {
  position: fixed;
}
.cid-tAeaUaIUBd .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-tAeaUaIUBd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tAeaUaIUBd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tAeaUaIUBd .dropdown-item:hover,
.cid-tAeaUaIUBd .dropdown-item:focus {
  background: #00adef !important;
  color: white !important;
}
.cid-tAeaUaIUBd .dropdown-item:hover span {
  color: white;
}
.cid-tAeaUaIUBd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tAeaUaIUBd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tAeaUaIUBd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tAeaUaIUBd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tAeaUaIUBd .nav-link {
  position: relative;
}
.cid-tAeaUaIUBd .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tAeaUaIUBd .container {
    flex-wrap: wrap;
  }
}
.cid-tAeaUaIUBd .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tAeaUaIUBd .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tAeaUaIUBd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tAeaUaIUBd .dropdown-menu,
.cid-tAeaUaIUBd .navbar.opened {
  background: #ffffff !important;
}
.cid-tAeaUaIUBd .nav-item:focus,
.cid-tAeaUaIUBd .nav-link:focus {
  outline: none;
}
.cid-tAeaUaIUBd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tAeaUaIUBd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tAeaUaIUBd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tAeaUaIUBd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tAeaUaIUBd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tAeaUaIUBd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tAeaUaIUBd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tAeaUaIUBd .navbar.opened {
  transition: all 0.3s;
}
.cid-tAeaUaIUBd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tAeaUaIUBd .navbar .navbar-logo img {
  width: auto;
}
.cid-tAeaUaIUBd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tAeaUaIUBd .navbar.collapsed {
  justify-content: center;
}
.cid-tAeaUaIUBd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tAeaUaIUBd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tAeaUaIUBd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tAeaUaIUBd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tAeaUaIUBd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tAeaUaIUBd .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-tAeaUaIUBd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tAeaUaIUBd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tAeaUaIUBd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tAeaUaIUBd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tAeaUaIUBd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tAeaUaIUBd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tAeaUaIUBd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tAeaUaIUBd .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-tAeaUaIUBd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tAeaUaIUBd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tAeaUaIUBd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tAeaUaIUBd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tAeaUaIUBd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tAeaUaIUBd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tAeaUaIUBd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tAeaUaIUBd .navbar.navbar-short {
  min-height: 60px;
}
.cid-tAeaUaIUBd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tAeaUaIUBd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tAeaUaIUBd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tAeaUaIUBd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tAeaUaIUBd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tAeaUaIUBd .dropdown-item.active,
.cid-tAeaUaIUBd .dropdown-item:active {
  background-color: transparent;
}
.cid-tAeaUaIUBd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tAeaUaIUBd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tAeaUaIUBd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tAeaUaIUBd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tAeaUaIUBd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tAeaUaIUBd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tAeaUaIUBd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tAeaUaIUBd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tAeaUaIUBd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tAeaUaIUBd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tAeaUaIUBd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tAeaUaIUBd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAeaUaIUBd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAeaUaIUBd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tAeaUaIUBd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAeaUaIUBd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tAeaUaIUBd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tAeaUaIUBd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAeaUaIUBd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tAeaUaIUBd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tAeaUaIUBd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tAeaUaIUBd .navbar {
    height: 70px;
  }
  .cid-tAeaUaIUBd .navbar.opened {
    height: auto;
  }
  .cid-tAeaUaIUBd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tArW4EyugF {
  background-image: url("../../../assets/images/20-1.jpg");
}
.cid-tArW4EyugF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tArW4EyugF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tArW4EyugF .mbr-text,
.cid-tArW4EyugF .mbr-section-btn {
  color: #ffffff;
}
.cid-tArW4EyugF .mbr-section-title {
  color: #ffffff;
}
.cid-tAeaUbfd8p {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tAeaUbfd8p .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAeaUbfd8p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAeaUbfd8p .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tAsakMH6VV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tAsakMH6VV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAsakMH6VV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 600px) {
  .cid-tAsakMH6VV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAsakMH6VV img {
  width: 100%;
}
@media (min-width: 600px) {
  .cid-tAsakMH6VV .text-wrapper {
    padding: 2rem;
  }
}
.cid-tAsaLug7qv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tArWa2BZen {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tArWa2BZen .mbr-fallback-image.disabled {
  display: none;
}
.cid-tArWa2BZen .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tArWa2BZen .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tArWa2BZen .container {
    max-width: 1400px;
  }
}
.cid-tArWa2BZen .card {
  margin: auto;
}
.cid-tArWa2BZen .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tArWa2BZen .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tArWa2BZen .row {
  justify-content: center;
}
.cid-tAsbbhZHuB {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tAsbbhZHuB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAsbbhZHuB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAsbbhZHuB .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tAsbbhZHuB .container {
    max-width: 1400px;
  }
}
.cid-tAsbbhZHuB .card {
  margin: auto;
}
.cid-tAsbbhZHuB .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tAsbbhZHuB .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tAsbbhZHuB .row {
  justify-content: center;
}
.cid-tAsbcrcsoh {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tAsbcrcsoh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAsbcrcsoh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAsbcrcsoh .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tAsbcrcsoh .container {
    max-width: 1400px;
  }
}
.cid-tAsbcrcsoh .card {
  margin: auto;
}
.cid-tAsbcrcsoh .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tAsbcrcsoh .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tAsbcrcsoh .row {
  justify-content: center;
}
.cid-tAsbi3jxJm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #4479d9;
}
.cid-tAsbi3jxJm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAsbi3jxJm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAsbi3jxJm .mbr-section-title {
  color: #ffffff;
}
.cid-tAsbi3jxJm .mbr-text,
.cid-tAsbi3jxJm .mbr-section-btn {
  color: #ffffff;
}
.cid-tAeaUdv6Kq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tAeaUdv6Kq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAeaUdv6Kq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 600px) {
  .cid-tAeaUdv6Kq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAeaUdv6Kq .row {
  flex-direction: row-reverse;
}
.cid-tAeaUdv6Kq img {
  width: 100%;
	
}
.cid-tAeaUdPKgL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tAeaUdPKgL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAeaUdPKgL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 600px) {
  .cid-tAeaUdPKgL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAeaUdPKgL .row {
  flex-direction: row-reverse;
}
.cid-tAeaUdPKgL img {
  width: 90%;
}
.cid-tAslojarzR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tAslojarzR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAslojarzR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAslojarzR .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #00adef;
  margin-bottom: 2rem;
}
.cid-tAslojarzR .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-tAslojarzR .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tAslojarzR .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tAeaUerLgy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tAeaUerLgy .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tAeaUerLgy form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tAeaUerLgy form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tAeaUerLgy form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tAeaUeDnu4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #35355a;
}
.cid-tAeaUeDnu4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAeaUeDnu4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAeaUeDnu4 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tAeaUeDnu4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tAeaUeDnu4 .row {
    text-align: center;
  }
  .cid-tAeaUeDnu4 .social-row {
    justify-content: center;
  }
}
.cid-tAeaUeDnu4 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 600px) {
  .cid-tAeaUeDnu4 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 600px) {
  .cid-tAeaUeDnu4 .list {
    margin-bottom: 0rem;
  }
}
.cid-tAeaUeDnu4 .mbr-text {
  color: #ffffff;
}
.cid-tAeaUeDnu4 .mbr-iconfont {
  color: black;
}
.cid-tAeb0SlFNJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tAeb0SlFNJ nav.navbar {
  position: fixed;
}
.cid-tAeb0SlFNJ .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-tAeb0SlFNJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tAeb0SlFNJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tAeb0SlFNJ .dropdown-item:hover,
.cid-tAeb0SlFNJ .dropdown-item:focus {
  background: #00adef !important;
  color: white !important;
}
.cid-tAeb0SlFNJ .dropdown-item:hover span {
  color: white;
}
.cid-tAeb0SlFNJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tAeb0SlFNJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tAeb0SlFNJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tAeb0SlFNJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tAeb0SlFNJ .nav-link {
  position: relative;
}
.cid-tAeb0SlFNJ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tAeb0SlFNJ .container {
    flex-wrap: wrap;
  }
}
.cid-tAeb0SlFNJ .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tAeb0SlFNJ .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tAeb0SlFNJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tAeb0SlFNJ .dropdown-menu,
.cid-tAeb0SlFNJ .navbar.opened {
  background: #ffffff !important;
}
.cid-tAeb0SlFNJ .nav-item:focus,
.cid-tAeb0SlFNJ .nav-link:focus {
  outline: none;
}
.cid-tAeb0SlFNJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tAeb0SlFNJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tAeb0SlFNJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tAeb0SlFNJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tAeb0SlFNJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tAeb0SlFNJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tAeb0SlFNJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tAeb0SlFNJ .navbar.opened {
  transition: all 0.3s;
}
.cid-tAeb0SlFNJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tAeb0SlFNJ .navbar .navbar-logo img {
  width: auto;
}
.cid-tAeb0SlFNJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tAeb0SlFNJ .navbar.collapsed {
  justify-content: center;
}
.cid-tAeb0SlFNJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tAeb0SlFNJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 600px) {
  .cid-tAeb0SlFNJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tAeb0SlFNJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tAeb0SlFNJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tAeb0SlFNJ .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-tAeb0SlFNJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tAeb0SlFNJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tAeb0SlFNJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tAeb0SlFNJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tAeb0SlFNJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tAeb0SlFNJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tAeb0SlFNJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tAeb0SlFNJ .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-tAeb0SlFNJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tAeb0SlFNJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tAeb0SlFNJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tAeb0SlFNJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tAeb0SlFNJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tAeb0SlFNJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tAeb0SlFNJ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tAeb0SlFNJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tAeb0SlFNJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tAeb0SlFNJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tAeb0SlFNJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tAeb0SlFNJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tAeb0SlFNJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tAeb0SlFNJ .dropdown-item.active,
.cid-tAeb0SlFNJ .dropdown-item:active {
  background-color: transparent;
}
.cid-tAeb0SlFNJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tAeb0SlFNJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tAeb0SlFNJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tAeb0SlFNJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tAeb0SlFNJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tAeb0SlFNJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tAeb0SlFNJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tAeb0SlFNJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tAeb0SlFNJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tAeb0SlFNJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tAeb0SlFNJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tAeb0SlFNJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAeb0SlFNJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAeb0SlFNJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tAeb0SlFNJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAeb0SlFNJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tAeb0SlFNJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tAeb0SlFNJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAeb0SlFNJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tAeb0SlFNJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tAeb0SlFNJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tAeb0SlFNJ .navbar {
    height: 70px;
  }
  .cid-tAeb0SlFNJ .navbar.opened {
    height: auto;
  }
  .cid-tAeb0SlFNJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tAsFgsCk1b {
  background-image: url("../../../assets/images/26-1.jpg");
}
.cid-tAsFgsCk1b .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAsFgsCk1b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAsFgsCk1b .mbr-text,
.cid-tAsFgsCk1b .mbr-section-btn {
  color: #ffffff;
}
.cid-tAsFgsCk1b .mbr-section-title {
  color: #ffffff;
}
.cid-tAv9CBq1eT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tAv9CBq1eT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAv9CBq1eT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAv9CBq1eT .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #00adef;
  margin-bottom: 2rem;
}
.cid-tAv9CBq1eT .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-tAv9CBq1eT .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tAv9CBq1eT .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tAsHxv7ger {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tAsHxv7ger .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tAsHxv7ger form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tAsHxv7ger form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tAsHxv7ger form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tAtd36wsOT {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tAtd36wsOT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAtd36wsOT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAtd36wsOT .google-map {
  height: 30rem;
  position: relative;
}
.cid-tAtd36wsOT .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tAtd36wsOT .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tAtd36wsOT .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tAtd36wsOT .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tAeb0UXXd2 {
  background-image: url("../../../assets/images/25-1.jpg");
}
.cid-tAeb0UXXd2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAeb0UXXd2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAeb0Wrqsu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #35355a;
}
.cid-tAeb0Wrqsu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAeb0Wrqsu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAeb0Wrqsu .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tAeb0Wrqsu .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tAeb0Wrqsu .row {
    text-align: center;
  }
  .cid-tAeb0Wrqsu .social-row {
    justify-content: center;
  }
}
.cid-tAeb0Wrqsu .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 600px) {
  .cid-tAeb0Wrqsu .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 600px) {
  .cid-tAeb0Wrqsu .list {
    margin-bottom: 0rem;
  }
}
.cid-tAeb0Wrqsu .mbr-text {
  color: #ffffff;
}
.cid-tAeb0Wrqsu .mbr-iconfont {
  color: black;
}
.cid-tD2l40dBX1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tD2l40dBX1 nav.navbar {
  position: fixed;
}
.cid-tD2l40dBX1 .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-tD2l40dBX1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tD2l40dBX1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tD2l40dBX1 .dropdown-item:hover,
.cid-tD2l40dBX1 .dropdown-item:focus {
  background: #00adef !important;
  color: white !important;
}
.cid-tD2l40dBX1 .dropdown-item:hover span {
  color: white;
}
.cid-tD2l40dBX1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tD2l40dBX1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tD2l40dBX1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tD2l40dBX1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tD2l40dBX1 .nav-link {
  position: relative;
}
.cid-tD2l40dBX1 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tD2l40dBX1 .container {
    flex-wrap: wrap;
  }
}
.cid-tD2l40dBX1 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tD2l40dBX1 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tD2l40dBX1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tD2l40dBX1 .dropdown-menu,
.cid-tD2l40dBX1 .navbar.opened {
  background: #ffffff !important;
}
.cid-tD2l40dBX1 .nav-item:focus,
.cid-tD2l40dBX1 .nav-link:focus {
  outline: none;
}
.cid-tD2l40dBX1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tD2l40dBX1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tD2l40dBX1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tD2l40dBX1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tD2l40dBX1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tD2l40dBX1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tD2l40dBX1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tD2l40dBX1 .navbar.opened {
  transition: all 0.3s;
}
.cid-tD2l40dBX1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tD2l40dBX1 .navbar .navbar-logo img {
  width: auto;
}
.cid-tD2l40dBX1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tD2l40dBX1 .navbar.collapsed {
  justify-content: center;
}
.cid-tD2l40dBX1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tD2l40dBX1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 600px) {
  .cid-tD2l40dBX1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tD2l40dBX1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tD2l40dBX1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tD2l40dBX1 .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-tD2l40dBX1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tD2l40dBX1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tD2l40dBX1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tD2l40dBX1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tD2l40dBX1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tD2l40dBX1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tD2l40dBX1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tD2l40dBX1 .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-tD2l40dBX1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tD2l40dBX1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tD2l40dBX1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tD2l40dBX1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tD2l40dBX1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tD2l40dBX1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tD2l40dBX1 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tD2l40dBX1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tD2l40dBX1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tD2l40dBX1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tD2l40dBX1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tD2l40dBX1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tD2l40dBX1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tD2l40dBX1 .dropdown-item.active,
.cid-tD2l40dBX1 .dropdown-item:active {
  background-color: transparent;
}
.cid-tD2l40dBX1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tD2l40dBX1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tD2l40dBX1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tD2l40dBX1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tD2l40dBX1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tD2l40dBX1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tD2l40dBX1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tD2l40dBX1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tD2l40dBX1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tD2l40dBX1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tD2l40dBX1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tD2l40dBX1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tD2l40dBX1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tD2l40dBX1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tD2l40dBX1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tD2l40dBX1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tD2l40dBX1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tD2l40dBX1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tD2l40dBX1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tD2l40dBX1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tD2l40dBX1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tD2l40dBX1 .navbar {
    height: 70px;
  }
  .cid-tD2l40dBX1 .navbar.opened {
    height: auto;
  }
  .cid-tD2l40dBX1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tD2Ey4beZR {
  background-image: url("../../../assets/images/30.jpg");
}
.cid-tD2Ey4beZR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD2Ey4beZR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD2Ey4beZR .mbr-section-title {
  color: #ffffff;
}
.cid-tD2Ey4beZR .mbr-text,
.cid-tD2Ey4beZR .mbr-section-btn {
  color: #ffffff;
}
.cid-tD2lBPgili {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tD2lBPgili .mbr-section-subtitle {
  color: #35355a;
}
.cid-tD2lBPgili .mbr-text {
  color: #000000;
}
.cid-tD2l42kWjb {
  background-image: url("../../../assets/images/25-1.jpg");
}
.cid-tD2l42kWjb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD2l42kWjb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD2l412gh4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tD2l412gh4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD2l412gh4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD2l412gh4 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #00adef;
  margin-bottom: 2rem;
}
.cid-tD2l412gh4 .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-tD2l412gh4 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tD2l412gh4 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tD2l41pGmt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tD2l41pGmt .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tD2l41pGmt form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tD2l41pGmt form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tD2l41pGmt form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tD2l42EV8w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #35355a;
}
.cid-tD2l42EV8w .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD2l42EV8w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD2l42EV8w .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tD2l42EV8w .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tD2l42EV8w .row {
    text-align: center;
  }
  .cid-tD2l42EV8w .social-row {
    justify-content: center;
  }
}
.cid-tD2l42EV8w .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tD2l42EV8w .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 600px) {
  .cid-tD2l42EV8w .list {
    margin-bottom: 0rem;
  }
}
.cid-tD2l42EV8w .mbr-text {
  color: #ffffff;
}
.cid-tD2l42EV8w .mbr-iconfont {
  color: black;
}
.cid-tD2l8ZREBY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tD2l8ZREBY nav.navbar {
  position: fixed;
}
.cid-tD2l8ZREBY .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-tD2l8ZREBY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tD2l8ZREBY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tD2l8ZREBY .dropdown-item:hover,
.cid-tD2l8ZREBY .dropdown-item:focus {
  background: #00adef !important;
  color: white !important;
}
.cid-tD2l8ZREBY .dropdown-item:hover span {
  color: white;
}
.cid-tD2l8ZREBY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tD2l8ZREBY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tD2l8ZREBY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tD2l8ZREBY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tD2l8ZREBY .nav-link {
  position: relative;
}
.cid-tD2l8ZREBY .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tD2l8ZREBY .container {
    flex-wrap: wrap;
  }
}
.cid-tD2l8ZREBY .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tD2l8ZREBY .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tD2l8ZREBY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tD2l8ZREBY .dropdown-menu,
.cid-tD2l8ZREBY .navbar.opened {
  background: #ffffff !important;
}
.cid-tD2l8ZREBY .nav-item:focus,
.cid-tD2l8ZREBY .nav-link:focus {
  outline: none;
}
.cid-tD2l8ZREBY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tD2l8ZREBY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tD2l8ZREBY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tD2l8ZREBY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tD2l8ZREBY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tD2l8ZREBY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tD2l8ZREBY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tD2l8ZREBY .navbar.opened {
  transition: all 0.3s;
}
.cid-tD2l8ZREBY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tD2l8ZREBY .navbar .navbar-logo img {
  width: auto;
}
.cid-tD2l8ZREBY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tD2l8ZREBY .navbar.collapsed {
  justify-content: center;
}
.cid-tD2l8ZREBY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tD2l8ZREBY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 600px) {
  .cid-tD2l8ZREBY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tD2l8ZREBY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tD2l8ZREBY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tD2l8ZREBY .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-tD2l8ZREBY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tD2l8ZREBY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tD2l8ZREBY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tD2l8ZREBY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tD2l8ZREBY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tD2l8ZREBY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tD2l8ZREBY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tD2l8ZREBY .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-tD2l8ZREBY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tD2l8ZREBY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tD2l8ZREBY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tD2l8ZREBY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tD2l8ZREBY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tD2l8ZREBY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tD2l8ZREBY .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tD2l8ZREBY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tD2l8ZREBY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tD2l8ZREBY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tD2l8ZREBY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tD2l8ZREBY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tD2l8ZREBY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tD2l8ZREBY .dropdown-item.active,
.cid-tD2l8ZREBY .dropdown-item:active {
  background-color: transparent;
}
.cid-tD2l8ZREBY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tD2l8ZREBY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tD2l8ZREBY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tD2l8ZREBY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tD2l8ZREBY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tD2l8ZREBY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tD2l8ZREBY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tD2l8ZREBY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tD2l8ZREBY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tD2l8ZREBY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tD2l8ZREBY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tD2l8ZREBY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tD2l8ZREBY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tD2l8ZREBY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tD2l8ZREBY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tD2l8ZREBY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tD2l8ZREBY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tD2l8ZREBY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tD2l8ZREBY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tD2l8ZREBY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tD2l8ZREBY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tD2l8ZREBY .navbar {
    height: 70px;
  }
  .cid-tD2l8ZREBY .navbar.opened {
    height: auto;
  }
  .cid-tD2l8ZREBY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tD2l90DdHU {
  background-image: url("../../../assets/images/26-1.jpg");
}
.cid-tD2l90DdHU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD2l90DdHU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD2l90DdHU .mbr-text,
.cid-tD2l90DdHU .mbr-section-btn {
  color: #ffffff;
}
.cid-tD2l90DdHU .mbr-section-title {
  color: #ffffff;
}
.cid-tD2KkQ9q6I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tD2l91i9EM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tD2l91i9EM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD2l91i9EM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD2l91i9EM .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #00adef;
  margin-bottom: 2rem;
}
.cid-tD2l91i9EM .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-tD2l91i9EM .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tD2l91i9EM .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tD2l91Wymg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tD2l91Wymg .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tD2l91Wymg form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tD2l91Wymg form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tD2l91Wymg form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tD2l93upFr {
  background-image: url("../../../assets/images/25-1.jpg");
}
.cid-tD2l93upFr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD2l93upFr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD2l949oDT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #35355a;
}
.cid-tD2l949oDT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD2l949oDT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD2l949oDT .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tD2l949oDT .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tD2l949oDT .row {
    text-align: center;
  }
  .cid-tD2l949oDT .social-row {
    justify-content: center;
  }
}
.cid-tD2l949oDT .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 600px) {
  .cid-tD2l949oDT .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 600px) {
  .cid-tD2l949oDT .list {
    margin-bottom: 0rem;
  }
}
.cid-tD2l949oDT .mbr-text {
  color: #ffffff;
}
.cid-tD2l949oDT .mbr-iconfont {
  color: black;
}
