body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #0000ff !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0000ff !important;
  border-color: #0000ff !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: #0000a8 !important;
  border-color: #0000a8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0000a8 !important;
  border-color: #0000a8 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0000ff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0000a8 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0000ff !important;
  border-color: #0000ff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  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: transparent!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: transparent;
  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: transparent!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: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  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: transparent!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: #0000ff !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000099 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #0000ff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0000ff;
  border-color: #0000ff;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #0000ff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ccccff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #0000ff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #0000ff;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0000ff;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0000ff;
}
.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: #0000ff;
  border-bottom-color: #0000ff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #0000ff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%230000ff' %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-sQTcLGgONU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQTcLGgONU nav.navbar {
  position: fixed;
}
.cid-sQTcLGgONU .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-sQTcLGgONU .wrapper {
    padding: 0;
  }
}
.cid-sQTcLGgONU .btn {
  border-radius: 30px;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQTcLGgONU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQTcLGgONU .dropdown-item:hover,
.cid-sQTcLGgONU .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-sQTcLGgONU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQTcLGgONU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQTcLGgONU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQTcLGgONU .nav-link {
  position: relative;
}
.cid-sQTcLGgONU .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQTcLGgONU .dropdown-menu,
.cid-sQTcLGgONU .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sQTcLGgONU .nav-item:focus,
.cid-sQTcLGgONU .nav-link:focus {
  outline: none;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQTcLGgONU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQTcLGgONU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQTcLGgONU .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: #bed3f9;
}
.cid-sQTcLGgONU .navbar.opened {
  transition: all 0.3s;
}
.cid-sQTcLGgONU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQTcLGgONU .navbar .navbar-logo img {
  width: auto;
}
.cid-sQTcLGgONU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQTcLGgONU .navbar.collapsed {
  justify-content: center;
}
.cid-sQTcLGgONU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQTcLGgONU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQTcLGgONU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQTcLGgONU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQTcLGgONU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQTcLGgONU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQTcLGgONU .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-sQTcLGgONU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQTcLGgONU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQTcLGgONU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQTcLGgONU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQTcLGgONU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQTcLGgONU .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQTcLGgONU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQTcLGgONU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQTcLGgONU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQTcLGgONU .dropdown-item.active,
.cid-sQTcLGgONU .dropdown-item:active {
  background-color: transparent;
}
.cid-sQTcLGgONU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQTcLGgONU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sQTcLGgONU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQTcLGgONU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQTcLGgONU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQTcLGgONU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQTcLGgONU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTcLGgONU .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-sQTcLGgONU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQTcLGgONU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQTcLGgONU .navbar {
    height: 70px;
  }
  .cid-sQTcLGgONU .navbar.opened {
    height: auto;
  }
  .cid-sQTcLGgONU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s48MCQYojq {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-s48MCQYojq .mbr-section-title {
  text-align: center;
}
.cid-s48MCQYojq .mbr-text,
.cid-s48MCQYojq .mbr-section-btn {
  color: #232323;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-s48MCQYojq .mbr-section-title,
  .cid-s48MCQYojq .mbr-section-btn,
  .cid-s48MCQYojq .mbr-text {
    text-align: center;
  }
}
.cid-s48udlf8KU {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-s48udlf8KU .mbr-section-title {
  text-align: center;
}
.cid-s48udlf8KU .mbr-section-subtitle {
  text-align: center;
}
.cid-s48upRUlSD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-s48upRUlSD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-s48upRUlSD .row {
  flex-direction: row-reverse;
}
.cid-s48upRUlSD img {
  width: 100%;
}
.cid-sQjnMyfQDC {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-sQjnMyfQDC .container {
    max-width: 1400px;
  }
}
.cid-sQjnMyfQDC .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-sQjnMyfQDC .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-sQjnMyfQDC .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sQjnMyfQDC .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-sQjnMyfQDC .card-wrapper {
  margin-top: 3rem;
}
.cid-sQjnMyfQDC .row {
  justify-content: center;
}
.cid-sQjnMyfQDC .mbr-section-title {
  color: #1a449a;
}
.cid-sQjnMyfQDC .card-title,
.cid-sQjnMyfQDC .iconfont-wrapper {
  color: #1a449a;
}
.cid-sQjnMyfQDC .card-text {
  color: #1a449a;
}
.cid-sQk4rz6C0D {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #bed3f9;
}
.cid-sQk4rz6C0D .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-sQk4rz6C0D .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-sQk4rz6C0D .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-sQk4rz6C0D .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-sQk4rz6C0D .navbar-nav {
    flex-direction: column;
  }
  .cid-sQk4rz6C0D .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-sQk4rz6C0D a {
  transition: color .3s;
}
.cid-sQk4rz6C0D a.text-danger:hover,
.cid-sQk4rz6C0D a.text-danger:focus,
.cid-sQk4rz6C0D a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
.cid-sQTbhrY3IB {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-sQTbhrY3IB .mbr-section-title {
  text-align: center;
  color: #0087ab;
}
.cid-sQTbhrY3IB .mbr-text,
.cid-sQTbhrY3IB .mbr-section-btn {
  color: #0087ab;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sQTbhrY3IB .mbr-section-title,
  .cid-sQTbhrY3IB .mbr-section-btn,
  .cid-sQTbhrY3IB .mbr-text {
    text-align: center;
  }
}
.cid-sQTbhJ1Y2w {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-sQTbhJ1Y2w .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQTbhJ1Y2w .row {
  flex-direction: row-reverse;
}
.cid-sQTbhJ1Y2w img {
  width: 100%;
}
.cid-sQTbhLCzlK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-sQTbhLCzlK ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-sQTbhLCzlK li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-sQTbhLCzlK ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-sQTbhLCzlK H3 {
  text-align: center;
}
.cid-tKZTzd96tr {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tKZTzd96tr .container {
    max-width: 1400px;
  }
}
.cid-tKZTzd96tr .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tKZTzd96tr .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tKZTzd96tr .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tKZTzd96tr .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tKZTzd96tr .card-wrapper {
  margin-top: 3rem;
}
.cid-tKZTzd96tr .row {
  justify-content: center;
}
.cid-tKZTzd96tr .mbr-section-title {
  color: #1a449a;
}
.cid-tKZTzd96tr .card-title,
.cid-tKZTzd96tr .iconfont-wrapper {
  color: #1a449a;
}
.cid-tKZTzd96tr .card-text {
  color: #1a449a;
}
.cid-sQTbi03jJ6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #bed3f9;
}
.cid-sQTbi03jJ6 .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-sQTbi03jJ6 .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-sQTbi03jJ6 .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-sQTbi03jJ6 .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-sQTbi03jJ6 .navbar-nav {
    flex-direction: column;
  }
  .cid-sQTbi03jJ6 .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-sQTbi03jJ6 a {
  transition: color .3s;
}
.cid-sQTbi03jJ6 a.text-danger:hover,
.cid-sQTbi03jJ6 a.text-danger:focus,
.cid-sQTbi03jJ6 a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
.cid-sQTcLGgONU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQTcLGgONU nav.navbar {
  position: fixed;
}
.cid-sQTcLGgONU .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-sQTcLGgONU .wrapper {
    padding: 0;
  }
}
.cid-sQTcLGgONU .btn {
  border-radius: 30px;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQTcLGgONU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQTcLGgONU .dropdown-item:hover,
.cid-sQTcLGgONU .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-sQTcLGgONU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQTcLGgONU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQTcLGgONU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQTcLGgONU .nav-link {
  position: relative;
}
.cid-sQTcLGgONU .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQTcLGgONU .dropdown-menu,
.cid-sQTcLGgONU .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sQTcLGgONU .nav-item:focus,
.cid-sQTcLGgONU .nav-link:focus {
  outline: none;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQTcLGgONU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQTcLGgONU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQTcLGgONU .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: #bed3f9;
}
.cid-sQTcLGgONU .navbar.opened {
  transition: all 0.3s;
}
.cid-sQTcLGgONU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQTcLGgONU .navbar .navbar-logo img {
  width: auto;
}
.cid-sQTcLGgONU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQTcLGgONU .navbar.collapsed {
  justify-content: center;
}
.cid-sQTcLGgONU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQTcLGgONU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQTcLGgONU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQTcLGgONU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQTcLGgONU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQTcLGgONU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQTcLGgONU .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-sQTcLGgONU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQTcLGgONU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQTcLGgONU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQTcLGgONU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQTcLGgONU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQTcLGgONU .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQTcLGgONU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQTcLGgONU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQTcLGgONU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQTcLGgONU .dropdown-item.active,
.cid-sQTcLGgONU .dropdown-item:active {
  background-color: transparent;
}
.cid-sQTcLGgONU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQTcLGgONU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sQTcLGgONU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQTcLGgONU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQTcLGgONU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQTcLGgONU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQTcLGgONU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTcLGgONU .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-sQTcLGgONU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQTcLGgONU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQTcLGgONU .navbar {
    height: 70px;
  }
  .cid-sQTcLGgONU .navbar.opened {
    height: auto;
  }
  .cid-sQTcLGgONU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQ3fFbdnT3 {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-sQ3fFbdnT3 .mbr-section-title {
  text-align: center;
  color: #0087ab;
}
.cid-sQ3fFbdnT3 .mbr-text,
.cid-sQ3fFbdnT3 .mbr-section-btn {
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sQ3fFbdnT3 .mbr-section-title,
  .cid-sQ3fFbdnT3 .mbr-section-btn,
  .cid-sQ3fFbdnT3 .mbr-text {
    text-align: left;
  }
}
.cid-tKZViG6LR5 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tKZViG6LR5 .container {
    max-width: 1400px;
  }
}
.cid-tKZViG6LR5 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tKZViG6LR5 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tKZViG6LR5 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tKZViG6LR5 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tKZViG6LR5 .card-wrapper {
  margin-top: 3rem;
}
.cid-tKZViG6LR5 .row {
  justify-content: center;
}
.cid-tKZViG6LR5 .mbr-section-title {
  color: #1a449a;
}
.cid-tKZViG6LR5 .card-title,
.cid-tKZViG6LR5 .iconfont-wrapper {
  color: #1a449a;
}
.cid-tKZViG6LR5 .card-text {
  color: #1a449a;
}
.cid-sQk4rz6C0D {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #bed3f9;
}
.cid-sQk4rz6C0D .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-sQk4rz6C0D .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-sQk4rz6C0D .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-sQk4rz6C0D .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-sQk4rz6C0D .navbar-nav {
    flex-direction: column;
  }
  .cid-sQk4rz6C0D .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-sQk4rz6C0D a {
  transition: color .3s;
}
.cid-sQk4rz6C0D a.text-danger:hover,
.cid-sQk4rz6C0D a.text-danger:focus,
.cid-sQk4rz6C0D a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
.cid-sQTcLGgONU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQTcLGgONU nav.navbar {
  position: fixed;
}
.cid-sQTcLGgONU .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-sQTcLGgONU .wrapper {
    padding: 0;
  }
}
.cid-sQTcLGgONU .btn {
  border-radius: 30px;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQTcLGgONU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQTcLGgONU .dropdown-item:hover,
.cid-sQTcLGgONU .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-sQTcLGgONU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQTcLGgONU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQTcLGgONU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQTcLGgONU .nav-link {
  position: relative;
}
.cid-sQTcLGgONU .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQTcLGgONU .dropdown-menu,
.cid-sQTcLGgONU .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sQTcLGgONU .nav-item:focus,
.cid-sQTcLGgONU .nav-link:focus {
  outline: none;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQTcLGgONU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQTcLGgONU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQTcLGgONU .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: #bed3f9;
}
.cid-sQTcLGgONU .navbar.opened {
  transition: all 0.3s;
}
.cid-sQTcLGgONU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQTcLGgONU .navbar .navbar-logo img {
  width: auto;
}
.cid-sQTcLGgONU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQTcLGgONU .navbar.collapsed {
  justify-content: center;
}
.cid-sQTcLGgONU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQTcLGgONU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQTcLGgONU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQTcLGgONU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQTcLGgONU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQTcLGgONU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQTcLGgONU .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-sQTcLGgONU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQTcLGgONU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQTcLGgONU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQTcLGgONU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQTcLGgONU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQTcLGgONU .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQTcLGgONU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQTcLGgONU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQTcLGgONU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQTcLGgONU .dropdown-item.active,
.cid-sQTcLGgONU .dropdown-item:active {
  background-color: transparent;
}
.cid-sQTcLGgONU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQTcLGgONU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sQTcLGgONU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQTcLGgONU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQTcLGgONU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQTcLGgONU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQTcLGgONU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTcLGgONU .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-sQTcLGgONU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQTcLGgONU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQTcLGgONU .navbar {
    height: 70px;
  }
  .cid-sQTcLGgONU .navbar.opened {
    height: auto;
  }
  .cid-sQTcLGgONU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQTaS1rZiq {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-sQTaS1rZiq .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-sQTaS1rZiq .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-sQTaS1rZiq p {
  line-height: 1.6;
}
.cid-sQTaS1rZiq .rev,
.cid-sQTaS1rZiq .mbr-iconfont {
  display: inline-block;
}
.cid-sQTaS1rZiq .card-title {
  color: #0087ab;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-sQTaS1rZiq .card-box {
  padding: 1.5rem;
}
.cid-sQTaS1rZiq .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-sQTaS1rZiq .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-sQTaS1rZiq .mbr-section-title,
.cid-sQTaS1rZiq .line-wrap {
  text-align: center;
  color: #0087ab;
}
.cid-sQTaS1rZiq .rev {
  color: #0a1c44;
}
.cid-sQTaS1rZiq .card-text,
.cid-sQTaS1rZiq .mbr-section-btn,
.cid-sQTaS1rZiq .ico-line {
  color: #767676;
}
.cid-tKZjCnrtC3 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tKZjCnrtC3 .container {
    max-width: 1400px;
  }
}
.cid-tKZjCnrtC3 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tKZjCnrtC3 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tKZjCnrtC3 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tKZjCnrtC3 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tKZjCnrtC3 .card-wrapper {
  margin-top: 3rem;
}
.cid-tKZjCnrtC3 .row {
  justify-content: center;
}
.cid-tKZjCnrtC3 .mbr-section-title {
  color: #1a449a;
}
.cid-tKZjCnrtC3 .card-title,
.cid-tKZjCnrtC3 .iconfont-wrapper {
  color: #1a449a;
}
.cid-tKZjCnrtC3 .card-text {
  color: #1a449a;
}
.cid-sQTaSdx9WM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #bed3f9;
}
.cid-sQTaSdx9WM .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-sQTaSdx9WM .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-sQTaSdx9WM .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-sQTaSdx9WM .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-sQTaSdx9WM .navbar-nav {
    flex-direction: column;
  }
  .cid-sQTaSdx9WM .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-sQTaSdx9WM a {
  transition: color .3s;
}
.cid-sQTaSdx9WM a.text-danger:hover,
.cid-sQTaSdx9WM a.text-danger:focus,
.cid-sQTaSdx9WM a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
.cid-sQTcLGgONU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sQTcLGgONU nav.navbar {
  position: fixed;
}
.cid-sQTcLGgONU .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-sQTcLGgONU .wrapper {
    padding: 0;
  }
}
.cid-sQTcLGgONU .btn {
  border-radius: 30px;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQTcLGgONU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQTcLGgONU .dropdown-item:hover,
.cid-sQTcLGgONU .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-sQTcLGgONU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQTcLGgONU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQTcLGgONU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQTcLGgONU .nav-link {
  position: relative;
}
.cid-sQTcLGgONU .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQTcLGgONU .dropdown-menu,
.cid-sQTcLGgONU .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sQTcLGgONU .nav-item:focus,
.cid-sQTcLGgONU .nav-link:focus {
  outline: none;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQTcLGgONU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQTcLGgONU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQTcLGgONU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQTcLGgONU .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: #bed3f9;
}
.cid-sQTcLGgONU .navbar.opened {
  transition: all 0.3s;
}
.cid-sQTcLGgONU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQTcLGgONU .navbar .navbar-logo img {
  width: auto;
}
.cid-sQTcLGgONU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQTcLGgONU .navbar.collapsed {
  justify-content: center;
}
.cid-sQTcLGgONU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQTcLGgONU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQTcLGgONU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQTcLGgONU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQTcLGgONU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQTcLGgONU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQTcLGgONU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQTcLGgONU .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-sQTcLGgONU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQTcLGgONU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQTcLGgONU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQTcLGgONU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQTcLGgONU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQTcLGgONU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQTcLGgONU .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQTcLGgONU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQTcLGgONU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQTcLGgONU .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-sQTcLGgONU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQTcLGgONU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQTcLGgONU .dropdown-item.active,
.cid-sQTcLGgONU .dropdown-item:active {
  background-color: transparent;
}
.cid-sQTcLGgONU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQTcLGgONU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQTcLGgONU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sQTcLGgONU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQTcLGgONU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQTcLGgONU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQTcLGgONU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQTcLGgONU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQTcLGgONU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQTcLGgONU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQTcLGgONU .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-sQTcLGgONU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQTcLGgONU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQTcLGgONU .navbar {
    height: 70px;
  }
  .cid-sQTcLGgONU .navbar.opened {
    height: auto;
  }
  .cid-sQTcLGgONU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tdoVR31feN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-tdoVR31feN .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-tdoVR31feN .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tdoVR31feN .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-tdoVR31feN .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tdoVR31feN .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tdoVR31feN .row {
  justify-content: center;
}
.cid-tdoVR31feN .card-text {
  color: #000000;
}
.cid-tdoVR31feN .card-title,
.cid-tdoVR31feN .iconfont-wrapper {
  color: #263d5a;
}
.cid-tdoVR31feN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tdoVR31feN .mbr-section-title {
  color: #ffffff;
}
.cid-tKZiTxt6Ro {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tKZiTxt6Ro .container {
    max-width: 1400px;
  }
}
.cid-tKZiTxt6Ro .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tKZiTxt6Ro .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tKZiTxt6Ro .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tKZiTxt6Ro .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tKZiTxt6Ro .card-wrapper {
  margin-top: 3rem;
}
.cid-tKZiTxt6Ro .row {
  justify-content: center;
}
.cid-tKZiTxt6Ro .mbr-section-title {
  color: #1a449a;
}
.cid-tKZiTxt6Ro .card-title,
.cid-tKZiTxt6Ro .iconfont-wrapper {
  color: #1a449a;
}
.cid-tKZiTxt6Ro .card-text {
  color: #1a449a;
}
.cid-tdoVR5RWH1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #bed3f9;
}
.cid-tdoVR5RWH1 .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-tdoVR5RWH1 .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-tdoVR5RWH1 .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-tdoVR5RWH1 .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-tdoVR5RWH1 .navbar-nav {
    flex-direction: column;
  }
  .cid-tdoVR5RWH1 .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-tdoVR5RWH1 a {
  transition: color .3s;
}
.cid-tdoVR5RWH1 a.text-danger:hover,
.cid-tdoVR5RWH1 a.text-danger:focus,
.cid-tdoVR5RWH1 a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
.cid-tdoVR6OG64 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tdoVR6OG64 nav.navbar {
  position: fixed;
}
.cid-tdoVR6OG64 .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-tdoVR6OG64 .wrapper {
    padding: 0;
  }
}
.cid-tdoVR6OG64 .btn {
  border-radius: 30px;
}
.cid-tdoVR6OG64 .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-tdoVR6OG64 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tdoVR6OG64 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tdoVR6OG64 .dropdown-item:hover,
.cid-tdoVR6OG64 .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-tdoVR6OG64 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tdoVR6OG64 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tdoVR6OG64 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-tdoVR6OG64 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tdoVR6OG64 .nav-link {
  position: relative;
}
.cid-tdoVR6OG64 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tdoVR6OG64 .dropdown-menu,
.cid-tdoVR6OG64 .navbar.opened {
  background: #bed3f9 !important;
}
.cid-tdoVR6OG64 .nav-item:focus,
.cid-tdoVR6OG64 .nav-link:focus {
  outline: none;
}
.cid-tdoVR6OG64 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tdoVR6OG64 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tdoVR6OG64 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tdoVR6OG64 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tdoVR6OG64 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tdoVR6OG64 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tdoVR6OG64 .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: #bed3f9;
}
.cid-tdoVR6OG64 .navbar.opened {
  transition: all 0.3s;
}
.cid-tdoVR6OG64 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tdoVR6OG64 .navbar .navbar-logo img {
  width: auto;
}
.cid-tdoVR6OG64 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tdoVR6OG64 .navbar.collapsed {
  justify-content: center;
}
.cid-tdoVR6OG64 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tdoVR6OG64 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tdoVR6OG64 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tdoVR6OG64 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tdoVR6OG64 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tdoVR6OG64 .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-tdoVR6OG64 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tdoVR6OG64 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tdoVR6OG64 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tdoVR6OG64 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tdoVR6OG64 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tdoVR6OG64 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tdoVR6OG64 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tdoVR6OG64 .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-tdoVR6OG64 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tdoVR6OG64 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tdoVR6OG64 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tdoVR6OG64 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tdoVR6OG64 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tdoVR6OG64 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tdoVR6OG64 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tdoVR6OG64 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tdoVR6OG64 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tdoVR6OG64 .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-tdoVR6OG64 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tdoVR6OG64 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tdoVR6OG64 .dropdown-item.active,
.cid-tdoVR6OG64 .dropdown-item:active {
  background-color: transparent;
}
.cid-tdoVR6OG64 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tdoVR6OG64 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tdoVR6OG64 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tdoVR6OG64 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-tdoVR6OG64 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tdoVR6OG64 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tdoVR6OG64 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tdoVR6OG64 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tdoVR6OG64 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-tdoVR6OG64 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-tdoVR6OG64 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tdoVR6OG64 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tdoVR6OG64 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tdoVR6OG64 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tdoVR6OG64 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tdoVR6OG64 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tdoVR6OG64 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tdoVR6OG64 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tdoVR6OG64 .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-tdoVR6OG64 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tdoVR6OG64 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tdoVR6OG64 .navbar {
    height: 70px;
  }
  .cid-tdoVR6OG64 .navbar.opened {
    height: auto;
  }
  .cid-tdoVR6OG64 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tdplSVIENX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-tdplSVIENX .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-tdplSVIENX .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tdplSVIENX .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-tdplSVIENX .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tdplSVIENX .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tdplSVIENX .row {
  justify-content: center;
}
.cid-tdplSVIENX .card-text {
  color: #000000;
}
.cid-tdplSVIENX .card-title,
.cid-tdplSVIENX .iconfont-wrapper {
  color: #263d5a;
}
.cid-tdplSVIENX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tdplSVIENX .mbr-section-title {
  color: #ffffff;
}
.cid-tKZfSz4PG5 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tKZfSz4PG5 .container {
    max-width: 1400px;
  }
}
.cid-tKZfSz4PG5 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tKZfSz4PG5 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tKZfSz4PG5 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tKZfSz4PG5 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tKZfSz4PG5 .card-wrapper {
  margin-top: 3rem;
}
.cid-tKZfSz4PG5 .row {
  justify-content: center;
}
.cid-tKZfSz4PG5 .mbr-section-title {
  color: #1a449a;
}
.cid-tKZfSz4PG5 .card-title,
.cid-tKZfSz4PG5 .iconfont-wrapper {
  color: #1a449a;
}
.cid-tKZfSz4PG5 .card-text {
  color: #1a449a;
}
.cid-tdplT2eCCH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #bed3f9;
}
.cid-tdplT2eCCH .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-tdplT2eCCH .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-tdplT2eCCH .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-tdplT2eCCH .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-tdplT2eCCH .navbar-nav {
    flex-direction: column;
  }
  .cid-tdplT2eCCH .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-tdplT2eCCH a {
  transition: color .3s;
}
.cid-tdplT2eCCH a.text-danger:hover,
.cid-tdplT2eCCH a.text-danger:focus,
.cid-tdplT2eCCH a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
.cid-tdplT3kO4u {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tdplT3kO4u nav.navbar {
  position: fixed;
}
.cid-tdplT3kO4u .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-tdplT3kO4u .wrapper {
    padding: 0;
  }
}
.cid-tdplT3kO4u .btn {
  border-radius: 30px;
}
.cid-tdplT3kO4u .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-tdplT3kO4u .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tdplT3kO4u .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tdplT3kO4u .dropdown-item:hover,
.cid-tdplT3kO4u .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-tdplT3kO4u .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tdplT3kO4u .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tdplT3kO4u .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-tdplT3kO4u .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tdplT3kO4u .nav-link {
  position: relative;
}
.cid-tdplT3kO4u .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tdplT3kO4u .dropdown-menu,
.cid-tdplT3kO4u .navbar.opened {
  background: #bed3f9 !important;
}
.cid-tdplT3kO4u .nav-item:focus,
.cid-tdplT3kO4u .nav-link:focus {
  outline: none;
}
.cid-tdplT3kO4u .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tdplT3kO4u .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tdplT3kO4u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tdplT3kO4u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tdplT3kO4u .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tdplT3kO4u .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tdplT3kO4u .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: #bed3f9;
}
.cid-tdplT3kO4u .navbar.opened {
  transition: all 0.3s;
}
.cid-tdplT3kO4u .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tdplT3kO4u .navbar .navbar-logo img {
  width: auto;
}
.cid-tdplT3kO4u .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tdplT3kO4u .navbar.collapsed {
  justify-content: center;
}
.cid-tdplT3kO4u .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tdplT3kO4u .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tdplT3kO4u .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tdplT3kO4u .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tdplT3kO4u .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tdplT3kO4u .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-tdplT3kO4u .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tdplT3kO4u .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tdplT3kO4u .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tdplT3kO4u .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tdplT3kO4u .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tdplT3kO4u .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tdplT3kO4u .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tdplT3kO4u .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-tdplT3kO4u .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tdplT3kO4u .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tdplT3kO4u .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tdplT3kO4u .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tdplT3kO4u .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tdplT3kO4u .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tdplT3kO4u .navbar.navbar-short {
  min-height: 60px;
}
.cid-tdplT3kO4u .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tdplT3kO4u .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tdplT3kO4u .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-tdplT3kO4u .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tdplT3kO4u .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tdplT3kO4u .dropdown-item.active,
.cid-tdplT3kO4u .dropdown-item:active {
  background-color: transparent;
}
.cid-tdplT3kO4u .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tdplT3kO4u .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tdplT3kO4u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tdplT3kO4u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-tdplT3kO4u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tdplT3kO4u .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tdplT3kO4u ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tdplT3kO4u .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tdplT3kO4u button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-tdplT3kO4u button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-tdplT3kO4u button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tdplT3kO4u button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tdplT3kO4u button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tdplT3kO4u button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tdplT3kO4u nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tdplT3kO4u nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tdplT3kO4u nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tdplT3kO4u nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tdplT3kO4u .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-tdplT3kO4u a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tdplT3kO4u .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tdplT3kO4u .navbar {
    height: 70px;
  }
  .cid-tdplT3kO4u .navbar.opened {
    height: auto;
  }
  .cid-tdplT3kO4u .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tdptrlVqzk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-tdptrlVqzk .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-tdptrlVqzk .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tdptrlVqzk .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-tdptrlVqzk .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tdptrlVqzk .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tdptrlVqzk .row {
  justify-content: center;
}
.cid-tdptrlVqzk .card-text {
  color: #000000;
}
.cid-tdptrlVqzk .card-title,
.cid-tdptrlVqzk .iconfont-wrapper {
  color: #263d5a;
}
.cid-tdptrlVqzk .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tdptrlVqzk .mbr-section-title {
  color: #ffffff;
}
.cid-tKZqwIl1Cz {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tKZqwIl1Cz .container {
    max-width: 1400px;
  }
}
.cid-tKZqwIl1Cz .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tKZqwIl1Cz .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tKZqwIl1Cz .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tKZqwIl1Cz .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tKZqwIl1Cz .card-wrapper {
  margin-top: 3rem;
}
.cid-tKZqwIl1Cz .row {
  justify-content: center;
}
.cid-tKZqwIl1Cz .mbr-section-title {
  color: #1a449a;
}
.cid-tKZqwIl1Cz .card-title,
.cid-tKZqwIl1Cz .iconfont-wrapper {
  color: #1a449a;
}
.cid-tKZqwIl1Cz .card-text {
  color: #1a449a;
}
.cid-tdptrs3tjP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #bed3f9;
}
.cid-tdptrs3tjP .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-tdptrs3tjP .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-tdptrs3tjP .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-tdptrs3tjP .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-tdptrs3tjP .navbar-nav {
    flex-direction: column;
  }
  .cid-tdptrs3tjP .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-tdptrs3tjP a {
  transition: color .3s;
}
.cid-tdptrs3tjP a.text-danger:hover,
.cid-tdptrs3tjP a.text-danger:focus,
.cid-tdptrs3tjP a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
.cid-tdptrtBKxd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tdptrtBKxd nav.navbar {
  position: fixed;
}
.cid-tdptrtBKxd .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-tdptrtBKxd .wrapper {
    padding: 0;
  }
}
.cid-tdptrtBKxd .btn {
  border-radius: 30px;
}
.cid-tdptrtBKxd .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-tdptrtBKxd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tdptrtBKxd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tdptrtBKxd .dropdown-item:hover,
.cid-tdptrtBKxd .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-tdptrtBKxd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tdptrtBKxd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tdptrtBKxd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-tdptrtBKxd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tdptrtBKxd .nav-link {
  position: relative;
}
.cid-tdptrtBKxd .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tdptrtBKxd .dropdown-menu,
.cid-tdptrtBKxd .navbar.opened {
  background: #bed3f9 !important;
}
.cid-tdptrtBKxd .nav-item:focus,
.cid-tdptrtBKxd .nav-link:focus {
  outline: none;
}
.cid-tdptrtBKxd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tdptrtBKxd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tdptrtBKxd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tdptrtBKxd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tdptrtBKxd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tdptrtBKxd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tdptrtBKxd .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: #bed3f9;
}
.cid-tdptrtBKxd .navbar.opened {
  transition: all 0.3s;
}
.cid-tdptrtBKxd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tdptrtBKxd .navbar .navbar-logo img {
  width: auto;
}
.cid-tdptrtBKxd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tdptrtBKxd .navbar.collapsed {
  justify-content: center;
}
.cid-tdptrtBKxd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tdptrtBKxd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tdptrtBKxd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tdptrtBKxd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tdptrtBKxd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tdptrtBKxd .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-tdptrtBKxd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tdptrtBKxd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tdptrtBKxd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tdptrtBKxd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tdptrtBKxd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tdptrtBKxd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tdptrtBKxd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tdptrtBKxd .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-tdptrtBKxd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tdptrtBKxd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tdptrtBKxd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tdptrtBKxd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tdptrtBKxd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tdptrtBKxd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tdptrtBKxd .navbar.navbar-short {
  min-height: 60px;
}
.cid-tdptrtBKxd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tdptrtBKxd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tdptrtBKxd .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-tdptrtBKxd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tdptrtBKxd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tdptrtBKxd .dropdown-item.active,
.cid-tdptrtBKxd .dropdown-item:active {
  background-color: transparent;
}
.cid-tdptrtBKxd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tdptrtBKxd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tdptrtBKxd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tdptrtBKxd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-tdptrtBKxd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tdptrtBKxd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tdptrtBKxd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tdptrtBKxd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tdptrtBKxd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-tdptrtBKxd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-tdptrtBKxd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tdptrtBKxd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tdptrtBKxd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tdptrtBKxd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tdptrtBKxd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tdptrtBKxd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tdptrtBKxd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tdptrtBKxd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tdptrtBKxd .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-tdptrtBKxd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tdptrtBKxd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tdptrtBKxd .navbar {
    height: 70px;
  }
  .cid-tdptrtBKxd .navbar.opened {
    height: auto;
  }
  .cid-tdptrtBKxd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tdBFoATOMV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-tdBFoATOMV .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-tdBFoATOMV .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tdBFoATOMV .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-tdBFoATOMV .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tdBFoATOMV .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tdBFoATOMV .row {
  justify-content: center;
}
.cid-tdBFoATOMV .card-text {
  color: #000000;
}
.cid-tdBFoATOMV .card-title,
.cid-tdBFoATOMV .iconfont-wrapper {
  color: #263d5a;
}
.cid-tdBFoATOMV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tdBFoATOMV .mbr-section-title {
  color: #ffffff;
}
.cid-tKZUY9r3cu {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tKZUY9r3cu .container {
    max-width: 1400px;
  }
}
.cid-tKZUY9r3cu .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tKZUY9r3cu .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tKZUY9r3cu .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tKZUY9r3cu .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tKZUY9r3cu .card-wrapper {
  margin-top: 3rem;
}
.cid-tKZUY9r3cu .row {
  justify-content: center;
}
.cid-tKZUY9r3cu .mbr-section-title {
  color: #1a449a;
}
.cid-tKZUY9r3cu .card-title,
.cid-tKZUY9r3cu .iconfont-wrapper {
  color: #1a449a;
}
.cid-tKZUY9r3cu .card-text {
  color: #1a449a;
}
.cid-tdBFpBt5hm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #bed3f9;
}
.cid-tdBFpBt5hm .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-tdBFpBt5hm .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-tdBFpBt5hm .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-tdBFpBt5hm .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-tdBFpBt5hm .navbar-nav {
    flex-direction: column;
  }
  .cid-tdBFpBt5hm .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-tdBFpBt5hm a {
  transition: color .3s;
}
.cid-tdBFpBt5hm a.text-danger:hover,
.cid-tdBFpBt5hm a.text-danger:focus,
.cid-tdBFpBt5hm a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
.cid-tdBFpFrjem {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tdBFpFrjem nav.navbar {
  position: fixed;
}
.cid-tdBFpFrjem .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-tdBFpFrjem .wrapper {
    padding: 0;
  }
}
.cid-tdBFpFrjem .btn {
  border-radius: 30px;
}
.cid-tdBFpFrjem .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-tdBFpFrjem .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tdBFpFrjem .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tdBFpFrjem .dropdown-item:hover,
.cid-tdBFpFrjem .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-tdBFpFrjem .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tdBFpFrjem .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tdBFpFrjem .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-tdBFpFrjem .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tdBFpFrjem .nav-link {
  position: relative;
}
.cid-tdBFpFrjem .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tdBFpFrjem .dropdown-menu,
.cid-tdBFpFrjem .navbar.opened {
  background: #bed3f9 !important;
}
.cid-tdBFpFrjem .nav-item:focus,
.cid-tdBFpFrjem .nav-link:focus {
  outline: none;
}
.cid-tdBFpFrjem .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tdBFpFrjem .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tdBFpFrjem .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tdBFpFrjem .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tdBFpFrjem .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tdBFpFrjem .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tdBFpFrjem .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: #bed3f9;
}
.cid-tdBFpFrjem .navbar.opened {
  transition: all 0.3s;
}
.cid-tdBFpFrjem .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tdBFpFrjem .navbar .navbar-logo img {
  width: auto;
}
.cid-tdBFpFrjem .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tdBFpFrjem .navbar.collapsed {
  justify-content: center;
}
.cid-tdBFpFrjem .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tdBFpFrjem .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tdBFpFrjem .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tdBFpFrjem .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tdBFpFrjem .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tdBFpFrjem .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-tdBFpFrjem .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tdBFpFrjem .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tdBFpFrjem .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tdBFpFrjem .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tdBFpFrjem .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tdBFpFrjem .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tdBFpFrjem .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tdBFpFrjem .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-tdBFpFrjem .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tdBFpFrjem .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tdBFpFrjem .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tdBFpFrjem .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tdBFpFrjem .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tdBFpFrjem .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tdBFpFrjem .navbar.navbar-short {
  min-height: 60px;
}
.cid-tdBFpFrjem .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tdBFpFrjem .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tdBFpFrjem .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-tdBFpFrjem .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tdBFpFrjem .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tdBFpFrjem .dropdown-item.active,
.cid-tdBFpFrjem .dropdown-item:active {
  background-color: transparent;
}
.cid-tdBFpFrjem .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tdBFpFrjem .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tdBFpFrjem .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tdBFpFrjem .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-tdBFpFrjem .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tdBFpFrjem .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tdBFpFrjem ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tdBFpFrjem .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tdBFpFrjem button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-tdBFpFrjem button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-tdBFpFrjem button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tdBFpFrjem button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tdBFpFrjem button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tdBFpFrjem button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tdBFpFrjem nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tdBFpFrjem nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tdBFpFrjem nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tdBFpFrjem nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tdBFpFrjem .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-tdBFpFrjem a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tdBFpFrjem .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tdBFpFrjem .navbar {
    height: 70px;
  }
  .cid-tdBFpFrjem .navbar.opened {
    height: auto;
  }
  .cid-tdBFpFrjem .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tL3IBDTL4j {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-tL3IBDTL4j .mbr-section-title {
  text-align: center;
  color: #0087ab;
}
.cid-tL3IBDTL4j .mbr-text,
.cid-tL3IBDTL4j .mbr-section-btn {
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tL3IBDTL4j .mbr-section-title,
  .cid-tL3IBDTL4j .mbr-section-btn,
  .cid-tL3IBDTL4j .mbr-text {
    text-align: left;
  }
}
.cid-tL3IBJM6H5 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tL3IBJM6H5 .container {
    max-width: 1400px;
  }
}
.cid-tL3IBJM6H5 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tL3IBJM6H5 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tL3IBJM6H5 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tL3IBJM6H5 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tL3IBJM6H5 .card-wrapper {
  margin-top: 3rem;
}
.cid-tL3IBJM6H5 .row {
  justify-content: center;
}
.cid-tL3IBJM6H5 .mbr-section-title {
  color: #1a449a;
}
.cid-tL3IBJM6H5 .card-title,
.cid-tL3IBJM6H5 .iconfont-wrapper {
  color: #1a449a;
}
.cid-tL3IBJM6H5 .card-text {
  color: #1a449a;
}
.cid-tL3IBLRDs0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #bed3f9;
}
.cid-tL3IBLRDs0 .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-tL3IBLRDs0 .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-tL3IBLRDs0 .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-tL3IBLRDs0 .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-tL3IBLRDs0 .navbar-nav {
    flex-direction: column;
  }
  .cid-tL3IBLRDs0 .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-tL3IBLRDs0 a {
  transition: color .3s;
}
.cid-tL3IBLRDs0 a.text-danger:hover,
.cid-tL3IBLRDs0 a.text-danger:focus,
.cid-tL3IBLRDs0 a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
.cid-tL3IBMKAVy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tL3IBMKAVy nav.navbar {
  position: fixed;
}
.cid-tL3IBMKAVy .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-tL3IBMKAVy .wrapper {
    padding: 0;
  }
}
.cid-tL3IBMKAVy .btn {
  border-radius: 30px;
}
.cid-tL3IBMKAVy .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-tL3IBMKAVy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tL3IBMKAVy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tL3IBMKAVy .dropdown-item:hover,
.cid-tL3IBMKAVy .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-tL3IBMKAVy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tL3IBMKAVy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tL3IBMKAVy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-tL3IBMKAVy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tL3IBMKAVy .nav-link {
  position: relative;
}
.cid-tL3IBMKAVy .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tL3IBMKAVy .dropdown-menu,
.cid-tL3IBMKAVy .navbar.opened {
  background: #bed3f9 !important;
}
.cid-tL3IBMKAVy .nav-item:focus,
.cid-tL3IBMKAVy .nav-link:focus {
  outline: none;
}
.cid-tL3IBMKAVy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tL3IBMKAVy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tL3IBMKAVy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tL3IBMKAVy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tL3IBMKAVy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tL3IBMKAVy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tL3IBMKAVy .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: #bed3f9;
}
.cid-tL3IBMKAVy .navbar.opened {
  transition: all 0.3s;
}
.cid-tL3IBMKAVy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tL3IBMKAVy .navbar .navbar-logo img {
  width: auto;
}
.cid-tL3IBMKAVy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tL3IBMKAVy .navbar.collapsed {
  justify-content: center;
}
.cid-tL3IBMKAVy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tL3IBMKAVy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tL3IBMKAVy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tL3IBMKAVy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tL3IBMKAVy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tL3IBMKAVy .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-tL3IBMKAVy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tL3IBMKAVy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tL3IBMKAVy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tL3IBMKAVy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tL3IBMKAVy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tL3IBMKAVy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tL3IBMKAVy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tL3IBMKAVy .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-tL3IBMKAVy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tL3IBMKAVy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tL3IBMKAVy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tL3IBMKAVy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tL3IBMKAVy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tL3IBMKAVy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tL3IBMKAVy .navbar.navbar-short {
  min-height: 60px;
}
.cid-tL3IBMKAVy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tL3IBMKAVy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tL3IBMKAVy .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-tL3IBMKAVy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tL3IBMKAVy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tL3IBMKAVy .dropdown-item.active,
.cid-tL3IBMKAVy .dropdown-item:active {
  background-color: transparent;
}
.cid-tL3IBMKAVy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tL3IBMKAVy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tL3IBMKAVy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tL3IBMKAVy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-tL3IBMKAVy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tL3IBMKAVy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tL3IBMKAVy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tL3IBMKAVy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tL3IBMKAVy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-tL3IBMKAVy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-tL3IBMKAVy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tL3IBMKAVy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tL3IBMKAVy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tL3IBMKAVy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tL3IBMKAVy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tL3IBMKAVy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tL3IBMKAVy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tL3IBMKAVy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tL3IBMKAVy .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-tL3IBMKAVy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tL3IBMKAVy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tL3IBMKAVy .navbar {
    height: 70px;
  }
  .cid-tL3IBMKAVy .navbar.opened {
    height: auto;
  }
  .cid-tL3IBMKAVy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMYN2Fwivf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-tMYN2Fwivf .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMYN2Fwivf .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tMYN2Fwivf .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-tMYN2Fwivf .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tMYN2Fwivf .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tMYN2Fwivf .row {
  justify-content: center;
}
.cid-tMYN2Fwivf .card-text {
  color: #000000;
  text-align: center;
}
.cid-tMYN2Fwivf .card-title,
.cid-tMYN2Fwivf .iconfont-wrapper {
  color: #263d5a;
}
.cid-tMYN2Fwivf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tMYN2Fwivf .mbr-section-title {
  color: #ffffff;
}
.cid-tMYN2GfoVp {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tMYN2GfoVp .container {
    max-width: 1400px;
  }
}
.cid-tMYN2GfoVp .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tMYN2GfoVp .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tMYN2GfoVp .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tMYN2GfoVp .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tMYN2GfoVp .card-wrapper {
  margin-top: 3rem;
}
.cid-tMYN2GfoVp .row {
  justify-content: center;
}
.cid-tMYN2GfoVp .mbr-section-title {
  color: #1a449a;
}
.cid-tMYN2GfoVp .card-title,
.cid-tMYN2GfoVp .iconfont-wrapper {
  color: #1a449a;
}
.cid-tMYN2GfoVp .card-text {
  color: #1a449a;
}
.cid-tMYN2H5Xaf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #bed3f9;
}
.cid-tMYN2H5Xaf .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-tMYN2H5Xaf .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-tMYN2H5Xaf .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-tMYN2H5Xaf .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-tMYN2H5Xaf .navbar-nav {
    flex-direction: column;
  }
  .cid-tMYN2H5Xaf .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-tMYN2H5Xaf a {
  transition: color .3s;
}
.cid-tMYN2H5Xaf a.text-danger:hover,
.cid-tMYN2H5Xaf a.text-danger:focus,
.cid-tMYN2H5Xaf a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
.cid-tMYN2HQZaO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tMYN2HQZaO nav.navbar {
  position: fixed;
}
.cid-tMYN2HQZaO .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-tMYN2HQZaO .wrapper {
    padding: 0;
  }
}
.cid-tMYN2HQZaO .btn {
  border-radius: 30px;
}
.cid-tMYN2HQZaO .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-tMYN2HQZaO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMYN2HQZaO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMYN2HQZaO .dropdown-item:hover,
.cid-tMYN2HQZaO .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-tMYN2HQZaO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMYN2HQZaO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMYN2HQZaO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-tMYN2HQZaO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMYN2HQZaO .nav-link {
  position: relative;
}
.cid-tMYN2HQZaO .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMYN2HQZaO .dropdown-menu,
.cid-tMYN2HQZaO .navbar.opened {
  background: #bed3f9 !important;
}
.cid-tMYN2HQZaO .nav-item:focus,
.cid-tMYN2HQZaO .nav-link:focus {
  outline: none;
}
.cid-tMYN2HQZaO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMYN2HQZaO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMYN2HQZaO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMYN2HQZaO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMYN2HQZaO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMYN2HQZaO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMYN2HQZaO .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: #bed3f9;
}
.cid-tMYN2HQZaO .navbar.opened {
  transition: all 0.3s;
}
.cid-tMYN2HQZaO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMYN2HQZaO .navbar .navbar-logo img {
  width: auto;
}
.cid-tMYN2HQZaO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMYN2HQZaO .navbar.collapsed {
  justify-content: center;
}
.cid-tMYN2HQZaO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMYN2HQZaO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMYN2HQZaO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tMYN2HQZaO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMYN2HQZaO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMYN2HQZaO .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-tMYN2HQZaO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMYN2HQZaO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMYN2HQZaO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMYN2HQZaO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMYN2HQZaO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMYN2HQZaO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMYN2HQZaO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMYN2HQZaO .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-tMYN2HQZaO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMYN2HQZaO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMYN2HQZaO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMYN2HQZaO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMYN2HQZaO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMYN2HQZaO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tMYN2HQZaO .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMYN2HQZaO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMYN2HQZaO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMYN2HQZaO .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-tMYN2HQZaO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMYN2HQZaO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMYN2HQZaO .dropdown-item.active,
.cid-tMYN2HQZaO .dropdown-item:active {
  background-color: transparent;
}
.cid-tMYN2HQZaO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMYN2HQZaO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMYN2HQZaO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMYN2HQZaO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-tMYN2HQZaO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMYN2HQZaO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMYN2HQZaO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMYN2HQZaO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMYN2HQZaO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-tMYN2HQZaO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-tMYN2HQZaO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMYN2HQZaO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMYN2HQZaO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMYN2HQZaO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMYN2HQZaO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMYN2HQZaO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMYN2HQZaO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMYN2HQZaO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMYN2HQZaO .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-tMYN2HQZaO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMYN2HQZaO .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMYN2HQZaO .navbar {
    height: 70px;
  }
  .cid-tMYN2HQZaO .navbar.opened {
    height: auto;
  }
  .cid-tMYN2HQZaO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNelIjsmaN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-tNelIjsmaN .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNelIjsmaN .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tNelIjsmaN .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-tNelIjsmaN .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tNelIjsmaN .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tNelIjsmaN .row {
  justify-content: center;
}
.cid-tNelIjsmaN .card-text {
  color: #000000;
  text-align: center;
}
.cid-tNelIjsmaN .card-title,
.cid-tNelIjsmaN .iconfont-wrapper {
  color: #263d5a;
}
.cid-tNelIjsmaN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tNelIjsmaN .mbr-section-title {
  color: #ffffff;
}
.cid-tNelIlfziZ {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-tNelIlfziZ .container {
    max-width: 1400px;
  }
}
.cid-tNelIlfziZ .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0000ff;
}
.cid-tNelIlfziZ .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-tNelIlfziZ .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-tNelIlfziZ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-tNelIlfziZ .card-wrapper {
  margin-top: 3rem;
}
.cid-tNelIlfziZ .row {
  justify-content: center;
}
.cid-tNelIlfziZ .mbr-section-title {
  color: #1a449a;
}
.cid-tNelIlfziZ .card-title,
.cid-tNelIlfziZ .iconfont-wrapper {
  color: #1a449a;
}
.cid-tNelIlfziZ .card-text {
  color: #1a449a;
}
.cid-tNelImD8bD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #bed3f9;
}
.cid-tNelImD8bD .icons-menu {
  margin: auto;
  margin-bottom: 24px;
}
.cid-tNelImD8bD .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
.cid-tNelImD8bD .nav-link {
  padding: 0 14px;
  font-weight: 500;
}
.cid-tNelImD8bD .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 690px) {
  .cid-tNelImD8bD .navbar-nav {
    flex-direction: column;
  }
  .cid-tNelImD8bD .nav-link {
    padding: 7px 0;
    text-align: center;
  }
}
.cid-tNelImD8bD a {
  transition: color .3s;
}
.cid-tNelImD8bD a.text-danger:hover,
.cid-tNelImD8bD a.text-danger:focus,
.cid-tNelImD8bD a.text-danger.active {
  color: #f7978f !important;
  transition: color .3s;
}
.cid-tNelInuiGg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tNelInuiGg nav.navbar {
  position: fixed;
}
.cid-tNelInuiGg .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-tNelInuiGg .wrapper {
    padding: 0;
  }
}
.cid-tNelInuiGg .btn {
  border-radius: 30px;
}
.cid-tNelInuiGg .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-tNelInuiGg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNelInuiGg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNelInuiGg .dropdown-item:hover,
.cid-tNelInuiGg .dropdown-item:focus {
  background: #0000ff !important;
  color: white !important;
}
.cid-tNelInuiGg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNelInuiGg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNelInuiGg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-tNelInuiGg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNelInuiGg .nav-link {
  position: relative;
}
.cid-tNelInuiGg .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tNelInuiGg .dropdown-menu,
.cid-tNelInuiGg .navbar.opened {
  background: #bed3f9 !important;
}
.cid-tNelInuiGg .nav-item:focus,
.cid-tNelInuiGg .nav-link:focus {
  outline: none;
}
.cid-tNelInuiGg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNelInuiGg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNelInuiGg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNelInuiGg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNelInuiGg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNelInuiGg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNelInuiGg .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: #bed3f9;
}
.cid-tNelInuiGg .navbar.opened {
  transition: all 0.3s;
}
.cid-tNelInuiGg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNelInuiGg .navbar .navbar-logo img {
  width: auto;
}
.cid-tNelInuiGg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNelInuiGg .navbar.collapsed {
  justify-content: center;
}
.cid-tNelInuiGg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNelInuiGg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tNelInuiGg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tNelInuiGg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNelInuiGg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNelInuiGg .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-tNelInuiGg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNelInuiGg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNelInuiGg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNelInuiGg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNelInuiGg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNelInuiGg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNelInuiGg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNelInuiGg .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-tNelInuiGg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNelInuiGg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNelInuiGg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNelInuiGg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNelInuiGg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNelInuiGg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tNelInuiGg .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNelInuiGg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNelInuiGg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNelInuiGg .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-tNelInuiGg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNelInuiGg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNelInuiGg .dropdown-item.active,
.cid-tNelInuiGg .dropdown-item:active {
  background-color: transparent;
}
.cid-tNelInuiGg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNelInuiGg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNelInuiGg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNelInuiGg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-tNelInuiGg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNelInuiGg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNelInuiGg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNelInuiGg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNelInuiGg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-tNelInuiGg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0000ff;
}
.cid-tNelInuiGg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNelInuiGg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNelInuiGg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNelInuiGg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNelInuiGg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNelInuiGg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNelInuiGg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNelInuiGg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNelInuiGg .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-tNelInuiGg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNelInuiGg .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tNelInuiGg .navbar {
    height: 70px;
  }
  .cid-tNelInuiGg .navbar.opened {
    height: auto;
  }
  .cid-tNelInuiGg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
