body {
  font-family: Spartan;
}
.display-1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 3rem;
  line-height: 1.2;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.2rem;
  line-height: 1.2;
}
.display-2 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-4 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
}
.display-4 > .mbr-iconfont {
  font-size: 1.125rem;
}
.display-5 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem;
  line-height: 1.2;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 7px 15px;
  border-radius: 4px;
}
.btn-sm {
  padding: 7px 15px;
  border-radius: 4px;
}
.btn-md {
  padding: 15px 20px;
  border-radius: 4px;
}
.btn-lg {
  padding: 18px 25px;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6f6f6f !important;
}
.bg-success {
  background-color: #34b794 !important;
}
.bg-info {
  background-color: #2a3ba2 !important;
}
.bg-warning {
  background-color: #ca0017 !important;
}
.bg-danger {
  background-color: #1a191d !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6f6f6f !important;
  border-color: #6f6f6f !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #565656 !important;
  border-color: #565656 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #565656 !important;
  border-color: #565656 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #666666 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-info,
.btn-info:active {
  background-color: #2a3ba2 !important;
  border-color: #2a3ba2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #1f2c79 !important;
  border-color: #1f2c79 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #1f2c79 !important;
  border-color: #1f2c79 !important;
}
.btn-success,
.btn-success:active {
  background-color: #34b794 !important;
  border-color: #34b794 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #298f74 !important;
  border-color: #298f74 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #298f74 !important;
  border-color: #298f74 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ca0017 !important;
  border-color: #ca0017 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #970011 !important;
  border-color: #970011 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #970011 !important;
  border-color: #970011 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #1a191d !important;
  border-color: #1a191d !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #010102 !important;
  border-color: #010102 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #010102 !important;
  border-color: #010102 !important;
}
.btn-white {
  color: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #666666 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-white:hover {
  color: #cccccc !important;
  background-color: #cccccc !important;
  border-color: #cccccc !important;
}
.btn-white:hover,
.btn-white:hover:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover:hover,
.btn-white:hover:focus,
.btn-white:hover.focus,
.btn-white:hover.active {
  color: #666666 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-white:hover.disabled,
.btn-white:hover:disabled {
  color: #808080 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-black {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-black,
.btn-black:active {
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:hover {
  background-color: #4d4d4d !important;
  border-color: #4d4d4d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #6f6f6f;
  color: #6f6f6f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff !important;
  background-color: #6f6f6f !important;
  border-color: #6f6f6f !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6f6f6f !important;
  border-color: #6f6f6f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #2a3ba2;
  color: #2a3ba2;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff !important;
  background-color: #2a3ba2 !important;
  border-color: #2a3ba2 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #2a3ba2 !important;
  border-color: #2a3ba2 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #34b794;
  color: #34b794;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff !important;
  background-color: #34b794 !important;
  border-color: #34b794 !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #34b794 !important;
  border-color: #34b794 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ca0017;
  color: #ca0017;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff !important;
  background-color: #ca0017 !important;
  border-color: #ca0017 !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ca0017 !important;
  border-color: #ca0017 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #1a191d;
  color: #1a191d;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff !important;
  background-color: #1a191d !important;
  border-color: #1a191d !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #1a191d !important;
  border-color: #1a191d !important;
}
.btn-black-outline {
  border-color: #1a1a1a !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background-color: transparent;
  border-color: transparent;
  color: #1a1a1a;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #4d4d4d !important;
  background-color: transparent;
  border-color: #4d4d4d !important;
}
.btn-white-outline {
  border-color: #ffffff !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background-color: transparent;
  border-color: transparent;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #cccccc !important;
  background-color: transparent;
  border-color: #cccccc !important;
}
.text-primary {
  color: #6f6f6f !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #34b794 !important;
}
.text-info {
  color: #2a3ba2 !important;
}
.text-warning {
  color: #ca0017 !important;
}
.text-danger {
  color: #1a191d !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #1a1a1a !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #3c3c3c !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #1d6854 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #151d51 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #64000b !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
.nav-tabs .nav-link.active {
  color: #6f6f6f;
}
.nav-tabs .nav-link:not(.active) {
  color: #1a1a1a;
}
.alert-success {
  background-color: #34b794;
}
.alert-info {
  background-color: #2a3ba2;
}
.alert-warning {
  background-color: #ca0017;
}
.alert-danger {
  background-color: #1a191d;
}
.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: #6f6f6f;
  border-color: #6f6f6f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #6f6f6f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #afafaf;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #8cdec8;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #7180da;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ff97a3;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #cccad1;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
blockquote {
  border-color: #6f6f6f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6f6f6f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6f6f6f;
}
.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: #6f6f6f;
  border-bottom-color: #6f6f6f;
}
.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: #6f6f6f !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: #ffffff !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='%236f6f6f' %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.4s;
}
.cid-t2FMmuSFin .navbar-dropdown {
  position: relative !important;
}
.cid-t2FMmuSFin .navbar-dropdown {
  position: absolute !important;
}
.cid-t2FMmuSFin .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-t2FMmuSFin .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t2FMmuSFin .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t2FMmuSFin .dropdown-item:hover,
.cid-t2FMmuSFin .dropdown-item:focus {
  background: #6f6f6f !important;
  color: white !important;
}
.cid-t2FMmuSFin .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t2FMmuSFin .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t2FMmuSFin .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
  color: #000;
}
.cid-t2FMmuSFin .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t2FMmuSFin .nav-link {
  position: relative;
}
.cid-t2FMmuSFin .container {
  display: flex;
  margin: auto;
}
.cid-t2FMmuSFin .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t2FMmuSFin .dropdown-menu,
.cid-t2FMmuSFin .navbar.opened {
  background: #f24d94 !important;
}
.cid-t2FMmuSFin .nav-item:focus,
.cid-t2FMmuSFin .nav-link:focus {
  outline: none;
}
.cid-t2FMmuSFin .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t2FMmuSFin .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t2FMmuSFin .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t2FMmuSFin .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t2FMmuSFin .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t2FMmuSFin .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t2FMmuSFin .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(242, 77, 148, 0);
}
.cid-t2FMmuSFin .navbar.opened {
  transition: all 0.3s;
}
.cid-t2FMmuSFin .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t2FMmuSFin .navbar .navbar-logo img {
  width: auto;
}
.cid-t2FMmuSFin .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t2FMmuSFin .navbar.collapsed {
  justify-content: center;
}
.cid-t2FMmuSFin .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t2FMmuSFin .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t2FMmuSFin .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-t2FMmuSFin .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t2FMmuSFin .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t2FMmuSFin .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-t2FMmuSFin .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t2FMmuSFin .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t2FMmuSFin .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t2FMmuSFin .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t2FMmuSFin .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t2FMmuSFin .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t2FMmuSFin .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t2FMmuSFin .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-t2FMmuSFin .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t2FMmuSFin .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t2FMmuSFin .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t2FMmuSFin .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t2FMmuSFin .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t2FMmuSFin .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t2FMmuSFin .navbar.navbar-short {
  min-height: 60px;
}
.cid-t2FMmuSFin .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t2FMmuSFin .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t2FMmuSFin .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-t2FMmuSFin .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t2FMmuSFin .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t2FMmuSFin .dropdown-item.active,
.cid-t2FMmuSFin .dropdown-item:active {
  background-color: transparent;
}
.cid-t2FMmuSFin .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t2FMmuSFin .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t2FMmuSFin .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t2FMmuSFin .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f24d94;
}
.cid-t2FMmuSFin .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t2FMmuSFin .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t2FMmuSFin ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t2FMmuSFin .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t2FMmuSFin button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t2FMmuSFin button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t2FMmuSFin button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t2FMmuSFin button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t2FMmuSFin button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t2FMmuSFin button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t2FMmuSFin nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t2FMmuSFin nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t2FMmuSFin nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t2FMmuSFin nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t2FMmuSFin .navbar-dropdown {
  padding: .7rem 1rem;
}
.cid-t2FMmuSFin a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t2FMmuSFin .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-t2FMmuSFin .navbar {
    height: 70px;
  }
  .cid-t2FMmuSFin .navbar.opened {
    height: auto;
  }
  .cid-t2FMmuSFin .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sa69ignI5y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f99bc4;
}
.cid-sa69ignI5y .item-subtitle,
.cid-sa69ignI5y .item-title,
.cid-sa69ignI5y .mbr-section-title {
  margin-bottom: 12px;
}
.cid-sa69ignI5y .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-sa69ignI5y .item-img {
  overflow: hidden;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cid-sa69ignI5y .item-img img {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  width: 102%;
  height: 102%;
  object-fit: cover;
  will-change: transform;
}
.cid-sa69ignI5y .item:focus,
.cid-sa69ignI5y span:focus {
  outline: none;
}
.cid-sa69ignI5y .item {
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sa69ignI5y .item {
    margin-bottom: 5rem;
  }
  .cid-sa69ignI5y .item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-sa69ignI5y .item:last-child {
    margin-bottom: 0;
  }
}
.cid-sa69ignI5y .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sa69ignI5y .item {
  padding: 0;
  margin: 0;
}
.cid-sa69ignI5y .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  min-height: 300px;
  height: 100%;
  height: 650px;
}
.cid-sa69ignI5y .item-wrapper:hover .item-img img {
  transform: scale3d(1.2, 1.2, 2);
}
.cid-sa69ignI5y .item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 10% 20%;
}
.cid-sa69ignI5y .item-content > div,
.cid-sa69ignI5y .item-content p {
  z-index: 5;
  position: relative;
}
@media (max-width: 1199px) {
  .cid-sa69ignI5y .item-content {
    padding: 8% 15%;
  }
}
@media (max-width: 991px) {
  .cid-sa69ignI5y .item-content {
    padding: 50px 75px;
  }
}
@media (max-width: 575px) {
  .cid-sa69ignI5y .item-content {
    padding: 30px 20px;
  }
}
.cid-sa6etrijTb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fef8f5;
}
.cid-sa6etrijTb .item-subtitle,
.cid-sa6etrijTb .item-title,
.cid-sa6etrijTb .mbr-section-title {
  margin-bottom: 12px;
}
.cid-sa6etrijTb .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-sa6etrijTb .item-img {
  overflow: hidden;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cid-sa6etrijTb .item-img img {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  width: 102%;
  height: 102%;
  object-fit: cover;
  will-change: transform;
}
.cid-sa6etrijTb .item:focus,
.cid-sa6etrijTb span:focus {
  outline: none;
}
.cid-sa6etrijTb .item {
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .cid-sa6etrijTb .item:last-child {
    margin-bottom: 0;
  }
}
.cid-sa6etrijTb .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sa6etrijTb .item {
  padding: 0;
  margin: 0;
}
.cid-sa6etrijTb .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  min-height: 300px;
  height: 100%;
  height: 520px;
}
.cid-sa6etrijTb .item-wrapper:hover .item-img img {
  transform: scale3d(1.2, 1.2, 2);
}
.cid-sa6etrijTb .item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 10% 20%;
}
.cid-sa6etrijTb .item-content > div,
.cid-sa6etrijTb .item-content p {
  z-index: 5;
  position: relative;
}
@media (max-width: 1199px) {
  .cid-sa6etrijTb .item-content {
    padding: 8% 15%;
  }
}
@media (max-width: 991px) {
  .cid-sa6etrijTb .item-content {
    padding: 50px 75px;
  }
}
@media (max-width: 575px) {
  .cid-sa6etrijTb .item-content {
    padding: 30px 20px;
  }
}
.cid-sa6fpttrbS {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #1a191d;
}
.cid-sa6fpttrbS .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-sa6fpttrbS .mbr-section-btn .btn-secondary-outline:hover,
.cid-sa6fpttrbS .mbr-section-btn .btn-secondary-outline .active,
.cid-sa6fpttrbS .mbr-section-btn .btn-secondary-outline:focus {
  color: #6f6f6f !important;
}
.cid-sa6fpttrbS img,
.cid-sa6fpttrbS .item-img {
  border-radius: 4px;
}
.cid-sa6fpttrbS .item-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  overflow: hidden;
}
.cid-sa6fpttrbS .item-img img {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  will-change: transform;
}
.cid-sa6fpttrbS .item-img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: .45;
  background-color: #232323;
  z-index: 5;
  pointer-events: none;
  border-radius: 4px;
}
.cid-sa6fpttrbS .item:focus,
.cid-sa6fpttrbS span:focus {
  outline: none;
}
.cid-sa6fpttrbS .item {
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .cid-sa6fpttrbS .item:last-child {
    margin-bottom: 0;
  }
}
.cid-sa6fpttrbS .item-wrapper {
  position: relative;
  border-radius: 4px;
  display: flex;
  flex-flow: column nowrap;
  overflow: hidden;
}
.cid-sa6fpttrbS .item-wrapper:hover .item-img img {
  transform: scale3d(1.2, 1.2, 1);
}
.cid-sa6fpttrbS .item-wrapper:hover .post_wrap {
  opacity: 1;
  background: linear-gradient(0deg, rgba(23, 22, 26, 0), rgba(23, 22, 26, 0.4));
  transform: translateY(0);
}
.cid-sa6fpttrbS .item-wrapper .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-sa6fpttrbS .card_post {
  display: inline-flex;
  align-items: center;
  padding: 40px;
  padding-bottom: 0;
}
.cid-sa6fpttrbS .post_wrap {
  position: relative;
  z-index: 5;
  background: linear-gradient(0deg, rgba(23, 22, 26, 0), rgba(23, 22, 26, 0.4));
}
@media (min-width: 991px) {
  .cid-sa6fpttrbS .post_wrap {
    opacity: 0;
    transform: translateY(-10px);
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  }
}
.cid-sa6fpttrbS .image_post {
  display: inline-block;
  height: 46px;
  width: 46px;
  min-width: 46px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-sa6fpttrbS .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-sa6fpttrbS .author_post {
  display: inline-block;
  white-space: nowrap;
}
.cid-sa6fpttrbS .item-content {
  padding: 40px;
  height: 100%;
  min-height: 200px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-sa6fpttrbS .item-content > div {
  position: relative;
  z-index: 5;
}
.cid-sa6fpttrbS .category_content {
  opacity: .8;
}
.cid-sa6fpttrbS .item-title,
.cid-sa6fpttrbS .card_topic {
  margin-bottom: 12px;
}
.cid-sa6fpttrbS .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  margin-left: 10px;
  margin-right: 3px;
}
@media (max-width: 767px) {
  .cid-sa6fpttrbS .item-content,
  .cid-sa6fpttrbS .card_post {
    padding: 20px;
  }
}
.cid-sa6fpttrbS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sa6fpttrbS .mbr-section-title {
  color: #ffffff;
}
.cid-t2EWA3F347 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fef8f5;
}
.cid-t2EWA3F347 .pos_rel {
  position: relative;
}
.cid-t2EWA3F347 .main_section_title {
  display: flex;
}
.cid-t2EWA3F347 .main_title {
  padding: 0 8.333%;
}
.cid-t2EWA3F347 .empty_content {
  width: 90%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-t2EWA3F347 .card_title {
    font-size: 2rem;
  }
}
.cid-t2EWA3F347 .text-wrapper {
  width: 60%;
  background: #010a44;
  padding: 90px 1rem;
  height: 70vh;
}
@media (min-width: 1550px) {
  .cid-t2EWA3F347 .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-t2EWA3F347 .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-t2EWA3F347 .text-wrapper {
    padding-right: 3%;
    padding-left: calc(3% + 16px);
  }
}
.cid-t2EWA3F347 .text-wrapper:hover .card_title a {
  color: #ffffff !important;
}
.cid-t2EWA3F347 .text-wrapper .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-t2EWA3F347 .block-content,
.cid-t2EWA3F347 .main_section_title {
  flex-direction: row-reverse;
}
@media (min-width: 1550px) {
  .cid-t2EWA3F347 .text-wrapper {
    padding-left: 8.333%;
    padding-right: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-t2EWA3F347 .text-wrapper {
    padding-left: 8.333%;
    padding-right: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-t2EWA3F347 .text-wrapper {
    padding-left: 3%;
    padding-right: calc(3% + 16px);
  }
}
.cid-t2EWA3F347 .block-content {
  display: flex;
  align-items: center;
}
.cid-t2EWA3F347 .image-wrapper,
.cid-t2EWA3F347 img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.cid-t2EWA3F347 .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-t2EWA3F347 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-t2EWA3F347 .mbr-section-btn .btn-secondary-outline:hover,
.cid-t2EWA3F347 .mbr-section-btn .btn-secondary-outline .active,
.cid-t2EWA3F347 .mbr-section-btn .btn-secondary-outline:focus {
  color: #6f6f6f !important;
}
@media (max-width: 991px) {
  .cid-t2EWA3F347 .block-content {
    flex-direction: column;
  }
  .cid-t2EWA3F347 .text-wrapper {
    order: 2;
    width: 100%;
    padding: 40px;
    height: auto;
  }
  .cid-t2EWA3F347 .empty_content {
    display: none;
  }
  .cid-t2EWA3F347 .main_title {
    padding: 40px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-t2EWA3F347 .text-wrapper,
  .cid-t2EWA3F347 .main_title {
    padding: 30px 1rem;
  }
}
.cid-sa6ho41MLl {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #1a191d;
}
.cid-sa6ho41MLl .item-wrapper:hover .mbr-section-title a {
  color: #ffffff !important;
}
.cid-sa6ho41MLl .mbr-section-title,
.cid-sa6ho41MLl .card_topic {
  margin-bottom: 12px;
}
.cid-sa6ho41MLl .author_post {
  margin-right: 25px;
  display: inline-block;
  white-space: nowrap;
}
.cid-sa6ho41MLl .card_post {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-top: 30px;
}
.cid-sa6ho41MLl .image_post {
  display: inline-block;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-sa6ho41MLl .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-sa6ho41MLl .category_content,
.cid-sa6ho41MLl .date,
.cid-sa6ho41MLl .name_author {
  opacity: .8;
}
.cid-sa6ho41MLl .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-sa6ho41MLl .mbr-section-title {
  text-align: center;
}
.cid-sa6i0BH2rp {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a191d;
}
.cid-sa6i0BH2rp .wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  border-radius: 4px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #6f6f6f;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-sa6i0BH2rp .wrap {
    padding: 30px 15px;
  }
}
.cid-sa6i0BH2rp .icon_block,
.cid-sa6i0BH2rp .item-title {
  margin-bottom: 12px;
}
.cid-sa6i0BH2rp .icon_block .mbr-iconfont {
  font-size: 40px;
  margin-right: 10px;
  color: #ffffff;
}
.cid-sa6i0BH2rp .item {
  margin-bottom: 0;
  padding-top: 10px;
}
.cid-sa6i0BH2rp .item:before {
  content: "\e95e";
  font-family: 'Moririse2';
  margin-right: 10px;
  font-size: 13px;
  vertical-align: middle;
  color: #ffffff;
}
.cid-sa6i0BH2rp .mbr-section-btn {
  margin-top: 25px;
}
.cid-sa6i0BH2rp .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-sa6jcfu6wX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a191d;
}
.cid-sa6jcfu6wX .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  z-index: 1;
}
.cid-sa6jcfu6wX .mbr-section-title {
  margin-bottom: 12px;
}
.cid-sa6jcfu6wX .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-sa6jcfu6wX .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-sa6jcfu6wX .mbr-section-btn .btn-secondary-outline:hover,
.cid-sa6jcfu6wX .mbr-section-btn .btn-secondary-outline .active,
.cid-sa6jcfu6wX .mbr-section-btn .btn-secondary-outline:focus {
  color: #6f6f6f !important;
}
.cid-sa6jcfu6wX .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-sa6jcfu6wX .image_post {
  display: inline-block;
}
.cid-sa6jcfu6wX .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-sa6jcfu6wX .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-sa6jcfu6wX .mbr-text,
.cid-sa6jcfu6wX .mbr-section-btn {
  color: #ffffff;
}
.cid-sa6jcfu6wX .author_post,
.cid-sa6jcfu6wX .post_wrap {
  color: #ffffff;
}
.cid-sa6jIxi2XU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1a191d;
}
.cid-sa6jIxi2XU .mbr-section-subtitle,
.cid-sa6jIxi2XU .mbr-section-title {
  margin-bottom: 12px;
}
.cid-sa6jIxi2XU .mbr-text {
  margin-bottom: 2rem;
  color: #ffffff;
}
.cid-sa6jIxi2XU .form-group {
  margin-bottom: 0;
  padding-right: 0;
}
.cid-sa6jIxi2XU .form-control {
  border: none !important;
  padding: 14px 18px;
  background-color: #fef2ed !important;
  font-size: 16px;
  color: #ffffff;
  background-color: transparent !important;
  border-radius: 4px;
  border: 1px solid #6f6f6f !important;
}
.cid-sa6jIxi2XU .input-group-btn {
  padding-left: 0;
}
.cid-sa6jIxi2XU .input-group-btn .btn {
  font-weight: 600;
  padding: 12px 18px;
  width: 100%;
}
.cid-sa6jIxi2XU .mbr-form .input-group-btn .btn {
  border-radius: 4px !important;
}
.cid-sa6jIxi2XU .mbr-form .btn {
  margin: 0;
}
.cid-sa6jIxi2XU input::-webkit-input-placeholder {
  color: #ffffff;
  opacity: .6;
}
.cid-sa6jIxi2XU input::-moz-placeholder {
  color: #ffffff;
  opacity: .6;
}
.cid-sa6jIxi2XU .image img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sa6jIxi2XU .image {
    margin-bottom: 2rem;
    order: 1;
  }
}
.cid-sa6jIxi2XU .mbr-section-title {
  color: #ffffff;
}
.cid-sa6jIxi2XU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t2GimQfxgJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a7bc4;
}
.cid-t2GimQfxgJ .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t2GimQfxgJ .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-t2GimQfxgJ .row {
    text-align: center;
  }
  .cid-t2GimQfxgJ .row > div {
    margin: auto;
  }
  .cid-t2GimQfxgJ .social-row {
    justify-content: center;
  }
}
.cid-t2GimQfxgJ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-t2GimQfxgJ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-t2GimQfxgJ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t2GimQfxgJ .list {
    margin-bottom: 0rem;
  }
}
.cid-t2GimQfxgJ .mbr-text {
  color: #ffffff;
}
.cid-t2GimQfxgJ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-t2GimQfxgJ .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-t2GimQfxgJ div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sa6pdusY2m {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sa6pdusY2m .pos_rel {
  position: relative;
}
.cid-sa6pdusY2m .main_section_title {
  display: flex;
}
.cid-sa6pdusY2m .main_title {
  padding: 0 8.333%;
}
.cid-sa6pdusY2m .empty_content {
  width: 132%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sa6pdusY2m .card_title {
    font-size: 2rem;
  }
}
.cid-sa6pdusY2m .text-wrapper {
  width: 88%;
  background: #1a7bc4;
  padding: 90px 1rem;
  height: 70vh;
}
@media (min-width: 1550px) {
  .cid-sa6pdusY2m .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-sa6pdusY2m .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-sa6pdusY2m .text-wrapper {
    padding-right: 3%;
    padding-left: calc(3% + 16px);
  }
}
.cid-sa6pdusY2m .text-wrapper:hover .card_title a {
  color: #ffffff !important;
}
.cid-sa6pdusY2m .text-wrapper .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-sa6pdusY2m .block-content {
  display: flex;
  align-items: center;
}
.cid-sa6pdusY2m .image-wrapper,
.cid-sa6pdusY2m img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.cid-sa6pdusY2m .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #232226;
}
.cid-sa6pdusY2m .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-sa6pdusY2m .mbr-section-btn .btn-secondary-outline:hover,
.cid-sa6pdusY2m .mbr-section-btn .btn-secondary-outline .active,
.cid-sa6pdusY2m .mbr-section-btn .btn-secondary-outline:focus {
  color: #6f6f6f !important;
}
@media (max-width: 991px) {
  .cid-sa6pdusY2m .block-content {
    flex-direction: column;
  }
  .cid-sa6pdusY2m .text-wrapper {
    order: 2;
    width: 100%;
    padding: 40px;
    height: auto;
  }
  .cid-sa6pdusY2m .empty_content {
    display: none;
  }
  .cid-sa6pdusY2m .main_title {
    padding: 40px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sa6pdusY2m .text-wrapper,
  .cid-sa6pdusY2m .main_title {
    padding: 30px 1rem;
  }
}
.cid-sa6pdusY2m .mbr-section-title {
  color: #232226;
}
.cid-sa6pdusY2m .card_subtitle {
  color: #ffffff;
}
.cid-sa6pdusY2m .mbr-text,
.cid-sa6pdusY2m .mbr-section-btn {
  color: #ffffff;
}
.cid-sa6pdusY2m .card_title {
  color: #ffffff;
}
.cid-t2G5nZYxg2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fef8f5;
}
.cid-t2G5nZYxg2 .wrap {
  overflow: hidden;
  background-color: #ca0017;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .cid-t2G5nZYxg2 .wrap {
    height: auto;
  }
}
.cid-t2G5nZYxg2 .wrap:hover .mbr-section-title a {
  color: #ffffff !important;
}
.cid-t2G5nZYxg2 .text-wrapper {
  padding: 70px 0;
  padding: 70px 40px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-t2G5nZYxg2 .text-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-t2G5nZYxg2 .text-wrapper {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-t2G5nZYxg2 .text-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .cid-t2G5nZYxg2 .text-wrapper {
    padding: 20px 0;
  }
}
@media (max-width: 991px) {
  .cid-t2G5nZYxg2 .text-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-t2G5nZYxg2 .text-wrapper {
    padding: 20px;
  }
}
.cid-t2G5nZYxg2 .mbr-section-subtitle,
.cid-t2G5nZYxg2 .mbr-section-title {
  margin-bottom: 12px;
}
.cid-t2G5nZYxg2 .image {
  width: 100%;
}
.cid-t2G5nZYxg2 .image img {
  width: 101%;
  border-radius: 4px;
  object-fit: cover;
}
.cid-t2G5nZYxg2 .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-t2KNSsj1aD {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t2KNSsj1aD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t2KNSsj1aD .row {
  flex-direction: row-reverse;
}
.cid-t2KNSsj1aD img {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.cid-t2Gesvftg5 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
#custom-html-j {
  /* Type valid CSS here */
}
#custom-html-j div {
  padding: 20px 0;
  color: #777;
  text-align: center;
}
#custom-html-j p {
  font-size: 60px;
  color: #777;
}
.cid-sa6pO17Hys {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f8f8f8;
}
.cid-sa6pO17Hys .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-sa6pO17Hys .mbr-section-btn .btn-secondary-outline:hover,
.cid-sa6pO17Hys .mbr-section-btn .btn-secondary-outline .active,
.cid-sa6pO17Hys .mbr-section-btn .btn-secondary-outline:focus {
  color: #6f6f6f !important;
}
.cid-sa6pO17Hys img,
.cid-sa6pO17Hys .item-img {
  border-radius: 4px;
}
.cid-sa6pO17Hys .item-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  overflow: hidden;
}
.cid-sa6pO17Hys .item-img img {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  will-change: transform;
}
.cid-sa6pO17Hys .item-img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: .45;
  background-color: #232323;
  z-index: 5;
  pointer-events: none;
  border-radius: 4px;
}
.cid-sa6pO17Hys .item:focus,
.cid-sa6pO17Hys span:focus {
  outline: none;
}
.cid-sa6pO17Hys .item {
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .cid-sa6pO17Hys .item:last-child {
    margin-bottom: 0;
  }
}
.cid-sa6pO17Hys .item-wrapper {
  position: relative;
  border-radius: 4px;
  display: flex;
  flex-flow: column nowrap;
  overflow: hidden;
}
.cid-sa6pO17Hys .item-wrapper:hover .item-img img {
  transform: scale3d(1.2, 1.2, 1);
}
.cid-sa6pO17Hys .item-wrapper:hover .post_wrap {
  opacity: 1;
  background: linear-gradient(0deg, rgba(23, 22, 26, 0), rgba(23, 22, 26, 0.4));
  transform: translateY(0);
}
.cid-sa6pO17Hys .item-wrapper .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-sa6pO17Hys .card_post {
  display: inline-flex;
  align-items: center;
  padding: 40px;
  padding-bottom: 0;
}
.cid-sa6pO17Hys .post_wrap {
  position: relative;
  z-index: 5;
  background: linear-gradient(0deg, rgba(23, 22, 26, 0), rgba(23, 22, 26, 0.4));
}
@media (min-width: 991px) {
  .cid-sa6pO17Hys .post_wrap {
    opacity: 0;
    transform: translateY(-10px);
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  }
}
.cid-sa6pO17Hys .image_post {
  display: inline-block;
  height: 46px;
  width: 46px;
  min-width: 46px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  margin-right: 15px;
  border-radius: 50%;
}
.cid-sa6pO17Hys .image_post img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cid-sa6pO17Hys .author_post {
  display: inline-block;
  white-space: nowrap;
}
.cid-sa6pO17Hys .item-content {
  padding: 40px;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sa6pO17Hys .item-content > div {
  position: relative;
  z-index: 5;
}
.cid-sa6pO17Hys .category_content {
  opacity: .8;
}
.cid-sa6pO17Hys .mbr-section-subtitle,
.cid-sa6pO17Hys .card_topic {
  margin-bottom: 12px;
}
.cid-sa6pO17Hys .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #f14105;
}
.cid-sa6pO17Hys .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  margin-left: 10px;
  margin-right: 3px;
}
@media (max-width: 767px) {
  .cid-sa6pO17Hys .item-content,
  .cid-sa6pO17Hys .card_post {
    padding: 20px;
  }
}
.cid-sa6pO17Hys .mbr-section-subtitle {
  color: #232226;
}
.cid-sa6pO17Hys .mbr-section-title {
  color: #4a56a2;
}
#custom-html-15 {
  /* Type valid CSS here */
  /* 2カラムサイトにする */
  /* 2カラムコンテンツにする */
}
#custom-html-15 .wrapper {
  width: 100%;
  display: flex;
  margin: 10px auto;
  justify-content: center;
}
#custom-html-15 .main,
#custom-html-15 .side {
  padding: 10px;
}
#custom-html-15 .main {
  background: #ffffff;
  width: 90%;
  margin-right: 10px;
}
#custom-html-15 .side {
  background: skyblue;
  width: 20%;
}
#custom-html-15 .side p,
#custom-html-15 ul {
  background-color: #f0f0f0;
  padding: 30px;
}
#custom-html-15 .archive {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
#custom-html-15 .archive div {
  margin-bottom: 1rem;
  padding: 1rem;
  width: 40%;
  background-color: #f0f0f0;
  height: auto;
}
#custom-html-15 .archive img {
  display: block;
  margin-bottom: 3rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1350px) {
  #custom-html-15 .wrapper {
    flex-direction: column;
    width: 100%;
  }
  #custom-html-15 .main,
  #custom-html-15 .side {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
  }
  #custom-html-15 .archive div {
    width: 70%;
    margin: 20px auto;
  }
}
.cid-t2L4AMCAmG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t2L4AMCAmG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t2L4AMCAmG .row {
  flex-direction: row-reverse;
}
.cid-t2L4AMCAmG img {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.cid-t2GlrXeZ5D {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-t2GlrXeZ5D .mbr-overlay {
  background: #ffffff;
  opacity: 0.6;
}
.cid-t2GlrXeZ5D img,
.cid-t2GlrXeZ5D .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-t2GlrXeZ5D .item:focus,
.cid-t2GlrXeZ5D span:focus {
  outline: none;
}
.cid-t2GlrXeZ5D .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t2GlrXeZ5D .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t2GlrXeZ5D .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-t2GlrXeZ5D .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t2GlrXeZ5D .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-t2GlrXeZ5D .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-t2GlrXeZ5D .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t2GlrXeZ5D .mbr-section-title {
  color: #232323;
}
.cid-t2GlrXeZ5D .mbr-text,
.cid-t2GlrXeZ5D .mbr-section-btn {
  text-align: left;
}
.cid-t2GlrXeZ5D .item-title {
  text-align: left;
  color: #ca0017;
}
.cid-t2GlrXeZ5D .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-t2Gljam5R3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t2Gljam5R3 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-t2Gljam5R3 .icon-box {
  background: #ca0017;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t2Gljam5R3 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t2Gljam5R3 .card {
    margin-bottom: 2rem;
  }
  .cid-t2Gljam5R3 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-t2Gljam5R3 .icon-title {
  color: #ca0017;
}
.cid-t2KEipwtej {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #e9e9eb;
}
.cid-t2KEipwtej .mbr-section-subtitle,
.cid-t2KEipwtej .mbr-section-title {
  margin-bottom: 12px;
}
.cid-t2KEipwtej .mbr-text {
  margin-bottom: 2rem;
  color: #232323;
}
.cid-t2KEipwtej .form-group {
  margin-bottom: 0;
  padding-right: 0;
}
.cid-t2KEipwtej .form-control {
  border: none !important;
  padding: 14px 18px;
  background-color: #fef2ed !important;
  font-size: 16px;
  color: #847c7c;
  background-color: transparent !important;
  border-radius: 4px;
  border: 1px solid #ca0017 !important;
}
.cid-t2KEipwtej .input-group-btn {
  padding-left: 0;
}
.cid-t2KEipwtej .input-group-btn .btn {
  font-weight: 600;
  padding: 12px 18px;
  width: 100%;
}
.cid-t2KEipwtej .mbr-form .input-group-btn .btn {
  border-radius: 4px !important;
}
.cid-t2KEipwtej .mbr-form .btn {
  margin: 0;
}
.cid-t2KEipwtej input::-webkit-input-placeholder {
  color: #847c7c;
  opacity: .6;
}
.cid-t2KEipwtej input::-moz-placeholder {
  color: #847c7c;
  opacity: .6;
}
.cid-t2KEipwtej .image img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-t2KEipwtej .image {
    margin-bottom: 2rem;
    order: 1;
  }
}
.cid-t2KEipwtej .mbr-section-title {
  color: #232323;
}
.cid-t2KEipwtej .mbr-section-subtitle {
  color: #983a37;
}
.cid-t2KEipwtej .textGDPR {
  font-size: 14px;
  text-align: left;
}
.cid-t2KEipwtej .textGDPR input[name='gdpr'] {
  top: 0 !important;
}
.cid-t2KLdx2TGM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t2KLdx2TGM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t2KLdx2TGM .row {
  flex-direction: row-reverse;
}
.cid-t2KLdx2TGM img {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.cid-t2GimQfxgJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a7bc4;
}
.cid-t2GimQfxgJ .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t2GimQfxgJ .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-t2GimQfxgJ .row {
    text-align: center;
  }
  .cid-t2GimQfxgJ .row > div {
    margin: auto;
  }
  .cid-t2GimQfxgJ .social-row {
    justify-content: center;
  }
}
.cid-t2GimQfxgJ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-t2GimQfxgJ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-t2GimQfxgJ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t2GimQfxgJ .list {
    margin-bottom: 0rem;
  }
}
.cid-t2GimQfxgJ .mbr-text {
  color: #ffffff;
}
.cid-t2GimQfxgJ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-t2GimQfxgJ .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-t2GimQfxgJ div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-t2GmC2RO6F {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #1a7bc4;
}
.cid-t2GmC2RO6F .mbr-section-title {
  color: #ffffff;
}
.cid-t2FMmuSFin .navbar-dropdown {
  position: relative !important;
}
.cid-t2FMmuSFin .navbar-dropdown {
  position: absolute !important;
}
.cid-t2FMmuSFin .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-t2FMmuSFin .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t2FMmuSFin .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t2FMmuSFin .dropdown-item:hover,
.cid-t2FMmuSFin .dropdown-item:focus {
  background: #6f6f6f !important;
  color: white !important;
}
.cid-t2FMmuSFin .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t2FMmuSFin .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t2FMmuSFin .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
  color: #000;
}
.cid-t2FMmuSFin .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t2FMmuSFin .nav-link {
  position: relative;
}
.cid-t2FMmuSFin .container {
  display: flex;
  margin: auto;
}
.cid-t2FMmuSFin .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t2FMmuSFin .dropdown-menu,
.cid-t2FMmuSFin .navbar.opened {
  background: #dee3ff !important;
}
.cid-t2FMmuSFin .nav-item:focus,
.cid-t2FMmuSFin .nav-link:focus {
  outline: none;
}
.cid-t2FMmuSFin .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t2FMmuSFin .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t2FMmuSFin .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t2FMmuSFin .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t2FMmuSFin .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t2FMmuSFin .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t2FMmuSFin .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(222, 227, 255, 0);
}
.cid-t2FMmuSFin .navbar.opened {
  transition: all 0.3s;
}
.cid-t2FMmuSFin .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t2FMmuSFin .navbar .navbar-logo img {
  width: auto;
}
.cid-t2FMmuSFin .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t2FMmuSFin .navbar.collapsed {
  justify-content: center;
}
.cid-t2FMmuSFin .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t2FMmuSFin .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t2FMmuSFin .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-t2FMmuSFin .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t2FMmuSFin .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t2FMmuSFin .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-t2FMmuSFin .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t2FMmuSFin .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t2FMmuSFin .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t2FMmuSFin .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t2FMmuSFin .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t2FMmuSFin .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t2FMmuSFin .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t2FMmuSFin .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-t2FMmuSFin .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t2FMmuSFin .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t2FMmuSFin .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t2FMmuSFin .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t2FMmuSFin .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t2FMmuSFin .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t2FMmuSFin .navbar.navbar-short {
  min-height: 60px;
}
.cid-t2FMmuSFin .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t2FMmuSFin .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t2FMmuSFin .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-t2FMmuSFin .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t2FMmuSFin .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t2FMmuSFin .dropdown-item.active,
.cid-t2FMmuSFin .dropdown-item:active {
  background-color: transparent;
}
.cid-t2FMmuSFin .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t2FMmuSFin .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t2FMmuSFin .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t2FMmuSFin .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #dee3ff;
}
.cid-t2FMmuSFin .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t2FMmuSFin .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t2FMmuSFin ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t2FMmuSFin .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t2FMmuSFin button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t2FMmuSFin button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t2FMmuSFin button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t2FMmuSFin button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t2FMmuSFin button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t2FMmuSFin button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t2FMmuSFin nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t2FMmuSFin nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t2FMmuSFin nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t2FMmuSFin nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t2FMmuSFin .navbar-dropdown {
  padding: .7rem 1rem;
}
.cid-t2FMmuSFin a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t2FMmuSFin .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-t2FMmuSFin .navbar {
    height: 70px;
  }
  .cid-t2FMmuSFin .navbar.opened {
    height: auto;
  }
  .cid-t2FMmuSFin .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t2M4Ys9uw0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/news1.jpg");
}
.cid-t2M4Ys9uw0 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-t2M4Ys9uw0 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t2M4Ys9uw0 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t2M4Ys9uw0 .card-wrapper {
    padding: 4rem;
  }
}
.cid-t2M49WACyY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t2M49WACyY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t2M49WACyY .row {
  flex-direction: row-reverse;
}
.cid-t2M49WACyY img {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
#custom-html-13 {
  /* Type valid CSS here */
}
#custom-html-13 div {
  padding: 40px 0;
  color: #777;
  text-align: center;
}
#custom-html-13 p {
  font-size: 60px;
  color: #777;
}
.cid-t2M49YFDlL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a7bc4;
}
.cid-t2M49YFDlL .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t2M49YFDlL .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-t2M49YFDlL .row {
    text-align: center;
  }
  .cid-t2M49YFDlL .row > div {
    margin: auto;
  }
  .cid-t2M49YFDlL .social-row {
    justify-content: center;
  }
}
.cid-t2M49YFDlL .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-t2M49YFDlL .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-t2M49YFDlL .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t2M49YFDlL .list {
    margin-bottom: 0rem;
  }
}
.cid-t2M49YFDlL .mbr-text {
  color: #ffffff;
}
.cid-t2M49YFDlL .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-t2M49YFDlL .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-t2M49YFDlL div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-t2M49ZsRv1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #1a7bc4;
}
.cid-t2M49ZsRv1 .mbr-section-title {
  color: #ffffff;
}
.cid-t2M49ZQQjq .navbar-dropdown {
  position: relative !important;
}
.cid-t2M49ZQQjq .navbar-dropdown {
  position: absolute !important;
}
.cid-t2M49ZQQjq .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-t2M49ZQQjq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t2M49ZQQjq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t2M49ZQQjq .dropdown-item:hover,
.cid-t2M49ZQQjq .dropdown-item:focus {
  background: #6f6f6f !important;
  color: white !important;
}
.cid-t2M49ZQQjq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t2M49ZQQjq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t2M49ZQQjq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
  color: #000;
}
.cid-t2M49ZQQjq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t2M49ZQQjq .nav-link {
  position: relative;
}
.cid-t2M49ZQQjq .container {
  display: flex;
  margin: auto;
}
.cid-t2M49ZQQjq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t2M49ZQQjq .dropdown-menu,
.cid-t2M49ZQQjq .navbar.opened {
  background: #dee3ff !important;
}
.cid-t2M49ZQQjq .nav-item:focus,
.cid-t2M49ZQQjq .nav-link:focus {
  outline: none;
}
.cid-t2M49ZQQjq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t2M49ZQQjq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t2M49ZQQjq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t2M49ZQQjq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t2M49ZQQjq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t2M49ZQQjq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t2M49ZQQjq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(222, 227, 255, 0);
}
.cid-t2M49ZQQjq .navbar.opened {
  transition: all 0.3s;
}
.cid-t2M49ZQQjq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t2M49ZQQjq .navbar .navbar-logo img {
  width: auto;
}
.cid-t2M49ZQQjq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t2M49ZQQjq .navbar.collapsed {
  justify-content: center;
}
.cid-t2M49ZQQjq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t2M49ZQQjq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t2M49ZQQjq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-t2M49ZQQjq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t2M49ZQQjq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t2M49ZQQjq .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-t2M49ZQQjq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t2M49ZQQjq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t2M49ZQQjq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t2M49ZQQjq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t2M49ZQQjq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t2M49ZQQjq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t2M49ZQQjq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t2M49ZQQjq .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-t2M49ZQQjq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t2M49ZQQjq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t2M49ZQQjq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t2M49ZQQjq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t2M49ZQQjq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t2M49ZQQjq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t2M49ZQQjq .navbar.navbar-short {
  min-height: 60px;
}
.cid-t2M49ZQQjq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t2M49ZQQjq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t2M49ZQQjq .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-t2M49ZQQjq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t2M49ZQQjq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t2M49ZQQjq .dropdown-item.active,
.cid-t2M49ZQQjq .dropdown-item:active {
  background-color: transparent;
}
.cid-t2M49ZQQjq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t2M49ZQQjq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t2M49ZQQjq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t2M49ZQQjq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #dee3ff;
}
.cid-t2M49ZQQjq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t2M49ZQQjq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t2M49ZQQjq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t2M49ZQQjq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t2M49ZQQjq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t2M49ZQQjq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t2M49ZQQjq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t2M49ZQQjq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t2M49ZQQjq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t2M49ZQQjq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t2M49ZQQjq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t2M49ZQQjq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t2M49ZQQjq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t2M49ZQQjq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t2M49ZQQjq .navbar-dropdown {
  padding: .7rem 1rem;
}
.cid-t2M49ZQQjq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t2M49ZQQjq .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-t2M49ZQQjq .navbar {
    height: 70px;
  }
  .cid-t2M49ZQQjq .navbar.opened {
    height: auto;
  }
  .cid-t2M49ZQQjq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t2Rdxbyz3u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1285.jpg");
}
.cid-t2Rdxbyz3u .card-wrapper {
  background: #fef2ed;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-t2Rdxbyz3u .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t2Rdxbyz3u .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t2Rdxbyz3u .card-wrapper {
    padding: 4rem;
  }
}
.cid-t2RdxcTdt4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t2RdxcTdt4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t2RdxcTdt4 .row {
  flex-direction: row-reverse;
}
.cid-t2RdxcTdt4 img {
  width: 210px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.cid-t4nqGAa3RY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t4nqGAa3RY img {
  width: 120px;
  margin: auto;
}
.cid-t4nqGAa3RY .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.95;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t4nqGAa3RY .card {
    max-width: 12.5%;
  }
}
.cid-t2Sg8v14K8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #dee3ff;
}
.cid-t2Sg8v14K8 .card_block {
  border-radius: 10px;
  padding: 40px;
  background-color: #408975;
}
.cid-t2Sg8v14K8 .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-t2Sg8v14K8 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-t2Sg8v14K8 .mbr-section-btn .btn-secondary-outline:hover,
.cid-t2Sg8v14K8 .mbr-section-btn .btn-secondary-outline .active,
.cid-t2Sg8v14K8 .mbr-section-btn .btn-secondary-outline:focus {
  color: #6f6f6f !important;
}
.cid-t2Sg8v14K8 .content_block:hover .mbr-section-subtitle a {
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-t2Sg8v14K8 .card_block {
    margin-bottom: 1.5rem;
    padding: 20px;
  }
}
.cid-t2SCedn5R4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fef8f5;
}
.cid-t2SCedn5R4 .wrap:hover .mbr-section-title a {
  color: #ffffff !important;
}
.cid-t2SCedn5R4 .text-wrapper {
  padding: 70px 0;
}
@media (max-width: 991px) {
  .cid-t2SCedn5R4 .text-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .cid-t2SCedn5R4 .text-wrapper {
    padding: 20px 0;
  }
}
.cid-t2SCedn5R4 .row {
  flex-direction: row-reverse;
}
.cid-t2SCedn5R4 .mbr-section-subtitle,
.cid-t2SCedn5R4 .mbr-section-title {
  margin-bottom: 12px;
}
.cid-t2SCedn5R4 .image {
  width: 100%;
}
.cid-t2SCedn5R4 .image img {
  width: 101%;
  border-radius: 4px;
  object-fit: cover;
}
.cid-t2SCedn5R4 .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-t2SCedn5R4 .mbr-section-subtitle {
  color: #ca0017;
}
.cid-t2SCedn5R4 .mbr-section-title {
  color: #232323;
}
.cid-t2SCedn5R4 .mbr-text,
.cid-t2SCedn5R4 .mbr-section-btn {
  color: #232323;
}
.cid-t4neLQB4Fz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fef8f5;
}
.cid-t4neLQB4Fz .wrap:hover .mbr-section-title a {
  color: #ffffff !important;
}
.cid-t4neLQB4Fz .text-wrapper {
  padding: 70px 0;
}
@media (max-width: 991px) {
  .cid-t4neLQB4Fz .text-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .cid-t4neLQB4Fz .text-wrapper {
    padding: 20px 0;
  }
}
.cid-t4neLQB4Fz .mbr-section-subtitle,
.cid-t4neLQB4Fz .mbr-section-title {
  margin-bottom: 12px;
}
.cid-t4neLQB4Fz .image {
  width: 100%;
}
.cid-t4neLQB4Fz .image img {
  width: 101%;
  border-radius: 4px;
  object-fit: cover;
}
.cid-t4neLQB4Fz .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-t4neLQB4Fz .mbr-section-subtitle {
  color: #1a7bc4;
}
.cid-t4neLQB4Fz .mbr-section-title {
  color: #232323;
}
.cid-t4neLQB4Fz .mbr-text,
.cid-t4neLQB4Fz .mbr-section-btn {
  color: #232323;
}
.cid-t4Ks3n0ciT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-t4Ks3n0ciT .mbr-section-title.col-title {
  color: #000000;
}
.cid-t4Ks3n0ciT .colored-text {
  color: #232323 !important;
}
.cid-t4Ks3n0ciT .mbr-section-title {
  color: #ffffff;
}
.cid-t4Ks3n0ciT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t4Ks3n0ciT .mbr-text {
  color: #232323;
}
.cid-t4Ks3n0ciT .mbr-section-title.main-title {
  color: #000000;
}
.cid-t4noKj1oR7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t4noKj1oR7 .map-border {
  border-bottom: 2px solid #191919;
}
.cid-t4noKj1oR7 .google-map iframe {
  height: 500px;
}
.cid-t4noKj1oR7 .map-border {
  padding-bottom: 80px;
}
@media (max-width: 425px) {
  .cid-t4noKj1oR7 .google-map iframe {
    height: 250px;
  }
}
.cid-t4nmk3kUpd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  border-bottom: 1px solid #e9e9e9;
  background-color: #ffffff;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(6, 223, 158, 0.2));
}
.cid-t4nmk3kUpd .mbr-overlay {
  background: #5eeebb;
  background: linear-gradient(to right, #5eeebb, #51aafa);
}
.cid-t4nmk3kUpd .container {
  z-index: 1;
}
.cid-t4nmk3kUpd .mbr-section-title {
  color: #233d63;
  margin-bottom: 25px;
}
.cid-t4nmk3kUpd .mbr-section-subtitle {
  text-align: center;
}
.cid-t4nmk3kUpd .mbr-section-btn {
  margin-top: 35px;
}
.cid-t4nmk3kUpd .mbr-section-btn .btn {
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.1);
}
.cid-t4nmk3kUpd .mbr-section-btn .btn-white:hover {
  background-color: #6f6f6f !important;
  border-color: #6f6f6f !important;
  color: #ffffff !important;
}
.cid-t4nmk3kUpd .mbr-section-title,
.cid-t4nmk3kUpd .mbr-section-btn {
  text-align: center;
}
.cid-t4nmk3kUpd .animation__background .circle {
  display: inline-block;
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 100px solid #ffffff;
  bottom: -165px;
  right: -165px;
}
.cid-t4nmk3kUpd .animation__background .circle2 {
  display: inline-block;
  position: absolute;
  width: 200px;
  height: 250px;
  border-radius: 50%;
  border: 50px solid #ffffff;
  top: -20%;
  left: -80px;
}
.cid-t2WXAlTlYb {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t2WXAlTlYb .card-wrapper {
  position: relative;
  margin: 0.5rem;
}
.cid-t2WXAlTlYb .card-wrapper:hover img {
  transform: scale(1.1);
}
@media (max-width: 1400px) {
  .cid-t2WXAlTlYb .card-wrapper {
    margin: 0rem;
  }
}
.cid-t2WXAlTlYb .card {
  height: fit-content;
}
@media (min-width: 767px) {
  .cid-t2WXAlTlYb .row {
    padding: 0 4rem;
  }
}
.cid-t2WXAlTlYb .icon {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1.5rem;
  transition: 0.3s;
  background: #ffda00;
}
.cid-t2WXAlTlYb .icon:hover {
  padding-right: 1rem;
  padding-left: 2rem;
}
.cid-t2WXAlTlYb .card-box {
  padding: 3rem 3rem 4rem 3rem;
  width: 100%;
}
.cid-t2WXAlTlYb .card1 {
  background-color: #f4f4f4;
}
.cid-t2WXAlTlYb .card2 {
  background-color: #f4f4f4;
}
.cid-t2WXAlTlYb .card3 {
  background-color: #f4f4f4;
}
.cid-t2WXAlTlYb .card4 {
  background-color: #f4f4f4;
}
.cid-t2WXAlTlYb img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
}
.cid-t2WXAlTlYb .img-wrap {
  max-height: 200px;
  overflow: hidden;
}
.cid-t2WXAlTlYb .container {
  max-width: 1500px;
}
.cid-t2WXAlTlYb .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-t2WXAlTlYb .mbr-iconfont {
  font-size: 1.3rem;
  color: #333333;
  display: flex;
  justify-content: center;
}
.cid-t2WXAlTlYb P {
  color: #c1c1c1;
}
@media (max-width: 1200px) {
  .cid-t2WXAlTlYb .img-wrap {
    max-height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-t2WXAlTlYb .card-box {
    margin: 0rem;
    padding: 2rem 2rem 6rem 2rem;
  }
  .cid-t2WXAlTlYb .col2,
  .cid-t2WXAlTlYb .col3,
  .cid-t2WXAlTlYb .col4 {
    margin-top: 0rem;
  }
  .cid-t2WXAlTlYb .img-wrap {
    max-height: 180px;
  }
}
@media (max-width: 767px) {
  .cid-t2WXAlTlYb .card-box {
    padding: 1rem 2rem 5rem 1rem;
  }
  .cid-t2WXAlTlYb .number {
    margin: auto;
  }
}
.cid-t2WXAlTlYb .mbr-text {
  color: #cccccc;
}
.cid-t2WXAlTlYb .text2 {
  color: #333333;
}
.cid-t2WXAlTlYb .text3 {
  color: #333333;
}
.cid-t2WXAlTlYb .title2 {
  color: #282124;
  text-align: center;
}
.cid-t2WXAlTlYb .title1 {
  color: #282124;
}
.cid-t2WXAlTlYb .title3 {
  color: #282124;
}
.cid-t2WXAlTlYb .title4 {
  color: #282124;
}
.cid-t2WXAlTlYb .text4 {
  color: #282124;
}
.cid-t2WXAlTlYb .text1 {
  color: #282124;
}
.cid-t2WXAlTlYb .title3 B {
  color: #c1c1c1;
}
.cid-t2WXAlTlYb H1 {
  color: #333333;
}
.cid-t2SDtXaMnf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t2RdxduIsv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a7bc4;
}
.cid-t2RdxduIsv .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t2RdxduIsv .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-t2RdxduIsv .row {
    text-align: center;
  }
  .cid-t2RdxduIsv .row > div {
    margin: auto;
  }
  .cid-t2RdxduIsv .social-row {
    justify-content: center;
  }
}
.cid-t2RdxduIsv .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-t2RdxduIsv .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-t2RdxduIsv .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t2RdxduIsv .list {
    margin-bottom: 0rem;
  }
}
.cid-t2RdxduIsv .mbr-text {
  color: #ffffff;
}
.cid-t2RdxduIsv .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-t2RdxduIsv .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-t2RdxduIsv div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-t2RdxeicA9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #1a7bc4;
}
.cid-t2RdxeicA9 .mbr-section-title {
  color: #ffffff;
}
.cid-t2RdxeMxuK .navbar-dropdown {
  position: relative !important;
}
.cid-t2RdxeMxuK .navbar-dropdown {
  position: absolute !important;
}
.cid-t2RdxeMxuK .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-t2RdxeMxuK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t2RdxeMxuK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t2RdxeMxuK .dropdown-item:hover,
.cid-t2RdxeMxuK .dropdown-item:focus {
  background: #6f6f6f !important;
  color: white !important;
}
.cid-t2RdxeMxuK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t2RdxeMxuK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t2RdxeMxuK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
  color: #000;
}
.cid-t2RdxeMxuK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t2RdxeMxuK .nav-link {
  position: relative;
}
.cid-t2RdxeMxuK .container {
  display: flex;
  margin: auto;
}
.cid-t2RdxeMxuK .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t2RdxeMxuK .dropdown-menu,
.cid-t2RdxeMxuK .navbar.opened {
  background: #dee3ff !important;
}
.cid-t2RdxeMxuK .nav-item:focus,
.cid-t2RdxeMxuK .nav-link:focus {
  outline: none;
}
.cid-t2RdxeMxuK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t2RdxeMxuK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t2RdxeMxuK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t2RdxeMxuK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t2RdxeMxuK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t2RdxeMxuK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t2RdxeMxuK .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(222, 227, 255, 0);
}
.cid-t2RdxeMxuK .navbar.opened {
  transition: all 0.3s;
}
.cid-t2RdxeMxuK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t2RdxeMxuK .navbar .navbar-logo img {
  width: auto;
}
.cid-t2RdxeMxuK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t2RdxeMxuK .navbar.collapsed {
  justify-content: center;
}
.cid-t2RdxeMxuK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t2RdxeMxuK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t2RdxeMxuK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.7rem);
  }
}
.cid-t2RdxeMxuK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t2RdxeMxuK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t2RdxeMxuK .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-t2RdxeMxuK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t2RdxeMxuK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t2RdxeMxuK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t2RdxeMxuK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t2RdxeMxuK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t2RdxeMxuK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t2RdxeMxuK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t2RdxeMxuK .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-t2RdxeMxuK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t2RdxeMxuK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t2RdxeMxuK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t2RdxeMxuK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t2RdxeMxuK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t2RdxeMxuK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t2RdxeMxuK .navbar.navbar-short {
  min-height: 60px;
}
.cid-t2RdxeMxuK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t2RdxeMxuK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t2RdxeMxuK .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-t2RdxeMxuK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t2RdxeMxuK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t2RdxeMxuK .dropdown-item.active,
.cid-t2RdxeMxuK .dropdown-item:active {
  background-color: transparent;
}
.cid-t2RdxeMxuK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t2RdxeMxuK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t2RdxeMxuK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t2RdxeMxuK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #dee3ff;
}
.cid-t2RdxeMxuK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t2RdxeMxuK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t2RdxeMxuK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t2RdxeMxuK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t2RdxeMxuK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t2RdxeMxuK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t2RdxeMxuK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t2RdxeMxuK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t2RdxeMxuK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t2RdxeMxuK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t2RdxeMxuK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t2RdxeMxuK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t2RdxeMxuK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t2RdxeMxuK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t2RdxeMxuK .navbar-dropdown {
  padding: .7rem 1rem;
}
.cid-t2RdxeMxuK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t2RdxeMxuK .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-t2RdxeMxuK .navbar {
    height: 70px;
  }
  .cid-t2RdxeMxuK .navbar.opened {
    height: auto;
  }
  .cid-t2RdxeMxuK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
