body {
  font-family: 'Urbanist', sans-serif;
}
.display-1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.9rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.875rem;
}
.display-2 {
  font-family: 'Urbanist', sans-serif;
  font-size: 3.6rem;
  line-height: 0.9;
}
.display-2 > .mbr-iconfont {
  font-size: 4.5rem;
}
.display-4 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.1rem;
  line-height: 1.1;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.12rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.73rem;
    font-size: calc( 2.0149999999999997rem + (3.9 - 2.0149999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.0149999999999997rem + (3.9 - 2.0149999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.88rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.91rem + (3.6 - 1.91) * ((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.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.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: #17171a !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: #17171a !important;
  border-color: #17171a !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #9b9ba5 !important;
  border-color: #9b9ba5 !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: #6f6f7b !important;
  border-color: #6f6f7b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #6f6f7b !important;
  border-color: #6f6f7b !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: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !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 {
  border-color: #17171a;
  color: #17171a;
}
.btn-secondary-outline {
  border-color: #9b9ba5;
  color: #9b9ba5;
}
.btn-info-outline {
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-success-outline {
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-warning-outline {
  border-color: #ffe161;
  color: #ffe161;
}
.btn-danger-outline {
  border-color: #ff9966;
  color: #ff9966;
}
.btn-black-outline {
  border-color: #17171a;
  color: #17171a;
}
.btn-white-outline {
  border-color: #ffffff;
  color: #ffffff;
}
.text-primary {
  color: #17171a !important;
}
.text-secondary {
  color: #9b9ba5 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #17171A !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #676773 !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: #17171a;
}
.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-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #17171a;
  border-color: #17171a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #17171a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c8c8ce;
}
.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;
}
blockquote {
  border-color: #17171a;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #17171a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #17171a;
}
.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: #17171a;
  border-bottom-color: #17171a;
}
.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: #17171a !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: #9b9ba5 !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='%2317171a' %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-sIYeoKomyf .navbar-dropdown {
  position: relative !important;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sIYeoKomyf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sIYeoKomyf .dropdown-item:hover,
.cid-sIYeoKomyf .dropdown-item:focus {
  background: #17171a !important;
  color: white !important;
}
.cid-sIYeoKomyf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sIYeoKomyf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sIYeoKomyf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sIYeoKomyf .nav-link {
  position: relative;
}
.cid-sIYeoKomyf .container {
  display: flex;
  margin: auto;
}
.cid-sIYeoKomyf .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sIYeoKomyf .dropdown-menu,
.cid-sIYeoKomyf .navbar.opened {
  background: #ffffff !important;
}
.cid-sIYeoKomyf .nav-item:focus,
.cid-sIYeoKomyf .nav-link:focus {
  outline: none;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sIYeoKomyf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sIYeoKomyf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sIYeoKomyf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sIYeoKomyf .navbar.opened {
  transition: all 0.3s;
}
.cid-sIYeoKomyf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sIYeoKomyf .navbar .navbar-logo img {
  width: auto;
}
.cid-sIYeoKomyf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sIYeoKomyf .navbar.collapsed {
  justify-content: center;
}
.cid-sIYeoKomyf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sIYeoKomyf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sIYeoKomyf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sIYeoKomyf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sIYeoKomyf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sIYeoKomyf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sIYeoKomyf .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-sIYeoKomyf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sIYeoKomyf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sIYeoKomyf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sIYeoKomyf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sIYeoKomyf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sIYeoKomyf .navbar.navbar-short {
  min-height: 60px;
}
.cid-sIYeoKomyf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sIYeoKomyf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sIYeoKomyf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sIYeoKomyf .dropdown-item.active,
.cid-sIYeoKomyf .dropdown-item:active {
  background-color: transparent;
}
.cid-sIYeoKomyf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sIYeoKomyf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sIYeoKomyf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sIYeoKomyf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sIYeoKomyf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sIYeoKomyf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sIYeoKomyf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIYeoKomyf .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sIYeoKomyf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sIYeoKomyf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sIYeoKomyf .navbar {
    height: 70px;
  }
  .cid-sIYeoKomyf .navbar.opened {
    height: auto;
  }
  .cid-sIYeoKomyf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAWdifwekB {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/diseo-sin-ttulo-1080x1080.png");
}
.cid-uAWdifwekB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAWdifwekB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAWdifwekB .mbr-section-title {
  text-align: center;
}
.cid-uAWdifwekB .mbr-text,
.cid-uAWdifwekB .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uAWdifwekB .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-uAWdifwekB .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-uAWdifwekB .mbr-section-title,
.cid-uAWdifwekB .dot {
  color: #ffffff;
  text-align: center;
}
.cid-uAWdifwekB .mbr-section-subtitle {
  text-align: center;
}
.cid-uAWegjWCgk {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uAWegjWCgk .mbr-section-title {
  color: #3a6df1;
  text-align: center;
}
.cid-uAWegjWCgk .mbr-text {
  color: #101019;
  text-align: center;
}
.cid-uAWegjWCgk .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uAWegjWCgk .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uAWegjWCgk .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #17171a;
}
.cid-uAWegjWCgk .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-uAWegjWCgk .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uAWh3AXX5e {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uAWh3AXX5e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAWh3AXX5e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAWh3AXX5e .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uAWh3AXX5e .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uAWh3AXX5e .container {
    padding: 0 26px;
  }
}
.cid-uAWh3AXX5e .row {
  justify-content: center;
}
.cid-uAWh3AXX5e .content-wrapper {
  display: flex;
  align-items: center;
  padding: 100px 60px;
  background-color: #ffffff;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .cid-uAWh3AXX5e .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-uAWh3AXX5e .content-wrapper .content-wrap {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-uAWh3AXX5e .content-wrapper .content-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uAWh3AXX5e .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uAWh3AXX5e .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uAWh3AXX5e .content-wrapper .content-wrap .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 992px) {
  .cid-uAWh3AXX5e .content-wrapper .content-wrap .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uAWh3AXX5e .content-wrapper .content-wrap .mbr-section-btn .btn {
  width: 70%;
}
@media (max-width: 1200px) {
  .cid-uAWh3AXX5e .content-wrapper .content-wrap .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uAWh3AXX5e .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uAWh3AXX5e .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uAWh3AXX5e .content-wrapper .image-wrapper img {
  height: 685px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uAWh3AXX5e .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uAWh3AXX5e .mbr-section-title {
  color: #000000;
}
.cid-uAWh3AXX5e .mbr-section-subtitle {
  color: #000000;
}
.cid-uAWh3AXX5e .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-uAWh3AXX5e .mbr-section-title,
.cid-uAWh3AXX5e .mbr-section-btn {
  color: #3a6df1;
  text-align: center;
}
.cid-uAWe6nIn0l {
  background-color: #ffffff;
}
.cid-uAWe6nIn0l .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uAWe6nIn0l .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uAWe6nIn0l .container {
    padding: 0 26px;
  }
}
.cid-uAWe6nIn0l .row {
  justify-content: center;
}
.cid-uAWe6nIn0l .content-wrapper {
  padding: 100px 60px;
  background-color: #ffffff;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .cid-uAWe6nIn0l .content-wrapper {
    padding: 100px 20px;
  }
}
.cid-uAWe6nIn0l .content-wrapper .content-wrap {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uAWe6nIn0l .content-wrapper .content-wrap {
    margin-bottom: 40px;
  }
}
.cid-uAWe6nIn0l .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uAWe6nIn0l .content-wrapper .content-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-uAWe6nIn0l .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uAWe6nIn0l .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uAWe6nIn0l .content-wrapper .mbr-section-btn {
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-uAWe6nIn0l .content-wrapper .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-uAWe6nIn0l .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 440px;
  max-width: 440px;
}
@media (max-width: 767px) {
  .cid-uAWe6nIn0l .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uAWe6nIn0l .embla__slide .slide-content {
  width: 100%;
}
.cid-uAWe6nIn0l .embla__slide .slide-content .item-wrapper .item-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 440px;
  border-radius: 20px;
  overflow: hidden;
}
.cid-uAWe6nIn0l .embla__slide .slide-content .item-wrapper .item-img:hover .item-title,
.cid-uAWe6nIn0l .embla__slide .slide-content .item-wrapper .item-img:focus .item-title {
  opacity: 1;
  transform: translateY(0);
}
.cid-uAWe6nIn0l .embla__slide .slide-content .item-wrapper .item-img:hover:before,
.cid-uAWe6nIn0l .embla__slide .slide-content .item-wrapper .item-img:focus:before {
  opacity: .3;
}
.cid-uAWe6nIn0l .embla__slide .slide-content .item-wrapper .item-img:hover img,
.cid-uAWe6nIn0l .embla__slide .slide-content .item-wrapper .item-img:focus img {
  transform: scale(1);
}
.cid-uAWe6nIn0l .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transition: all 0.3s ease-in-out;
}
.cid-uAWe6nIn0l .embla__slide .slide-content .item-wrapper .item-img a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uAWe6nIn0l .embla__slide .slide-content .item-wrapper .item-img .item-title {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(16px);
  padding: 0 16px;
  transition: all 0.3s ease-in-out;
}
.cid-uAWe6nIn0l .embla__slide .slide-content .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  background-color: #f3f3f3;
}
.cid-uAWe6nIn0l .embla__button--next,
.cid-uAWe6nIn0l .embla__button--prev {
  display: flex;
}
.cid-uAWe6nIn0l .embla__button {
  top: 0;
  width: 25px;
  height: 25px;
  margin-top: -1.5rem;
  font-size: 25px;
  background-color: transparent !important;
  color: #17171a !important;
  border: none !important;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uAWe6nIn0l .embla__button:hover {
  opacity: .6 !important;
}
.cid-uAWe6nIn0l .embla__button.embla__button--prev {
  left: 0;
}
.cid-uAWe6nIn0l .embla__button.embla__button--next {
  right: 0;
}
@media (max-width: 768px) {
  .cid-uAWe6nIn0l .embla__button {
    top: 0;
  }
}
.cid-uAWe6nIn0l .embla {
  position: relative;
  width: 100%;
  padding-top: 2rem;
}
.cid-uAWe6nIn0l .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uAWe6nIn0l .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uAWe6nIn0l .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uAWe6nIn0l .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uAWe6nIn0l .mbr-section-title {
  color: #000000;
}
.cid-uAWe6nIn0l .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uAWe6nIn0l .mbr-text,
.cid-uAWe6nIn0l .text-wrapper {
  text-align: center;
  color: #000000;
}
.cid-uAWe6nIn0l .item-title {
  color: #28282c;
  text-align: center;
}
.cid-uAWe6nIn0l .mbr-section-title,
.cid-uAWe6nIn0l .mbr-section-btn {
  text-align: center;
  color: #3a6df1;
}
.cid-uAWduabicF {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uAWduabicF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAWduabicF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAWduabicF .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 75%;
  max-width: 75%;
}
@media (max-width: 768px) {
  .cid-uAWduabicF .embla__slide {
    min-width: 100%;
    max-width: initial;
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
}
.cid-uAWduabicF .embla__slide .card-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.cid-uAWduabicF .embla__slide .card-wrap .card-text {
  margin-bottom: 50px;
}
.cid-uAWduabicF .embla__slide .card-wrap .content-wrap .card-name {
  margin-bottom: 12px;
}
.cid-uAWduabicF .embla__slide .card-wrap .content-wrap .card-desc {
  margin-bottom: 0;
}
.cid-uAWduabicF .embla__button--next,
.cid-uAWduabicF .embla__button--prev {
  display: flex;
}
.cid-uAWduabicF .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: transparent;
  color: #3a6df1;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-uAWduabicF .embla__button .mbr-iconfont {
  font-size: 48px;
}
@media (max-width: 768px) {
  .cid-uAWduabicF .embla__button .mbr-iconfont {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .cid-uAWduabicF .embla__button {
    display: none;
  }
}
.cid-uAWduabicF .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uAWduabicF .embla__button:hover {
  background: transparent;
  color: #3a6df1;
  border: none;
  opacity: .65;
}
.cid-uAWduabicF .embla__button.embla__button--prev {
  left: 0;
  margin-left: 0;
}
.cid-uAWduabicF .embla__button.embla__button--next {
  right: 0;
  margin-right: 0;
}
@media (max-width: 767px) {
  .cid-uAWduabicF .embla__button {
    top: auto;
    bottom: -5rem;
  }
}
.cid-uAWduabicF .embla {
  position: relative;
  width: 100%;
}
.cid-uAWduabicF .embla__viewport {
  overflow: hidden;
  width: 80%;
}
.cid-uAWduabicF .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uAWduabicF .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uAWduabicF .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uAWduabicF .icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}
.cid-uAWduabicF .icon-wrapper .mbr-iconfont {
  font-size: 56px;
  display: block;
  color: #3a6df1;
}
.cid-uAWduabicF .card-text {
  color: #232323;
  text-align: center;
}
.cid-uAWduabicF .card-name {
  color: #E0BDB6;
  text-align: center;
}
.cid-uAWduabicF .card-desc {
  color: #747474;
  text-align: center;
}
.cid-uAWfN7sycd {
  padding-top: 45px;
  padding-bottom: 150px;
  background-color: #ffffff;
}
.cid-uAWfN7sycd .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uAWfN7sycd .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #17171a;
}
.cid-uAWfN7sycd .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-uAWfN7sycd .svg-top {
    width: 1000px;
  }
}
@media (max-width: 768px) {
  .cid-uAWfN7sycd .text-content {
    max-width: none;
  }
}
.cid-uAWfN7sycd .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #3a6df1;
  border: 2px solid #3a6df1;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uAWfN7sycd .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uAWfN7sycd .mbr-iconfont-social:hover {
  background-color: #3a6df1;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uAWfN7sycd .icons {
    justify-content: center !important;
  }
  .cid-uAWfN7sycd .text-content * {
    text-align: center;
  }
}
.cid-uAWfN7sycd P {
  color: #1a449a;
  text-align: center;
}
.cid-uAWfN7sycd .mbr-section-title {
  color: #3a6df1;
  text-align: center;
}
.cid-uAWfL1y0NV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3a6df1;
}
.cid-uAWfL1y0NV svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uAWfL1y0NV svg .st0 {
  fill: #3a6df1;
}
@media (max-width: 992px) {
  .cid-uAWfL1y0NV svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uAWfL1y0NV .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uAWfL1y0NV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uAWfL1y0NV .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uAWfL1y0NV .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uAWfL1y0NV div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uAWfL1y0NV .copyright {
  color: #ffffff;
}
.cid-uB0mtpSzZD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uB0mtpSzZD .media-container-row .mbr-text {
  color: #232323;
}
.cid-sIYeoKomyf .navbar-dropdown {
  position: relative !important;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sIYeoKomyf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sIYeoKomyf .dropdown-item:hover,
.cid-sIYeoKomyf .dropdown-item:focus {
  background: #17171a !important;
  color: white !important;
}
.cid-sIYeoKomyf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sIYeoKomyf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sIYeoKomyf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sIYeoKomyf .nav-link {
  position: relative;
}
.cid-sIYeoKomyf .container {
  display: flex;
  margin: auto;
}
.cid-sIYeoKomyf .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sIYeoKomyf .dropdown-menu,
.cid-sIYeoKomyf .navbar.opened {
  background: #ffffff !important;
}
.cid-sIYeoKomyf .nav-item:focus,
.cid-sIYeoKomyf .nav-link:focus {
  outline: none;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sIYeoKomyf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sIYeoKomyf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sIYeoKomyf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sIYeoKomyf .navbar.opened {
  transition: all 0.3s;
}
.cid-sIYeoKomyf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sIYeoKomyf .navbar .navbar-logo img {
  width: auto;
}
.cid-sIYeoKomyf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sIYeoKomyf .navbar.collapsed {
  justify-content: center;
}
.cid-sIYeoKomyf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sIYeoKomyf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sIYeoKomyf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sIYeoKomyf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sIYeoKomyf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sIYeoKomyf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sIYeoKomyf .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-sIYeoKomyf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sIYeoKomyf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sIYeoKomyf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sIYeoKomyf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sIYeoKomyf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sIYeoKomyf .navbar.navbar-short {
  min-height: 60px;
}
.cid-sIYeoKomyf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sIYeoKomyf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sIYeoKomyf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sIYeoKomyf .dropdown-item.active,
.cid-sIYeoKomyf .dropdown-item:active {
  background-color: transparent;
}
.cid-sIYeoKomyf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sIYeoKomyf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sIYeoKomyf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sIYeoKomyf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sIYeoKomyf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sIYeoKomyf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sIYeoKomyf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIYeoKomyf .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sIYeoKomyf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sIYeoKomyf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sIYeoKomyf .navbar {
    height: 70px;
  }
  .cid-sIYeoKomyf .navbar.opened {
    height: auto;
  }
  .cid-sIYeoKomyf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMB3ES8Tlo {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background: linear-gradient(to bottom, #ffffff, #ffffff);
}
.cid-uMB3ES8Tlo .item-subtitle {
  line-height: 1.2;
  color: #232323;
}
.cid-uMB3ES8Tlo .item-title {
  border-bottom: 1px solid currentColor;
  color: #232323;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uMB3ES8Tlo img,
.cid-uMB3ES8Tlo .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uMB3ES8Tlo .item:focus,
.cid-uMB3ES8Tlo span:focus {
  outline: none;
}
.cid-uMB3ES8Tlo .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uMB3ES8Tlo .item {
    margin-bottom: 1rem;
  }
}
.cid-uMB3ES8Tlo .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uMB3ES8Tlo .mbr-section-title {
  color: #232323;
}
.cid-uMB3ES8Tlo .mbr-text,
.cid-uMB3ES8Tlo .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uMB3ES8Tlo .content-head {
  max-width: 800px;
}
.cid-uAWfL1y0NV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3a6df1;
}
.cid-uAWfL1y0NV svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uAWfL1y0NV svg .st0 {
  fill: #3a6df1;
}
@media (max-width: 992px) {
  .cid-uAWfL1y0NV svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uAWfL1y0NV .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uAWfL1y0NV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uAWfL1y0NV .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uAWfL1y0NV .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uAWfL1y0NV div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uAWfL1y0NV .copyright {
  color: #ffffff;
}
.cid-uB0mtpSzZD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uB0mtpSzZD .media-container-row .mbr-text {
  color: #232323;
}
.cid-sIYeoKomyf .navbar-dropdown {
  position: relative !important;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sIYeoKomyf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sIYeoKomyf .dropdown-item:hover,
.cid-sIYeoKomyf .dropdown-item:focus {
  background: #17171a !important;
  color: white !important;
}
.cid-sIYeoKomyf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sIYeoKomyf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sIYeoKomyf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sIYeoKomyf .nav-link {
  position: relative;
}
.cid-sIYeoKomyf .container {
  display: flex;
  margin: auto;
}
.cid-sIYeoKomyf .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sIYeoKomyf .dropdown-menu,
.cid-sIYeoKomyf .navbar.opened {
  background: #ffffff !important;
}
.cid-sIYeoKomyf .nav-item:focus,
.cid-sIYeoKomyf .nav-link:focus {
  outline: none;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sIYeoKomyf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sIYeoKomyf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sIYeoKomyf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sIYeoKomyf .navbar.opened {
  transition: all 0.3s;
}
.cid-sIYeoKomyf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sIYeoKomyf .navbar .navbar-logo img {
  width: auto;
}
.cid-sIYeoKomyf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sIYeoKomyf .navbar.collapsed {
  justify-content: center;
}
.cid-sIYeoKomyf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sIYeoKomyf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sIYeoKomyf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sIYeoKomyf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sIYeoKomyf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sIYeoKomyf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sIYeoKomyf .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-sIYeoKomyf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sIYeoKomyf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sIYeoKomyf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sIYeoKomyf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sIYeoKomyf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sIYeoKomyf .navbar.navbar-short {
  min-height: 60px;
}
.cid-sIYeoKomyf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sIYeoKomyf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sIYeoKomyf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sIYeoKomyf .dropdown-item.active,
.cid-sIYeoKomyf .dropdown-item:active {
  background-color: transparent;
}
.cid-sIYeoKomyf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sIYeoKomyf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sIYeoKomyf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sIYeoKomyf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sIYeoKomyf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sIYeoKomyf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sIYeoKomyf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIYeoKomyf .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sIYeoKomyf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sIYeoKomyf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sIYeoKomyf .navbar {
    height: 70px;
  }
  .cid-sIYeoKomyf .navbar.opened {
    height: auto;
  }
  .cid-sIYeoKomyf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAWF1kWzip {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background: linear-gradient(to bottom, #ffffff, #ffffff);
}
.cid-uAWF1kWzip .item-subtitle {
  line-height: 1.2;
  color: #232323;
}
.cid-uAWF1kWzip .item-title {
  border-bottom: 1px solid currentColor;
  color: #232323;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uAWF1kWzip img,
.cid-uAWF1kWzip .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uAWF1kWzip .item:focus,
.cid-uAWF1kWzip span:focus {
  outline: none;
}
.cid-uAWF1kWzip .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uAWF1kWzip .item {
    margin-bottom: 1rem;
  }
}
.cid-uAWF1kWzip .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uAWF1kWzip .mbr-section-title {
  color: #232323;
}
.cid-uAWF1kWzip .mbr-text,
.cid-uAWF1kWzip .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uAWF1kWzip .content-head {
  max-width: 800px;
}
.cid-uAWfL1y0NV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3a6df1;
}
.cid-uAWfL1y0NV svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uAWfL1y0NV svg .st0 {
  fill: #3a6df1;
}
@media (max-width: 992px) {
  .cid-uAWfL1y0NV svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uAWfL1y0NV .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uAWfL1y0NV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uAWfL1y0NV .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uAWfL1y0NV .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uAWfL1y0NV div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uAWfL1y0NV .copyright {
  color: #ffffff;
}
.cid-uB0mtpSzZD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uB0mtpSzZD .media-container-row .mbr-text {
  color: #232323;
}
.cid-sIYeoKomyf .navbar-dropdown {
  position: relative !important;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sIYeoKomyf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sIYeoKomyf .dropdown-item:hover,
.cid-sIYeoKomyf .dropdown-item:focus {
  background: #17171a !important;
  color: white !important;
}
.cid-sIYeoKomyf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sIYeoKomyf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sIYeoKomyf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sIYeoKomyf .nav-link {
  position: relative;
}
.cid-sIYeoKomyf .container {
  display: flex;
  margin: auto;
}
.cid-sIYeoKomyf .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sIYeoKomyf .dropdown-menu,
.cid-sIYeoKomyf .navbar.opened {
  background: #ffffff !important;
}
.cid-sIYeoKomyf .nav-item:focus,
.cid-sIYeoKomyf .nav-link:focus {
  outline: none;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sIYeoKomyf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sIYeoKomyf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sIYeoKomyf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sIYeoKomyf .navbar.opened {
  transition: all 0.3s;
}
.cid-sIYeoKomyf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sIYeoKomyf .navbar .navbar-logo img {
  width: auto;
}
.cid-sIYeoKomyf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sIYeoKomyf .navbar.collapsed {
  justify-content: center;
}
.cid-sIYeoKomyf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sIYeoKomyf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sIYeoKomyf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sIYeoKomyf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sIYeoKomyf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sIYeoKomyf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sIYeoKomyf .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-sIYeoKomyf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sIYeoKomyf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sIYeoKomyf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sIYeoKomyf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sIYeoKomyf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sIYeoKomyf .navbar.navbar-short {
  min-height: 60px;
}
.cid-sIYeoKomyf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sIYeoKomyf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sIYeoKomyf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sIYeoKomyf .dropdown-item.active,
.cid-sIYeoKomyf .dropdown-item:active {
  background-color: transparent;
}
.cid-sIYeoKomyf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sIYeoKomyf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sIYeoKomyf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sIYeoKomyf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sIYeoKomyf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sIYeoKomyf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sIYeoKomyf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIYeoKomyf .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sIYeoKomyf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sIYeoKomyf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sIYeoKomyf .navbar {
    height: 70px;
  }
  .cid-sIYeoKomyf .navbar.opened {
    height: auto;
  }
  .cid-sIYeoKomyf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uB0eBvhDN2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uB0eBvhDN2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uB0eBvhDN2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uB0eBvhDN2 .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uB0eBvhDN2 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uB0eBvhDN2 .container {
    padding: 0 26px;
  }
}
.cid-uB0eBvhDN2 .row {
  justify-content: center;
}
.cid-uB0eBvhDN2 .content-wrapper {
  display: flex;
  align-items: center;
  padding: 100px 60px;
  background-color: #f8f8f8;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .cid-uB0eBvhDN2 .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-uB0eBvhDN2 .content-wrapper .content-wrap {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-uB0eBvhDN2 .content-wrapper .content-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uB0eBvhDN2 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uB0eBvhDN2 .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uB0eBvhDN2 .content-wrapper .content-wrap .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 992px) {
  .cid-uB0eBvhDN2 .content-wrapper .content-wrap .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uB0eBvhDN2 .content-wrapper .content-wrap .mbr-section-btn .btn {
  width: 70%;
}
@media (max-width: 1200px) {
  .cid-uB0eBvhDN2 .content-wrapper .content-wrap .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uB0eBvhDN2 .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uB0eBvhDN2 .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uB0eBvhDN2 .content-wrapper .image-wrapper img {
  height: 685px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uB0eBvhDN2 .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uB0eBvhDN2 .mbr-section-title {
  color: #000000;
}
.cid-uB0eBvhDN2 .mbr-section-subtitle {
  color: #000000;
}
.cid-uB0eBvhDN2 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uB0eBvhDN2 .mbr-section-title,
.cid-uB0eBvhDN2 .mbr-section-btn {
  text-align: center;
}
.cid-uB0iax1kL3 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-uB0iax1kL3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uB0iax1kL3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uB0iax1kL3 .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uB0iax1kL3 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uB0iax1kL3 .container {
    padding: 0 26px;
  }
}
.cid-uB0iax1kL3 .row {
  justify-content: center;
}
.cid-uB0iax1kL3 .content-wrapper {
  display: flex;
  align-items: center;
  padding: 100px 60px;
  background-color: #f8f8f8;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .cid-uB0iax1kL3 .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-uB0iax1kL3 .content-wrapper .content-wrap {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-uB0iax1kL3 .content-wrapper .content-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uB0iax1kL3 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uB0iax1kL3 .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uB0iax1kL3 .content-wrapper .content-wrap .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 992px) {
  .cid-uB0iax1kL3 .content-wrapper .content-wrap .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uB0iax1kL3 .content-wrapper .content-wrap .mbr-section-btn .btn {
  width: 70%;
}
@media (max-width: 1200px) {
  .cid-uB0iax1kL3 .content-wrapper .content-wrap .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uB0iax1kL3 .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uB0iax1kL3 .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uB0iax1kL3 .content-wrapper .image-wrapper img {
  height: 685px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uB0iax1kL3 .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uB0iax1kL3 .mbr-section-title {
  color: #000000;
}
.cid-uB0iax1kL3 .mbr-section-subtitle {
  color: #000000;
}
.cid-uB0iax1kL3 .mbr-text {
  color: #000000;
}
.cid-uB0iax1kL3 .mbr-section-title,
.cid-uB0iax1kL3 .mbr-section-btn {
  text-align: center;
}
.cid-uAWfL1y0NV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3a6df1;
}
.cid-uAWfL1y0NV svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uAWfL1y0NV svg .st0 {
  fill: #3a6df1;
}
@media (max-width: 992px) {
  .cid-uAWfL1y0NV svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uAWfL1y0NV .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uAWfL1y0NV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uAWfL1y0NV .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uAWfL1y0NV .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uAWfL1y0NV div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uAWfL1y0NV .copyright {
  color: #ffffff;
}
.cid-uB0mtpSzZD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uB0mtpSzZD .media-container-row .mbr-text {
  color: #232323;
}
.cid-sIYeoKomyf .navbar-dropdown {
  position: relative !important;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sIYeoKomyf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sIYeoKomyf .dropdown-item:hover,
.cid-sIYeoKomyf .dropdown-item:focus {
  background: #17171a !important;
  color: white !important;
}
.cid-sIYeoKomyf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sIYeoKomyf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sIYeoKomyf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sIYeoKomyf .nav-link {
  position: relative;
}
.cid-sIYeoKomyf .container {
  display: flex;
  margin: auto;
}
.cid-sIYeoKomyf .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sIYeoKomyf .dropdown-menu,
.cid-sIYeoKomyf .navbar.opened {
  background: #ffffff !important;
}
.cid-sIYeoKomyf .nav-item:focus,
.cid-sIYeoKomyf .nav-link:focus {
  outline: none;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sIYeoKomyf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sIYeoKomyf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sIYeoKomyf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sIYeoKomyf .navbar.opened {
  transition: all 0.3s;
}
.cid-sIYeoKomyf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sIYeoKomyf .navbar .navbar-logo img {
  width: auto;
}
.cid-sIYeoKomyf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sIYeoKomyf .navbar.collapsed {
  justify-content: center;
}
.cid-sIYeoKomyf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sIYeoKomyf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sIYeoKomyf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sIYeoKomyf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sIYeoKomyf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sIYeoKomyf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sIYeoKomyf .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-sIYeoKomyf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sIYeoKomyf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sIYeoKomyf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sIYeoKomyf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sIYeoKomyf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sIYeoKomyf .navbar.navbar-short {
  min-height: 60px;
}
.cid-sIYeoKomyf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sIYeoKomyf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sIYeoKomyf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sIYeoKomyf .dropdown-item.active,
.cid-sIYeoKomyf .dropdown-item:active {
  background-color: transparent;
}
.cid-sIYeoKomyf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sIYeoKomyf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sIYeoKomyf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sIYeoKomyf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sIYeoKomyf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sIYeoKomyf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sIYeoKomyf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIYeoKomyf .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sIYeoKomyf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sIYeoKomyf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sIYeoKomyf .navbar {
    height: 70px;
  }
  .cid-sIYeoKomyf .navbar.opened {
    height: auto;
  }
  .cid-sIYeoKomyf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBaBaLNL7J {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background: #f8f8f8;
}
.cid-uBaBaLNL7J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBaBaLNL7J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBaBaLNL7J .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 75%;
  max-width: 75%;
}
@media (max-width: 768px) {
  .cid-uBaBaLNL7J .embla__slide {
    min-width: 100%;
    max-width: initial;
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
}
.cid-uBaBaLNL7J .embla__slide .card-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.cid-uBaBaLNL7J .embla__slide .card-wrap .card-text {
  margin-bottom: 50px;
}
.cid-uBaBaLNL7J .embla__slide .card-wrap .content-wrap .card-name {
  margin-bottom: 12px;
}
.cid-uBaBaLNL7J .embla__slide .card-wrap .content-wrap .card-desc {
  margin-bottom: 0;
}
.cid-uBaBaLNL7J .embla__button--next,
.cid-uBaBaLNL7J .embla__button--prev {
  display: flex;
}
.cid-uBaBaLNL7J .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: transparent;
  color: #3a6df1;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-uBaBaLNL7J .embla__button .mbr-iconfont {
  font-size: 48px;
}
@media (max-width: 768px) {
  .cid-uBaBaLNL7J .embla__button .mbr-iconfont {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .cid-uBaBaLNL7J .embla__button {
    display: none;
  }
}
.cid-uBaBaLNL7J .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uBaBaLNL7J .embla__button:hover {
  background: transparent;
  color: #3a6df1;
  border: none;
  opacity: .65;
}
.cid-uBaBaLNL7J .embla__button.embla__button--prev {
  left: 0;
  margin-left: 0;
}
.cid-uBaBaLNL7J .embla__button.embla__button--next {
  right: 0;
  margin-right: 0;
}
@media (max-width: 767px) {
  .cid-uBaBaLNL7J .embla__button {
    top: auto;
    bottom: -5rem;
  }
}
.cid-uBaBaLNL7J .embla {
  position: relative;
  width: 100%;
}
.cid-uBaBaLNL7J .embla__viewport {
  overflow: hidden;
  width: 80%;
}
.cid-uBaBaLNL7J .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uBaBaLNL7J .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uBaBaLNL7J .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uBaBaLNL7J .icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}
.cid-uBaBaLNL7J .icon-wrapper .mbr-iconfont {
  font-size: 56px;
  display: block;
  color: #3a6df1;
}
.cid-uBaBaLNL7J .card-text {
  color: #232323;
  text-align: center;
}
.cid-uBaBaLNL7J .card-name {
  color: #E0BDB6;
  text-align: center;
}
.cid-uBaBaLNL7J .card-desc {
  color: #747474;
  text-align: center;
}
.cid-uBaB9s9m7r {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uBaB9s9m7r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBaB9s9m7r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBaB9s9m7r .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uBaB9s9m7r .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uBaB9s9m7r .container {
    padding: 0 26px;
  }
}
.cid-uBaB9s9m7r .row {
  justify-content: center;
}
.cid-uBaB9s9m7r .content-wrapper {
  display: flex;
  align-items: center;
  padding: 100px 60px;
  background-color: #ffffff;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .cid-uBaB9s9m7r .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-uBaB9s9m7r .content-wrapper .content-wrap {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-uBaB9s9m7r .content-wrapper .content-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uBaB9s9m7r .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uBaB9s9m7r .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uBaB9s9m7r .content-wrapper .content-wrap .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 992px) {
  .cid-uBaB9s9m7r .content-wrapper .content-wrap .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uBaB9s9m7r .content-wrapper .content-wrap .mbr-section-btn .btn {
  width: 70%;
}
@media (max-width: 1200px) {
  .cid-uBaB9s9m7r .content-wrapper .content-wrap .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uBaB9s9m7r .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uBaB9s9m7r .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uBaB9s9m7r .content-wrapper .image-wrapper img {
  height: 685px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uBaB9s9m7r .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uBaB9s9m7r .mbr-section-title {
  color: #000000;
}
.cid-uBaB9s9m7r .mbr-section-subtitle {
  color: #000000;
}
.cid-uBaB9s9m7r .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-uBaB9s9m7r .mbr-section-title,
.cid-uBaB9s9m7r .mbr-section-btn {
  color: #3a6df1;
  text-align: center;
}
.cid-uAWfL1y0NV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3a6df1;
}
.cid-uAWfL1y0NV svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uAWfL1y0NV svg .st0 {
  fill: #3a6df1;
}
@media (max-width: 992px) {
  .cid-uAWfL1y0NV svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uAWfL1y0NV .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uAWfL1y0NV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uAWfL1y0NV .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uAWfL1y0NV .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uAWfL1y0NV div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uAWfL1y0NV .copyright {
  color: #ffffff;
}
.cid-uB0mtpSzZD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uB0mtpSzZD .media-container-row .mbr-text {
  color: #232323;
}
.cid-sIYeoKomyf .navbar-dropdown {
  position: relative !important;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sIYeoKomyf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sIYeoKomyf .dropdown-item:hover,
.cid-sIYeoKomyf .dropdown-item:focus {
  background: #17171a !important;
  color: white !important;
}
.cid-sIYeoKomyf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sIYeoKomyf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sIYeoKomyf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sIYeoKomyf .nav-link {
  position: relative;
}
.cid-sIYeoKomyf .container {
  display: flex;
  margin: auto;
}
.cid-sIYeoKomyf .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sIYeoKomyf .dropdown-menu,
.cid-sIYeoKomyf .navbar.opened {
  background: #ffffff !important;
}
.cid-sIYeoKomyf .nav-item:focus,
.cid-sIYeoKomyf .nav-link:focus {
  outline: none;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sIYeoKomyf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sIYeoKomyf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sIYeoKomyf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sIYeoKomyf .navbar.opened {
  transition: all 0.3s;
}
.cid-sIYeoKomyf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sIYeoKomyf .navbar .navbar-logo img {
  width: auto;
}
.cid-sIYeoKomyf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sIYeoKomyf .navbar.collapsed {
  justify-content: center;
}
.cid-sIYeoKomyf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sIYeoKomyf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sIYeoKomyf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sIYeoKomyf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sIYeoKomyf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sIYeoKomyf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sIYeoKomyf .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-sIYeoKomyf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sIYeoKomyf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sIYeoKomyf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sIYeoKomyf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sIYeoKomyf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sIYeoKomyf .navbar.navbar-short {
  min-height: 60px;
}
.cid-sIYeoKomyf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sIYeoKomyf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sIYeoKomyf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sIYeoKomyf .dropdown-item.active,
.cid-sIYeoKomyf .dropdown-item:active {
  background-color: transparent;
}
.cid-sIYeoKomyf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sIYeoKomyf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sIYeoKomyf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sIYeoKomyf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sIYeoKomyf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sIYeoKomyf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sIYeoKomyf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIYeoKomyf .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sIYeoKomyf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sIYeoKomyf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sIYeoKomyf .navbar {
    height: 70px;
  }
  .cid-sIYeoKomyf .navbar.opened {
    height: auto;
  }
  .cid-sIYeoKomyf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uB0mXfQxSk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAWfL1y0NV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3a6df1;
}
.cid-uAWfL1y0NV svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uAWfL1y0NV svg .st0 {
  fill: #3a6df1;
}
@media (max-width: 992px) {
  .cid-uAWfL1y0NV svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uAWfL1y0NV .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uAWfL1y0NV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uAWfL1y0NV .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uAWfL1y0NV .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uAWfL1y0NV div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uAWfL1y0NV .copyright {
  color: #ffffff;
}
.cid-uB0mtpSzZD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uB0mtpSzZD .media-container-row .mbr-text {
  color: #232323;
}
.cid-sIYeoKomyf .navbar-dropdown {
  position: relative !important;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sIYeoKomyf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sIYeoKomyf .dropdown-item:hover,
.cid-sIYeoKomyf .dropdown-item:focus {
  background: #17171a !important;
  color: white !important;
}
.cid-sIYeoKomyf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sIYeoKomyf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sIYeoKomyf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sIYeoKomyf .nav-link {
  position: relative;
}
.cid-sIYeoKomyf .container {
  display: flex;
  margin: auto;
}
.cid-sIYeoKomyf .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sIYeoKomyf .dropdown-menu,
.cid-sIYeoKomyf .navbar.opened {
  background: #ffffff !important;
}
.cid-sIYeoKomyf .nav-item:focus,
.cid-sIYeoKomyf .nav-link:focus {
  outline: none;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sIYeoKomyf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sIYeoKomyf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sIYeoKomyf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sIYeoKomyf .navbar.opened {
  transition: all 0.3s;
}
.cid-sIYeoKomyf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sIYeoKomyf .navbar .navbar-logo img {
  width: auto;
}
.cid-sIYeoKomyf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sIYeoKomyf .navbar.collapsed {
  justify-content: center;
}
.cid-sIYeoKomyf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sIYeoKomyf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sIYeoKomyf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sIYeoKomyf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sIYeoKomyf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sIYeoKomyf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sIYeoKomyf .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-sIYeoKomyf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sIYeoKomyf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sIYeoKomyf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sIYeoKomyf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sIYeoKomyf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sIYeoKomyf .navbar.navbar-short {
  min-height: 60px;
}
.cid-sIYeoKomyf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sIYeoKomyf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sIYeoKomyf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sIYeoKomyf .dropdown-item.active,
.cid-sIYeoKomyf .dropdown-item:active {
  background-color: transparent;
}
.cid-sIYeoKomyf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sIYeoKomyf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sIYeoKomyf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sIYeoKomyf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sIYeoKomyf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sIYeoKomyf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sIYeoKomyf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIYeoKomyf .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sIYeoKomyf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sIYeoKomyf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sIYeoKomyf .navbar {
    height: 70px;
  }
  .cid-sIYeoKomyf .navbar.opened {
    height: auto;
  }
  .cid-sIYeoKomyf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAWfpf88Pl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAWfpf88Pl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAWfpf88Pl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAWfpf88Pl .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uAWfpf88Pl .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uAWfpf88Pl .container {
    padding: 0 26px;
  }
}
.cid-uAWfpf88Pl .row {
  justify-content: center;
}
.cid-uAWfpf88Pl .content-wrapper {
  display: flex;
  align-items: center;
  padding: 100px 60px;
  background-color: #ffffff;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .cid-uAWfpf88Pl .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-uAWfpf88Pl .content-wrapper .content-wrap {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-uAWfpf88Pl .content-wrapper .content-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uAWfpf88Pl .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uAWfpf88Pl .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uAWfpf88Pl .content-wrapper .content-wrap .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 992px) {
  .cid-uAWfpf88Pl .content-wrapper .content-wrap .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uAWfpf88Pl .content-wrapper .content-wrap .mbr-section-btn .btn {
  width: 70%;
}
@media (max-width: 1200px) {
  .cid-uAWfpf88Pl .content-wrapper .content-wrap .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uAWfpf88Pl .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uAWfpf88Pl .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uAWfpf88Pl .content-wrapper .image-wrapper img {
  height: 685px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uAWfpf88Pl .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uAWfpf88Pl .mbr-section-title {
  color: #000000;
}
.cid-uAWfpf88Pl .mbr-section-subtitle {
  color: #000000;
}
.cid-uAWfpf88Pl .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uAWfpf88Pl .mbr-section-title,
.cid-uAWfpf88Pl .mbr-section-btn {
  text-align: center;
}
.cid-uAWfqaay2z {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uAWfqaay2z .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uAWfqaay2z .form-control,
.cid-uAWfqaay2z .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uAWfqaay2z .form-control::-webkit-input-placeholder,
.cid-uAWfqaay2z .field-input::-webkit-input-placeholder,
.cid-uAWfqaay2z .form-control::-webkit-input-placeholder,
.cid-uAWfqaay2z .field-input::-webkit-input-placeholder {
  color: #333333;
}
.cid-uAWfqaay2z .form-control:-moz-placeholder,
.cid-uAWfqaay2z .field-input:-moz-placeholder,
.cid-uAWfqaay2z .form-control:-moz-placeholder,
.cid-uAWfqaay2z .field-input:-moz-placeholder {
  color: #333333;
}
.cid-uAWfqaay2z .form-control:hover,
.cid-uAWfqaay2z .field-input:hover,
.cid-uAWfqaay2z .form-control:focus,
.cid-uAWfqaay2z .field-input:focus {
  background-color: #ffffff;
  border-color: #3a6df1;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-uAWfqaay2z .form-control:hover::-webkit-input-placeholder,
.cid-uAWfqaay2z .field-input:hover::-webkit-input-placeholder,
.cid-uAWfqaay2z .form-control:focus::-webkit-input-placeholder,
.cid-uAWfqaay2z .field-input:focus::-webkit-input-placeholder,
.cid-uAWfqaay2z .form-control:hover::-webkit-input-placeholder,
.cid-uAWfqaay2z .field-input:hover::-webkit-input-placeholder,
.cid-uAWfqaay2z .form-control:focus::-webkit-input-placeholder,
.cid-uAWfqaay2z .field-input:focus::-webkit-input-placeholder {
  color: #333333;
}
.cid-uAWfqaay2z .form-control:hover:-moz-placeholder,
.cid-uAWfqaay2z .field-input:hover:-moz-placeholder,
.cid-uAWfqaay2z .form-control:focus:-moz-placeholder,
.cid-uAWfqaay2z .field-input:focus:-moz-placeholder,
.cid-uAWfqaay2z .form-control:hover:-moz-placeholder,
.cid-uAWfqaay2z .field-input:hover:-moz-placeholder,
.cid-uAWfqaay2z .form-control:focus:-moz-placeholder,
.cid-uAWfqaay2z .field-input:focus:-moz-placeholder {
  color: #333333;
}
.cid-uAWfqaay2z .jq-number__spin:hover,
.cid-uAWfqaay2z .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #3a6df1;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uAWfqaay2z .jq-number__spin {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uAWfqaay2z .jq-selectbox li,
.cid-uAWfqaay2z .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uAWfqaay2z .jq-selectbox li:hover,
.cid-uAWfqaay2z .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-uAWfqaay2z .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uAWfqaay2z .jq-number__spin.minus:hover:after,
.cid-uAWfqaay2z .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uAWfqaay2z .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uAWfqaay2z .jq-number__spin.minus:after,
.cid-uAWfqaay2z .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uAWfqaay2z input::-webkit-clear-button {
  display: none;
}
.cid-uAWfqaay2z input::-webkit-inner-spin-button {
  display: none;
}
.cid-uAWfqaay2z input::-webkit-outer-spin-button {
  display: none;
}
.cid-uAWfqaay2z input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uAWfL1y0NV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3a6df1;
}
.cid-uAWfL1y0NV svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uAWfL1y0NV svg .st0 {
  fill: #3a6df1;
}
@media (max-width: 992px) {
  .cid-uAWfL1y0NV svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uAWfL1y0NV .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uAWfL1y0NV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uAWfL1y0NV .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uAWfL1y0NV .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uAWfL1y0NV div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uAWfL1y0NV .copyright {
  color: #ffffff;
}
.cid-uB0mtpSzZD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uB0mtpSzZD .media-container-row .mbr-text {
  color: #232323;
}
.cid-sIYeoKomyf .navbar-dropdown {
  position: relative !important;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sIYeoKomyf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sIYeoKomyf .dropdown-item:hover,
.cid-sIYeoKomyf .dropdown-item:focus {
  background: #17171a !important;
  color: white !important;
}
.cid-sIYeoKomyf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sIYeoKomyf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sIYeoKomyf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sIYeoKomyf .nav-link {
  position: relative;
}
.cid-sIYeoKomyf .container {
  display: flex;
  margin: auto;
}
.cid-sIYeoKomyf .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sIYeoKomyf .dropdown-menu,
.cid-sIYeoKomyf .navbar.opened {
  background: #ffffff !important;
}
.cid-sIYeoKomyf .nav-item:focus,
.cid-sIYeoKomyf .nav-link:focus {
  outline: none;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sIYeoKomyf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sIYeoKomyf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sIYeoKomyf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sIYeoKomyf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sIYeoKomyf .navbar.opened {
  transition: all 0.3s;
}
.cid-sIYeoKomyf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sIYeoKomyf .navbar .navbar-logo img {
  width: auto;
}
.cid-sIYeoKomyf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sIYeoKomyf .navbar.collapsed {
  justify-content: center;
}
.cid-sIYeoKomyf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sIYeoKomyf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sIYeoKomyf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sIYeoKomyf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sIYeoKomyf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sIYeoKomyf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sIYeoKomyf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sIYeoKomyf .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-sIYeoKomyf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sIYeoKomyf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sIYeoKomyf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sIYeoKomyf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sIYeoKomyf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sIYeoKomyf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sIYeoKomyf .navbar.navbar-short {
  min-height: 60px;
}
.cid-sIYeoKomyf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sIYeoKomyf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sIYeoKomyf .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-sIYeoKomyf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sIYeoKomyf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sIYeoKomyf .dropdown-item.active,
.cid-sIYeoKomyf .dropdown-item:active {
  background-color: transparent;
}
.cid-sIYeoKomyf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sIYeoKomyf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sIYeoKomyf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sIYeoKomyf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sIYeoKomyf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sIYeoKomyf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sIYeoKomyf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sIYeoKomyf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sIYeoKomyf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sIYeoKomyf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sIYeoKomyf .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sIYeoKomyf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sIYeoKomyf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sIYeoKomyf .navbar {
    height: 70px;
  }
  .cid-sIYeoKomyf .navbar.opened {
    height: auto;
  }
  .cid-sIYeoKomyf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAWgvy8NST {
  padding-top: 7rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uAWgvy8NST .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: #17171a;
}
.cid-uAWgvy8NST .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-uAWgvy8NST .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uAWgvy8NST .mbr-section-title {
  color: #3a6df1;
  text-align: center;
}
@media (min-width: 1400px) {
  .cid-uAWgvy8NST .col-12 {
    padding: 0 2rem;
  }
  .cid-uAWgvy8NST .row {
    margin: 0 -2rem;
  }
}
.cid-uAWgvy8NST .mbr-text,
.cid-uAWgvy8NST .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uAWfL1y0NV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3a6df1;
}
.cid-uAWfL1y0NV svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-uAWfL1y0NV svg .st0 {
  fill: #3a6df1;
}
@media (max-width: 992px) {
  .cid-uAWfL1y0NV svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-uAWfL1y0NV .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uAWfL1y0NV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uAWfL1y0NV .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uAWfL1y0NV .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uAWfL1y0NV div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uAWfL1y0NV .copyright {
  color: #ffffff;
}
.cid-uB0mtpSzZD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uB0mtpSzZD .media-container-row .mbr-text {
  color: #232323;
}
