body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sRQT0CvHJe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sRQT0CvHJe nav.navbar {
  position: fixed;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRQT0CvHJe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRQT0CvHJe .dropdown-item:hover,
.cid-sRQT0CvHJe .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRQT0CvHJe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRQT0CvHJe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRQT0CvHJe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRQT0CvHJe .nav-link {
  position: relative;
}
.cid-sRQT0CvHJe .container {
  display: flex;
  margin: auto;
}
.cid-sRQT0CvHJe .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRQT0CvHJe .dropdown-menu,
.cid-sRQT0CvHJe .navbar.opened {
  background: #ffffff !important;
}
.cid-sRQT0CvHJe .nav-item:focus,
.cid-sRQT0CvHJe .nav-link:focus {
  outline: none;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRQT0CvHJe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRQT0CvHJe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRQT0CvHJe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sRQT0CvHJe .navbar.opened {
  transition: all 0.3s;
}
.cid-sRQT0CvHJe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRQT0CvHJe .navbar .navbar-logo img {
  width: auto;
}
.cid-sRQT0CvHJe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRQT0CvHJe .navbar.collapsed {
  justify-content: center;
}
.cid-sRQT0CvHJe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRQT0CvHJe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRQT0CvHJe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRQT0CvHJe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRQT0CvHJe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRQT0CvHJe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRQT0CvHJe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRQT0CvHJe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRQT0CvHJe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRQT0CvHJe .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRQT0CvHJe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRQT0CvHJe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRQT0CvHJe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRQT0CvHJe .dropdown-item.active,
.cid-sRQT0CvHJe .dropdown-item:active {
  background-color: transparent;
}
.cid-sRQT0CvHJe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRQT0CvHJe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sRQT0CvHJe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRQT0CvHJe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRQT0CvHJe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRQT0CvHJe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRQT0CvHJe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sRQT0CvHJe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar {
    height: 70px;
  }
  .cid-sRQT0CvHJe .navbar.opened {
    height: auto;
  }
  .cid-sRQT0CvHJe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRQTiKKsd8 {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-sRQTiKKsd8 .carousel {
  width: 100%;
}
.cid-sRQTiKKsd8 .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-sRQTiKKsd8 .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-sRQTiKKsd8 .carousel-caption {
  bottom: 40px;
}
.cid-sRQTiKKsd8 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sRQTiKKsd8 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sRQTiKKsd8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sRQTiKKsd8 .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sRQTiKKsd8 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sRQTiKKsd8 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sRQTiKKsd8 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sRQTiKKsd8 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sRQTiKKsd8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sRQTiKKsd8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sRQTiKKsd8 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sRQTiKKsd8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sRQTiKKsd8 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sRQTiKKsd8 .carousel-indicators li.active,
.cid-sRQTiKKsd8 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sRQTiKKsd8 .carousel-indicators li::after,
.cid-sRQTiKKsd8 .carousel-indicators li::before {
  content: none;
}
.cid-sRQTiKKsd8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sRQTiKKsd8 .carousel-indicators {
    display: none !important;
  }
}
.cid-sRQTiKKsd8 H5 {
  color: #232323;
}
.cid-thdHj2O2ZM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-thdHj2O2ZM .mbr-fallback-image.disabled {
  display: none;
}
.cid-thdHj2O2ZM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thdHj2O2ZM .col-text {
  position: relative;
  z-index: 10;
}
@media (min-width: 992px) {
  .cid-thdHj2O2ZM .col-text {
    padding-right: 28px;
  }
}
.cid-thdHj2O2ZM .col-img {
  position: relative;
}
@media (min-width: 992px) {
  .cid-thdHj2O2ZM .col-img {
    padding-left: 28px;
  }
}
.cid-thdHj2O2ZM .card-title {
  color: #ffffff;
  margin-top: 1rem;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-thdHj2O2ZM .card-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
  }
}
.cid-thdHj2O2ZM .mbr-text {
  color: #ffffff;
  margin-top: 24px;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-thdHj2O2ZM .mbr-text {
    padding-right: 0;
    margin-top: 1rem;
    text-align: center !important;
  }
}
.cid-thdHj2O2ZM .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .cid-thdHj2O2ZM .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-thdHj2O2ZM .mbr-section-btn {
    width: 100%;
  }
}
.cid-thdHj2O2ZM .image-wrapper {
  display: flex;
  position: relative;
  z-index: 10;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: 510px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-thdHj2O2ZM .image-wrapper {
    height: 360px;
    margin-top: 24px;
  }
}
@media (max-width: 575px) {
  .cid-thdHj2O2ZM .image-wrapper {
    height: auto;
  }
}
.cid-thdHj2O2ZM .image-wrapper img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.cid-tcSXU3YIcO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tcSXU3YIcO .item-img {
  position: relative;
}
.cid-tcSXU3YIcO .tag {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
}
.cid-tcSXU3YIcO .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}
.cid-tcSXU3YIcO .btn-tag:hover,
.cid-tcSXU3YIcO .btn-tag:focus {
  box-shadow: none;
}
.cid-tcSXU3YIcO img,
.cid-tcSXU3YIcO .item-img {
  width: 100%;
  margin-bottom: 1rem;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tcSXU3YIcO .item:focus,
.cid-tcSXU3YIcO span:focus {
  outline: none;
}
.cid-tcSXU3YIcO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tcSXU3YIcO .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-tcSXU3YIcO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tcSXU3YIcO .mbr-section-title {
  color: #232323;
}
.cid-tcSXU3YIcO .mbr-text,
.cid-tcSXU3YIcO .mbr-section-btn {
  color: #353535;
}
.cid-tcSXU3YIcO .item-title {
  color: #353535;
}
.cid-tcSZv9CxoJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tcSZv9CxoJ .item-img {
  position: relative;
}
.cid-tcSZv9CxoJ .tag {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
}
.cid-tcSZv9CxoJ .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}
.cid-tcSZv9CxoJ .btn-tag:hover,
.cid-tcSZv9CxoJ .btn-tag:focus {
  box-shadow: none;
}
.cid-tcSZv9CxoJ img,
.cid-tcSZv9CxoJ .item-img {
  width: 100%;
  margin-bottom: 1rem;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tcSZv9CxoJ .item:focus,
.cid-tcSZv9CxoJ span:focus {
  outline: none;
}
.cid-tcSZv9CxoJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tcSZv9CxoJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-tcSZv9CxoJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tcSZv9CxoJ .mbr-section-title {
  color: #232323;
}
.cid-tcSZv9CxoJ .mbr-text,
.cid-tcSZv9CxoJ .mbr-section-btn {
  color: #353535;
}
.cid-tcSZv9CxoJ .item-title {
  color: #353535;
}
.cid-tcT03KnSqL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tcT03KnSqL .item-img {
  position: relative;
}
.cid-tcT03KnSqL .tag {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
}
.cid-tcT03KnSqL .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}
.cid-tcT03KnSqL .btn-tag:hover,
.cid-tcT03KnSqL .btn-tag:focus {
  box-shadow: none;
}
.cid-tcT03KnSqL img,
.cid-tcT03KnSqL .item-img {
  width: 100%;
  margin-bottom: 1rem;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tcT03KnSqL .item:focus,
.cid-tcT03KnSqL span:focus {
  outline: none;
}
.cid-tcT03KnSqL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tcT03KnSqL .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-tcT03KnSqL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tcT03KnSqL .mbr-section-title {
  color: #232323;
}
.cid-tcT03KnSqL .mbr-text,
.cid-tcT03KnSqL .mbr-section-btn {
  color: #353535;
}
.cid-tcT03KnSqL .item-title {
  color: #353535;
}
.cid-tdfEuGnETU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tdfEuGnETU .mbr-iconfont {
  position: absolute;
  top: 3rem;
  right: 3.5rem;
  color: #ffffff;
  font-size: 4rem;
  z-index: 3;
  opacity: 0;
  transition: all 1s;
}
.cid-tdfEuGnETU .item-wrapper {
  position: relative;
  border-radius: 0px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tdfEuGnETU .item-wrapper:before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #6592e6;
  opacity: 0;
  z-index: 2;
  transition: all 1s;
  pointer-events: none;
}
.cid-tdfEuGnETU .item-wrapper:hover:before {
  opacity: 0.8;
}
.cid-tdfEuGnETU .item-wrapper:hover .item-content {
  opacity: 1;
}
.cid-tdfEuGnETU .item-wrapper:hover .mbr-iconfont {
  opacity: 1;
  transform: translate(10px, -10px);
}
@media (max-width: 992px) {
  .cid-tdfEuGnETU .item-wrapper:before {
    opacity: 0.8 !important;
  }
  .cid-tdfEuGnETU .item-content {
    opacity: 1 !important;
  }
  .cid-tdfEuGnETU .mbr-iconfont {
    opacity: 1;
    transform: translate(10px, -10px);
  }
}
.cid-tdfEuGnETU .item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 1s;
  padding: 1rem 2rem;
  z-index: 3;
  opacity: 0;
}
.cid-tdfEuGnETU .item-subtitle {
  color: #ffffff;
}
.cid-tdfEuGnETU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tdfEuGnETU .item:hover img {
  transform: scale(1.05);
}
.cid-tdfEuGnETU .item-img {
  overflow: hidden;
}
.cid-tdfEuGnETU img,
.cid-tdfEuGnETU .item-img {
  width: 100%;
  transition: all 1s;
  height: 600px;
  object-fit: cover;
}
.cid-tdfEuGnETU h5 {
  margin: 0;
}
.cid-tdfEuGnETU .item:focus,
.cid-tdfEuGnETU span:focus {
  outline: none;
}
.cid-tdfEuGnETU .mbr-section-title {
  color: #232323;
}
.cid-tdfEuGnETU .item-title {
  color: #ffffff;
}
.cid-tdfHqeIHrI {
  padding-top: 60px;
  padding-bottom: 75px;
  background: #ffffff;
}
.cid-tdfHqeIHrI .mbr-section-subtitle {
  color: #cccccc;
}
.cid-tdfHqeIHrI h2 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 2rem;
  letter-spacing: 4px;
}
.cid-tdfHqeIHrI h2:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-tdfHqeIHrI h2:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-tdfHqeIHrI .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #767676;
  margin: 15px 0.5rem;
  display: block;
}
.cid-tdfHqeIHrI .mbr-iconfont-social:before {
  padding: 0.6rem;
  border: 2px solid;
  border-radius: 100px;
  transition: all 0.3s;
}
.cid-tdfHqeIHrI .mbr-iconfont-social:hover {
  color: #ffffff;
}
.cid-tdfHqeIHrI .mbr-iconfont-social:hover:before {
  background: #767676;
  transition: all 0.3s;
  border-color: transparent;
}
.cid-tdfHqeIHrI .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tdfHqeIHrI .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-tdfHqeIHrI .mbr-iconfont-social {
    margin-left: 0.2rem;
    margin-right: 0.2rem;
  }
}
.cid-tdfHqeIHrI .mbr-section-title,
.cid-tdfHqeIHrI .social-list {
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tdfHqeIHrI h2:before,
  .cid-tdfHqeIHrI h2:after {
    display: none;
  }
}
.cid-tdfH7FtPeL {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tdfH7FtPeL .content {
    text-align: center;
  }
  .cid-tdfH7FtPeL .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tdfH7FtPeL .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tdfH7FtPeL .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tdfH7FtPeL .media-wrap img {
  height: 6rem;
}
.cid-tdfH7FtPeL .mbr-text {
  color: #8d97ad;
}
.cid-tdfH7FtPeL .p-title {
  font-size: 17px;
}
.cid-tdfH7FtPeL .p-title span {
  color: #111111;
}
.cid-tdfH7FtPeL .title-card {
  font-size: 1.3rem;
}
.cid-tdfH7FtPeL .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tdfH7FtPeL .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tdfH7FtPeL .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tdfH7FtPeL .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tdfH7FtPeL .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tdfH7FtPeL .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tdfH7FtPeL .copyright img {
  margin-right: 10px;
}
.cid-tdfH7FtPeL .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tdfH7FtPeL .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tdfH7FtPeL .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tdfH7FtPeL .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tdfH7FtPeL .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tdfH7FtPeL SPAN {
  color: #000000;
}
.cid-sRQT0CvHJe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sRQT0CvHJe nav.navbar {
  position: fixed;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRQT0CvHJe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRQT0CvHJe .dropdown-item:hover,
.cid-sRQT0CvHJe .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRQT0CvHJe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRQT0CvHJe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRQT0CvHJe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRQT0CvHJe .nav-link {
  position: relative;
}
.cid-sRQT0CvHJe .container {
  display: flex;
  margin: auto;
}
.cid-sRQT0CvHJe .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRQT0CvHJe .dropdown-menu,
.cid-sRQT0CvHJe .navbar.opened {
  background: #ffffff !important;
}
.cid-sRQT0CvHJe .nav-item:focus,
.cid-sRQT0CvHJe .nav-link:focus {
  outline: none;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRQT0CvHJe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRQT0CvHJe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRQT0CvHJe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sRQT0CvHJe .navbar.opened {
  transition: all 0.3s;
}
.cid-sRQT0CvHJe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRQT0CvHJe .navbar .navbar-logo img {
  width: auto;
}
.cid-sRQT0CvHJe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRQT0CvHJe .navbar.collapsed {
  justify-content: center;
}
.cid-sRQT0CvHJe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRQT0CvHJe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRQT0CvHJe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRQT0CvHJe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRQT0CvHJe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRQT0CvHJe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRQT0CvHJe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRQT0CvHJe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRQT0CvHJe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRQT0CvHJe .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRQT0CvHJe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRQT0CvHJe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRQT0CvHJe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRQT0CvHJe .dropdown-item.active,
.cid-sRQT0CvHJe .dropdown-item:active {
  background-color: transparent;
}
.cid-sRQT0CvHJe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRQT0CvHJe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sRQT0CvHJe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRQT0CvHJe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRQT0CvHJe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRQT0CvHJe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRQT0CvHJe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sRQT0CvHJe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar {
    height: 70px;
  }
  .cid-sRQT0CvHJe .navbar.opened {
    height: auto;
  }
  .cid-sRQT0CvHJe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sTVMW4XQip {
  background-color: #ffffff;
}
.cid-sTVMW4XQip .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sTVMW4XQip .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sTVMW4XQip .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sTVMW4XQip .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sTVMW4XQip .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tNKUCPDe0X {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tNKUCPDe0X .content {
    text-align: center;
  }
  .cid-tNKUCPDe0X .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tNKUCPDe0X .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tNKUCPDe0X .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tNKUCPDe0X .media-wrap img {
  height: 6rem;
}
.cid-tNKUCPDe0X .mbr-text {
  color: #8d97ad;
}
.cid-tNKUCPDe0X .p-title {
  font-size: 17px;
}
.cid-tNKUCPDe0X .p-title span {
  color: #111111;
}
.cid-tNKUCPDe0X .title-card {
  font-size: 1.3rem;
}
.cid-tNKUCPDe0X .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tNKUCPDe0X .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tNKUCPDe0X .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tNKUCPDe0X .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tNKUCPDe0X .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tNKUCPDe0X .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tNKUCPDe0X .copyright img {
  margin-right: 10px;
}
.cid-tNKUCPDe0X .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tNKUCPDe0X .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tNKUCPDe0X .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tNKUCPDe0X .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tNKUCPDe0X .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tNKUCPDe0X SPAN {
  color: #000000;
}
.cid-sRQT0CvHJe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sRQT0CvHJe nav.navbar {
  position: fixed;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRQT0CvHJe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRQT0CvHJe .dropdown-item:hover,
.cid-sRQT0CvHJe .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRQT0CvHJe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRQT0CvHJe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRQT0CvHJe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRQT0CvHJe .nav-link {
  position: relative;
}
.cid-sRQT0CvHJe .container {
  display: flex;
  margin: auto;
}
.cid-sRQT0CvHJe .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRQT0CvHJe .dropdown-menu,
.cid-sRQT0CvHJe .navbar.opened {
  background: #ffffff !important;
}
.cid-sRQT0CvHJe .nav-item:focus,
.cid-sRQT0CvHJe .nav-link:focus {
  outline: none;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRQT0CvHJe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRQT0CvHJe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRQT0CvHJe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sRQT0CvHJe .navbar.opened {
  transition: all 0.3s;
}
.cid-sRQT0CvHJe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRQT0CvHJe .navbar .navbar-logo img {
  width: auto;
}
.cid-sRQT0CvHJe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRQT0CvHJe .navbar.collapsed {
  justify-content: center;
}
.cid-sRQT0CvHJe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRQT0CvHJe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRQT0CvHJe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRQT0CvHJe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRQT0CvHJe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRQT0CvHJe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRQT0CvHJe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRQT0CvHJe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRQT0CvHJe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRQT0CvHJe .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRQT0CvHJe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRQT0CvHJe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRQT0CvHJe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRQT0CvHJe .dropdown-item.active,
.cid-sRQT0CvHJe .dropdown-item:active {
  background-color: transparent;
}
.cid-sRQT0CvHJe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRQT0CvHJe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sRQT0CvHJe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRQT0CvHJe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRQT0CvHJe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRQT0CvHJe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRQT0CvHJe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sRQT0CvHJe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar {
    height: 70px;
  }
  .cid-sRQT0CvHJe .navbar.opened {
    height: auto;
  }
  .cid-sRQT0CvHJe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sTVN99l1e9 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sTVN99l1e9 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sTVN99l1e9 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sTVN99l1e9 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sTVN99l1e9 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sTVN99l1e9 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTVN99l1e9 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sTVN99l1e9 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sTVN99l1e9 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sXegFaORKw {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #4479d9;
}
.cid-sXegFaORKw .mbr-text,
.cid-sXegFaORKw .mbr-section-btn {
  color: #232323;
}
.cid-sXegFaORKw .card-title,
.cid-sXegFaORKw .card-box {
  color: #ffffff;
}
.cid-sXegFaORKw .mbr-text,
.cid-sXegFaORKw .link-wrap {
  color: #ffffff;
}
.cid-sTVNKfAJ6T {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sTVNKfAJ6T img {
  border-radius: 0px;
  padding-top: 32px;
}
.cid-sTVNKfAJ6T .features-image:nth-child(-n+4) img {
  padding-top: 0px;
}
.cid-sTVNKfAJ6T .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sTVNKfAJ6T .date {
  text-transform: uppercase;
  color: #6592e6;
  text-align: left;
  padding-top: 1rem;
}
.cid-sTVNKfAJ6T .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sTVNKfAJ6T .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
@media (max-width: 690px) {
  .cid-sTVNKfAJ6T img {
    padding-top: 1rem;
  }
}
.cid-tNKUG0gjMi {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tNKUG0gjMi .content {
    text-align: center;
  }
  .cid-tNKUG0gjMi .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tNKUG0gjMi .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tNKUG0gjMi .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tNKUG0gjMi .media-wrap img {
  height: 6rem;
}
.cid-tNKUG0gjMi .mbr-text {
  color: #8d97ad;
}
.cid-tNKUG0gjMi .p-title {
  font-size: 17px;
}
.cid-tNKUG0gjMi .p-title span {
  color: #111111;
}
.cid-tNKUG0gjMi .title-card {
  font-size: 1.3rem;
}
.cid-tNKUG0gjMi .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tNKUG0gjMi .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tNKUG0gjMi .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tNKUG0gjMi .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tNKUG0gjMi .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tNKUG0gjMi .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tNKUG0gjMi .copyright img {
  margin-right: 10px;
}
.cid-tNKUG0gjMi .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tNKUG0gjMi .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tNKUG0gjMi .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tNKUG0gjMi .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tNKUG0gjMi .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tNKUG0gjMi SPAN {
  color: #000000;
}
.cid-tcMqk05RfA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcMqk05RfA nav.navbar {
  position: fixed;
}
.cid-tcMqk05RfA .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-tcMqk05RfA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tcMqk05RfA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcMqk05RfA .dropdown-item:hover,
.cid-tcMqk05RfA .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tcMqk05RfA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tcMqk05RfA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tcMqk05RfA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tcMqk05RfA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcMqk05RfA .nav-link {
  position: relative;
}
.cid-tcMqk05RfA .container {
  display: flex;
  margin: auto;
}
.cid-tcMqk05RfA .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcMqk05RfA .dropdown-menu,
.cid-tcMqk05RfA .navbar.opened {
  background: #ffffff !important;
}
.cid-tcMqk05RfA .nav-item:focus,
.cid-tcMqk05RfA .nav-link:focus {
  outline: none;
}
.cid-tcMqk05RfA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcMqk05RfA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcMqk05RfA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcMqk05RfA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcMqk05RfA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcMqk05RfA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcMqk05RfA .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcMqk05RfA .navbar.opened {
  transition: all 0.3s;
}
.cid-tcMqk05RfA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcMqk05RfA .navbar .navbar-logo img {
  width: auto;
}
.cid-tcMqk05RfA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcMqk05RfA .navbar.collapsed {
  justify-content: center;
}
.cid-tcMqk05RfA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcMqk05RfA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tcMqk05RfA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcMqk05RfA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcMqk05RfA .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-tcMqk05RfA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcMqk05RfA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcMqk05RfA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcMqk05RfA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcMqk05RfA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcMqk05RfA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcMqk05RfA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcMqk05RfA .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-tcMqk05RfA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcMqk05RfA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcMqk05RfA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcMqk05RfA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcMqk05RfA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcMqk05RfA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcMqk05RfA .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcMqk05RfA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcMqk05RfA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tcMqk05RfA .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-tcMqk05RfA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcMqk05RfA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcMqk05RfA .dropdown-item.active,
.cid-tcMqk05RfA .dropdown-item:active {
  background-color: transparent;
}
.cid-tcMqk05RfA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcMqk05RfA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcMqk05RfA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcMqk05RfA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcMqk05RfA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcMqk05RfA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcMqk05RfA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcMqk05RfA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcMqk05RfA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tcMqk05RfA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-tcMqk05RfA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcMqk05RfA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcMqk05RfA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcMqk05RfA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tcMqk05RfA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcMqk05RfA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tcMqk05RfA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tcMqk05RfA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcMqk05RfA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tcMqk05RfA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcMqk05RfA .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-tcMqk05RfA .navbar {
    height: 70px;
  }
  .cid-tcMqk05RfA .navbar.opened {
    height: auto;
  }
  .cid-tcMqk05RfA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcMqk0LyVx {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tcMqk0LyVx .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tcMqk0LyVx .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tcMqk0LyVx .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tcMqk0LyVx .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tcMqk0LyVx .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcMqk0LyVx .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tcMqk0LyVx .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tcMqk0LyVx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tcMqk1n7Zo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #4479d9;
}
.cid-tcMqk1n7Zo .mbr-text,
.cid-tcMqk1n7Zo .mbr-section-btn {
  color: #232323;
}
.cid-tcMqk1n7Zo .card-title,
.cid-tcMqk1n7Zo .card-box {
  color: #ffffff;
}
.cid-tcMqk1n7Zo .mbr-text,
.cid-tcMqk1n7Zo .link-wrap {
  color: #ffffff;
}
.cid-tcMqk1NnEW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tcMqk1NnEW img {
  border-radius: 0px;
  padding-top: 32px;
}
.cid-tcMqk1NnEW .features-image:nth-child(-n+4) img {
  padding-top: 0px;
}
.cid-tcMqk1NnEW .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-tcMqk1NnEW .date {
  text-transform: uppercase;
  color: #6592e6;
  text-align: left;
  padding-top: 1rem;
}
.cid-tcMqk1NnEW .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-tcMqk1NnEW .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
@media (max-width: 690px) {
  .cid-tcMqk1NnEW img {
    padding-top: 1rem;
  }
}
.cid-tNKUJy9hpU {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tNKUJy9hpU .content {
    text-align: center;
  }
  .cid-tNKUJy9hpU .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tNKUJy9hpU .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tNKUJy9hpU .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tNKUJy9hpU .media-wrap img {
  height: 6rem;
}
.cid-tNKUJy9hpU .mbr-text {
  color: #8d97ad;
}
.cid-tNKUJy9hpU .p-title {
  font-size: 17px;
}
.cid-tNKUJy9hpU .p-title span {
  color: #111111;
}
.cid-tNKUJy9hpU .title-card {
  font-size: 1.3rem;
}
.cid-tNKUJy9hpU .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tNKUJy9hpU .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tNKUJy9hpU .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tNKUJy9hpU .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tNKUJy9hpU .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tNKUJy9hpU .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tNKUJy9hpU .copyright img {
  margin-right: 10px;
}
.cid-tNKUJy9hpU .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tNKUJy9hpU .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tNKUJy9hpU .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tNKUJy9hpU .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tNKUJy9hpU .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tNKUJy9hpU SPAN {
  color: #000000;
}
.cid-sRQT0CvHJe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sRQT0CvHJe nav.navbar {
  position: fixed;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRQT0CvHJe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRQT0CvHJe .dropdown-item:hover,
.cid-sRQT0CvHJe .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRQT0CvHJe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRQT0CvHJe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRQT0CvHJe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRQT0CvHJe .nav-link {
  position: relative;
}
.cid-sRQT0CvHJe .container {
  display: flex;
  margin: auto;
}
.cid-sRQT0CvHJe .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRQT0CvHJe .dropdown-menu,
.cid-sRQT0CvHJe .navbar.opened {
  background: #ffffff !important;
}
.cid-sRQT0CvHJe .nav-item:focus,
.cid-sRQT0CvHJe .nav-link:focus {
  outline: none;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRQT0CvHJe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRQT0CvHJe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRQT0CvHJe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sRQT0CvHJe .navbar.opened {
  transition: all 0.3s;
}
.cid-sRQT0CvHJe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRQT0CvHJe .navbar .navbar-logo img {
  width: auto;
}
.cid-sRQT0CvHJe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRQT0CvHJe .navbar.collapsed {
  justify-content: center;
}
.cid-sRQT0CvHJe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRQT0CvHJe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRQT0CvHJe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRQT0CvHJe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRQT0CvHJe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRQT0CvHJe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRQT0CvHJe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRQT0CvHJe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRQT0CvHJe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRQT0CvHJe .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRQT0CvHJe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRQT0CvHJe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRQT0CvHJe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRQT0CvHJe .dropdown-item.active,
.cid-sRQT0CvHJe .dropdown-item:active {
  background-color: transparent;
}
.cid-sRQT0CvHJe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRQT0CvHJe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sRQT0CvHJe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRQT0CvHJe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRQT0CvHJe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRQT0CvHJe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRQT0CvHJe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sRQT0CvHJe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar {
    height: 70px;
  }
  .cid-sRQT0CvHJe .navbar.opened {
    height: auto;
  }
  .cid-sRQT0CvHJe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sTVO36pNvG {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sTVO36pNvG .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sTVO36pNvG .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sTVO36pNvG .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sTVO36pNvG .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sTVO36pNvG .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTVO36pNvG .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sTVO36pNvG .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sTVO36pNvG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tcMtd0hQcs {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #4479d9;
}
.cid-tcMtd0hQcs .mbr-text,
.cid-tcMtd0hQcs .mbr-section-btn {
  color: #232323;
}
.cid-tcMtd0hQcs .card-title,
.cid-tcMtd0hQcs .card-box {
  color: #ffffff;
}
.cid-tcMtd0hQcs .mbr-text,
.cid-tcMtd0hQcs .link-wrap {
  color: #ffffff;
}
.cid-sWKFvS0LqG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sWKFvS0LqG img {
  border-radius: 0px;
  padding-top: 32px;
}
.cid-sWKFvS0LqG .features-image:nth-child(-n+4) img {
  padding-top: 0px;
}
.cid-sWKFvS0LqG .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sWKFvS0LqG .date {
  text-transform: uppercase;
  color: #6592e6;
  text-align: left;
  padding-top: 1rem;
}
.cid-sWKFvS0LqG .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sWKFvS0LqG .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
@media (max-width: 690px) {
  .cid-sWKFvS0LqG img {
    padding-top: 1rem;
  }
}
.cid-tNKUMycaiV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tNKUMycaiV .content {
    text-align: center;
  }
  .cid-tNKUMycaiV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tNKUMycaiV .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tNKUMycaiV .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tNKUMycaiV .media-wrap img {
  height: 6rem;
}
.cid-tNKUMycaiV .mbr-text {
  color: #8d97ad;
}
.cid-tNKUMycaiV .p-title {
  font-size: 17px;
}
.cid-tNKUMycaiV .p-title span {
  color: #111111;
}
.cid-tNKUMycaiV .title-card {
  font-size: 1.3rem;
}
.cid-tNKUMycaiV .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tNKUMycaiV .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tNKUMycaiV .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tNKUMycaiV .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tNKUMycaiV .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tNKUMycaiV .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tNKUMycaiV .copyright img {
  margin-right: 10px;
}
.cid-tNKUMycaiV .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tNKUMycaiV .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tNKUMycaiV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tNKUMycaiV .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tNKUMycaiV .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tNKUMycaiV SPAN {
  color: #000000;
}
.cid-tcMtmDjjlm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcMtmDjjlm nav.navbar {
  position: fixed;
}
.cid-tcMtmDjjlm .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-tcMtmDjjlm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tcMtmDjjlm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcMtmDjjlm .dropdown-item:hover,
.cid-tcMtmDjjlm .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tcMtmDjjlm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tcMtmDjjlm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tcMtmDjjlm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tcMtmDjjlm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcMtmDjjlm .nav-link {
  position: relative;
}
.cid-tcMtmDjjlm .container {
  display: flex;
  margin: auto;
}
.cid-tcMtmDjjlm .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcMtmDjjlm .dropdown-menu,
.cid-tcMtmDjjlm .navbar.opened {
  background: #ffffff !important;
}
.cid-tcMtmDjjlm .nav-item:focus,
.cid-tcMtmDjjlm .nav-link:focus {
  outline: none;
}
.cid-tcMtmDjjlm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcMtmDjjlm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcMtmDjjlm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcMtmDjjlm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcMtmDjjlm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcMtmDjjlm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcMtmDjjlm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcMtmDjjlm .navbar.opened {
  transition: all 0.3s;
}
.cid-tcMtmDjjlm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcMtmDjjlm .navbar .navbar-logo img {
  width: auto;
}
.cid-tcMtmDjjlm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcMtmDjjlm .navbar.collapsed {
  justify-content: center;
}
.cid-tcMtmDjjlm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcMtmDjjlm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tcMtmDjjlm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcMtmDjjlm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcMtmDjjlm .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-tcMtmDjjlm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcMtmDjjlm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcMtmDjjlm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcMtmDjjlm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcMtmDjjlm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcMtmDjjlm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcMtmDjjlm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcMtmDjjlm .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-tcMtmDjjlm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcMtmDjjlm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcMtmDjjlm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcMtmDjjlm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcMtmDjjlm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcMtmDjjlm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcMtmDjjlm .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcMtmDjjlm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcMtmDjjlm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tcMtmDjjlm .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-tcMtmDjjlm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcMtmDjjlm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcMtmDjjlm .dropdown-item.active,
.cid-tcMtmDjjlm .dropdown-item:active {
  background-color: transparent;
}
.cid-tcMtmDjjlm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcMtmDjjlm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcMtmDjjlm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcMtmDjjlm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcMtmDjjlm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcMtmDjjlm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcMtmDjjlm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcMtmDjjlm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcMtmDjjlm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tcMtmDjjlm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-tcMtmDjjlm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcMtmDjjlm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcMtmDjjlm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcMtmDjjlm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tcMtmDjjlm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcMtmDjjlm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tcMtmDjjlm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tcMtmDjjlm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcMtmDjjlm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tcMtmDjjlm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcMtmDjjlm .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-tcMtmDjjlm .navbar {
    height: 70px;
  }
  .cid-tcMtmDjjlm .navbar.opened {
    height: auto;
  }
  .cid-tcMtmDjjlm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcMtmFtVuH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tcMtmFtVuH .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tcMtmFtVuH .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tcMtmFtVuH .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tcMtmFtVuH .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tcMtmFtVuH .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcMtmFtVuH .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tcMtmFtVuH .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tcMtmFtVuH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tcMtmFYHRd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #4479d9;
}
.cid-tcMtmFYHRd .mbr-text,
.cid-tcMtmFYHRd .mbr-section-btn {
  color: #232323;
}
.cid-tcMtmFYHRd .card-title,
.cid-tcMtmFYHRd .card-box {
  color: #ffffff;
}
.cid-tcMtmFYHRd .mbr-text,
.cid-tcMtmFYHRd .link-wrap {
  color: #ffffff;
}
.cid-tNKUPbH12u {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tNKUPbH12u .content {
    text-align: center;
  }
  .cid-tNKUPbH12u .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tNKUPbH12u .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tNKUPbH12u .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tNKUPbH12u .media-wrap img {
  height: 6rem;
}
.cid-tNKUPbH12u .mbr-text {
  color: #8d97ad;
}
.cid-tNKUPbH12u .p-title {
  font-size: 17px;
}
.cid-tNKUPbH12u .p-title span {
  color: #111111;
}
.cid-tNKUPbH12u .title-card {
  font-size: 1.3rem;
}
.cid-tNKUPbH12u .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tNKUPbH12u .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tNKUPbH12u .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tNKUPbH12u .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tNKUPbH12u .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tNKUPbH12u .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tNKUPbH12u .copyright img {
  margin-right: 10px;
}
.cid-tNKUPbH12u .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tNKUPbH12u .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tNKUPbH12u .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tNKUPbH12u .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tNKUPbH12u .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tNKUPbH12u SPAN {
  color: #000000;
}
.cid-tcMttJSnZS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcMttJSnZS nav.navbar {
  position: fixed;
}
.cid-tcMttJSnZS .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-tcMttJSnZS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tcMttJSnZS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcMttJSnZS .dropdown-item:hover,
.cid-tcMttJSnZS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tcMttJSnZS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tcMttJSnZS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tcMttJSnZS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tcMttJSnZS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcMttJSnZS .nav-link {
  position: relative;
}
.cid-tcMttJSnZS .container {
  display: flex;
  margin: auto;
}
.cid-tcMttJSnZS .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcMttJSnZS .dropdown-menu,
.cid-tcMttJSnZS .navbar.opened {
  background: #ffffff !important;
}
.cid-tcMttJSnZS .nav-item:focus,
.cid-tcMttJSnZS .nav-link:focus {
  outline: none;
}
.cid-tcMttJSnZS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcMttJSnZS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcMttJSnZS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcMttJSnZS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcMttJSnZS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcMttJSnZS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcMttJSnZS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcMttJSnZS .navbar.opened {
  transition: all 0.3s;
}
.cid-tcMttJSnZS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcMttJSnZS .navbar .navbar-logo img {
  width: auto;
}
.cid-tcMttJSnZS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcMttJSnZS .navbar.collapsed {
  justify-content: center;
}
.cid-tcMttJSnZS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcMttJSnZS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tcMttJSnZS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcMttJSnZS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcMttJSnZS .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-tcMttJSnZS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcMttJSnZS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcMttJSnZS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcMttJSnZS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcMttJSnZS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcMttJSnZS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcMttJSnZS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcMttJSnZS .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-tcMttJSnZS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcMttJSnZS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcMttJSnZS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcMttJSnZS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcMttJSnZS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcMttJSnZS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcMttJSnZS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcMttJSnZS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcMttJSnZS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tcMttJSnZS .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-tcMttJSnZS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcMttJSnZS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcMttJSnZS .dropdown-item.active,
.cid-tcMttJSnZS .dropdown-item:active {
  background-color: transparent;
}
.cid-tcMttJSnZS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcMttJSnZS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcMttJSnZS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcMttJSnZS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcMttJSnZS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcMttJSnZS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcMttJSnZS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcMttJSnZS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcMttJSnZS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tcMttJSnZS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-tcMttJSnZS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcMttJSnZS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcMttJSnZS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcMttJSnZS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tcMttJSnZS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcMttJSnZS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tcMttJSnZS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tcMttJSnZS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcMttJSnZS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tcMttJSnZS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcMttJSnZS .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-tcMttJSnZS .navbar {
    height: 70px;
  }
  .cid-tcMttJSnZS .navbar.opened {
    height: auto;
  }
  .cid-tcMttJSnZS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcMttKUevY {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tcMttKUevY .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tcMttKUevY .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tcMttKUevY .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tcMttKUevY .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tcMttKUevY .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcMttKUevY .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tcMttKUevY .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tcMttKUevY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tcMttLLgNM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #4479d9;
}
.cid-tcMttLLgNM .mbr-text,
.cid-tcMttLLgNM .mbr-section-btn {
  color: #232323;
}
.cid-tcMttLLgNM .card-title,
.cid-tcMttLLgNM .card-box {
  color: #ffffff;
}
.cid-tcMttLLgNM .mbr-text,
.cid-tcMttLLgNM .link-wrap {
  color: #ffffff;
}
.cid-tcMttMn8vt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tcMttMn8vt img {
  border-radius: 0px;
  padding-top: 32px;
}
.cid-tcMttMn8vt .features-image:nth-child(-n+4) img {
  padding-top: 0px;
}
.cid-tcMttMn8vt .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-tcMttMn8vt .date {
  text-transform: uppercase;
  color: #6592e6;
  text-align: left;
  padding-top: 1rem;
}
.cid-tcMttMn8vt .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-tcMttMn8vt .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
@media (max-width: 690px) {
  .cid-tcMttMn8vt img {
    padding-top: 1rem;
  }
}
.cid-tNKURXNIxV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tNKURXNIxV .content {
    text-align: center;
  }
  .cid-tNKURXNIxV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tNKURXNIxV .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tNKURXNIxV .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tNKURXNIxV .media-wrap img {
  height: 6rem;
}
.cid-tNKURXNIxV .mbr-text {
  color: #8d97ad;
}
.cid-tNKURXNIxV .p-title {
  font-size: 17px;
}
.cid-tNKURXNIxV .p-title span {
  color: #111111;
}
.cid-tNKURXNIxV .title-card {
  font-size: 1.3rem;
}
.cid-tNKURXNIxV .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tNKURXNIxV .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tNKURXNIxV .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tNKURXNIxV .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tNKURXNIxV .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tNKURXNIxV .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tNKURXNIxV .copyright img {
  margin-right: 10px;
}
.cid-tNKURXNIxV .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tNKURXNIxV .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tNKURXNIxV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tNKURXNIxV .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tNKURXNIxV .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tNKURXNIxV SPAN {
  color: #000000;
}
.cid-tcMtC9ARqg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcMtC9ARqg nav.navbar {
  position: fixed;
}
.cid-tcMtC9ARqg .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-tcMtC9ARqg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tcMtC9ARqg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcMtC9ARqg .dropdown-item:hover,
.cid-tcMtC9ARqg .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tcMtC9ARqg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tcMtC9ARqg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tcMtC9ARqg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tcMtC9ARqg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcMtC9ARqg .nav-link {
  position: relative;
}
.cid-tcMtC9ARqg .container {
  display: flex;
  margin: auto;
}
.cid-tcMtC9ARqg .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcMtC9ARqg .dropdown-menu,
.cid-tcMtC9ARqg .navbar.opened {
  background: #ffffff !important;
}
.cid-tcMtC9ARqg .nav-item:focus,
.cid-tcMtC9ARqg .nav-link:focus {
  outline: none;
}
.cid-tcMtC9ARqg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcMtC9ARqg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcMtC9ARqg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcMtC9ARqg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcMtC9ARqg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcMtC9ARqg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcMtC9ARqg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcMtC9ARqg .navbar.opened {
  transition: all 0.3s;
}
.cid-tcMtC9ARqg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcMtC9ARqg .navbar .navbar-logo img {
  width: auto;
}
.cid-tcMtC9ARqg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcMtC9ARqg .navbar.collapsed {
  justify-content: center;
}
.cid-tcMtC9ARqg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcMtC9ARqg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tcMtC9ARqg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcMtC9ARqg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcMtC9ARqg .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-tcMtC9ARqg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcMtC9ARqg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcMtC9ARqg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcMtC9ARqg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcMtC9ARqg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcMtC9ARqg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcMtC9ARqg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcMtC9ARqg .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-tcMtC9ARqg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcMtC9ARqg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcMtC9ARqg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcMtC9ARqg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcMtC9ARqg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcMtC9ARqg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcMtC9ARqg .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcMtC9ARqg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcMtC9ARqg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tcMtC9ARqg .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-tcMtC9ARqg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcMtC9ARqg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcMtC9ARqg .dropdown-item.active,
.cid-tcMtC9ARqg .dropdown-item:active {
  background-color: transparent;
}
.cid-tcMtC9ARqg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcMtC9ARqg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcMtC9ARqg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcMtC9ARqg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcMtC9ARqg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcMtC9ARqg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcMtC9ARqg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcMtC9ARqg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcMtC9ARqg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tcMtC9ARqg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-tcMtC9ARqg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcMtC9ARqg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcMtC9ARqg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcMtC9ARqg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tcMtC9ARqg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcMtC9ARqg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tcMtC9ARqg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tcMtC9ARqg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcMtC9ARqg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tcMtC9ARqg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcMtC9ARqg .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-tcMtC9ARqg .navbar {
    height: 70px;
  }
  .cid-tcMtC9ARqg .navbar.opened {
    height: auto;
  }
  .cid-tcMtC9ARqg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcMtCapKjT {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tcMtCapKjT .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tcMtCapKjT .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tcMtCapKjT .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tcMtCapKjT .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tcMtCapKjT .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcMtCapKjT .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tcMtCapKjT .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tcMtCapKjT .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tcMtCb36m2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #4479d9;
}
.cid-tcMtCb36m2 .mbr-text,
.cid-tcMtCb36m2 .mbr-section-btn {
  color: #232323;
}
.cid-tcMtCb36m2 .card-title,
.cid-tcMtCb36m2 .card-box {
  color: #ffffff;
}
.cid-tcMtCb36m2 .mbr-text,
.cid-tcMtCb36m2 .link-wrap {
  color: #ffffff;
}
.cid-tcMtCbop2U {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tcMtCbop2U img {
  border-radius: 0px;
  padding-top: 32px;
}
.cid-tcMtCbop2U .features-image:nth-child(-n+4) img {
  padding-top: 0px;
}
.cid-tcMtCbop2U .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-tcMtCbop2U .date {
  text-transform: uppercase;
  color: #6592e6;
  text-align: left;
  padding-top: 1rem;
}
.cid-tcMtCbop2U .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-tcMtCbop2U .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
@media (max-width: 690px) {
  .cid-tcMtCbop2U img {
    padding-top: 1rem;
  }
}
.cid-tNKUUGImLP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tNKUUGImLP .content {
    text-align: center;
  }
  .cid-tNKUUGImLP .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tNKUUGImLP .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tNKUUGImLP .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tNKUUGImLP .media-wrap img {
  height: 6rem;
}
.cid-tNKUUGImLP .mbr-text {
  color: #8d97ad;
}
.cid-tNKUUGImLP .p-title {
  font-size: 17px;
}
.cid-tNKUUGImLP .p-title span {
  color: #111111;
}
.cid-tNKUUGImLP .title-card {
  font-size: 1.3rem;
}
.cid-tNKUUGImLP .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tNKUUGImLP .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tNKUUGImLP .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tNKUUGImLP .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tNKUUGImLP .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tNKUUGImLP .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tNKUUGImLP .copyright img {
  margin-right: 10px;
}
.cid-tNKUUGImLP .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tNKUUGImLP .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tNKUUGImLP .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tNKUUGImLP .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tNKUUGImLP .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tNKUUGImLP SPAN {
  color: #000000;
}
.cid-tcMtM6jyfe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcMtM6jyfe nav.navbar {
  position: fixed;
}
.cid-tcMtM6jyfe .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-tcMtM6jyfe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tcMtM6jyfe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcMtM6jyfe .dropdown-item:hover,
.cid-tcMtM6jyfe .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tcMtM6jyfe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tcMtM6jyfe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tcMtM6jyfe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tcMtM6jyfe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcMtM6jyfe .nav-link {
  position: relative;
}
.cid-tcMtM6jyfe .container {
  display: flex;
  margin: auto;
}
.cid-tcMtM6jyfe .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcMtM6jyfe .dropdown-menu,
.cid-tcMtM6jyfe .navbar.opened {
  background: #ffffff !important;
}
.cid-tcMtM6jyfe .nav-item:focus,
.cid-tcMtM6jyfe .nav-link:focus {
  outline: none;
}
.cid-tcMtM6jyfe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcMtM6jyfe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcMtM6jyfe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcMtM6jyfe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcMtM6jyfe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcMtM6jyfe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcMtM6jyfe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcMtM6jyfe .navbar.opened {
  transition: all 0.3s;
}
.cid-tcMtM6jyfe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcMtM6jyfe .navbar .navbar-logo img {
  width: auto;
}
.cid-tcMtM6jyfe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcMtM6jyfe .navbar.collapsed {
  justify-content: center;
}
.cid-tcMtM6jyfe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcMtM6jyfe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tcMtM6jyfe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcMtM6jyfe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcMtM6jyfe .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-tcMtM6jyfe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcMtM6jyfe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcMtM6jyfe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcMtM6jyfe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcMtM6jyfe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcMtM6jyfe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcMtM6jyfe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcMtM6jyfe .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-tcMtM6jyfe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcMtM6jyfe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcMtM6jyfe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcMtM6jyfe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcMtM6jyfe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcMtM6jyfe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcMtM6jyfe .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcMtM6jyfe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcMtM6jyfe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tcMtM6jyfe .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-tcMtM6jyfe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcMtM6jyfe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcMtM6jyfe .dropdown-item.active,
.cid-tcMtM6jyfe .dropdown-item:active {
  background-color: transparent;
}
.cid-tcMtM6jyfe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcMtM6jyfe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcMtM6jyfe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcMtM6jyfe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcMtM6jyfe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcMtM6jyfe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcMtM6jyfe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcMtM6jyfe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcMtM6jyfe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tcMtM6jyfe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-tcMtM6jyfe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcMtM6jyfe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcMtM6jyfe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcMtM6jyfe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tcMtM6jyfe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcMtM6jyfe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tcMtM6jyfe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tcMtM6jyfe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcMtM6jyfe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tcMtM6jyfe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcMtM6jyfe .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-tcMtM6jyfe .navbar {
    height: 70px;
  }
  .cid-tcMtM6jyfe .navbar.opened {
    height: auto;
  }
  .cid-tcMtM6jyfe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcMtM6STKT {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tcMtM6STKT .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tcMtM6STKT .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tcMtM6STKT .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tcMtM6STKT .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tcMtM6STKT .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcMtM6STKT .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tcMtM6STKT .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tcMtM6STKT .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tcMtM7j7bU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #4479d9;
}
.cid-tcMtM7j7bU .mbr-text,
.cid-tcMtM7j7bU .mbr-section-btn {
  color: #232323;
}
.cid-tcMtM7j7bU .card-title,
.cid-tcMtM7j7bU .card-box {
  color: #ffffff;
}
.cid-tcMtM7j7bU .mbr-text,
.cid-tcMtM7j7bU .link-wrap {
  color: #ffffff;
}
.cid-tcMtM7Gfbx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tcMtM7Gfbx img {
  border-radius: 0px;
  padding-top: 32px;
}
.cid-tcMtM7Gfbx .features-image:nth-child(-n+4) img {
  padding-top: 0px;
}
.cid-tcMtM7Gfbx .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-tcMtM7Gfbx .date {
  text-transform: uppercase;
  color: #6592e6;
  text-align: left;
  padding-top: 1rem;
}
.cid-tcMtM7Gfbx .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-tcMtM7Gfbx .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
@media (max-width: 690px) {
  .cid-tcMtM7Gfbx img {
    padding-top: 1rem;
  }
}
.cid-tNKUXmLEdb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tNKUXmLEdb .content {
    text-align: center;
  }
  .cid-tNKUXmLEdb .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tNKUXmLEdb .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tNKUXmLEdb .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tNKUXmLEdb .media-wrap img {
  height: 6rem;
}
.cid-tNKUXmLEdb .mbr-text {
  color: #8d97ad;
}
.cid-tNKUXmLEdb .p-title {
  font-size: 17px;
}
.cid-tNKUXmLEdb .p-title span {
  color: #111111;
}
.cid-tNKUXmLEdb .title-card {
  font-size: 1.3rem;
}
.cid-tNKUXmLEdb .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tNKUXmLEdb .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tNKUXmLEdb .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tNKUXmLEdb .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tNKUXmLEdb .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tNKUXmLEdb .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tNKUXmLEdb .copyright img {
  margin-right: 10px;
}
.cid-tNKUXmLEdb .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tNKUXmLEdb .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tNKUXmLEdb .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tNKUXmLEdb .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tNKUXmLEdb .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tNKUXmLEdb SPAN {
  color: #000000;
}
.cid-tcMtV0LLOH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcMtV0LLOH nav.navbar {
  position: fixed;
}
.cid-tcMtV0LLOH .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-tcMtV0LLOH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tcMtV0LLOH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcMtV0LLOH .dropdown-item:hover,
.cid-tcMtV0LLOH .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tcMtV0LLOH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tcMtV0LLOH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tcMtV0LLOH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tcMtV0LLOH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcMtV0LLOH .nav-link {
  position: relative;
}
.cid-tcMtV0LLOH .container {
  display: flex;
  margin: auto;
}
.cid-tcMtV0LLOH .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcMtV0LLOH .dropdown-menu,
.cid-tcMtV0LLOH .navbar.opened {
  background: #ffffff !important;
}
.cid-tcMtV0LLOH .nav-item:focus,
.cid-tcMtV0LLOH .nav-link:focus {
  outline: none;
}
.cid-tcMtV0LLOH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcMtV0LLOH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcMtV0LLOH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcMtV0LLOH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcMtV0LLOH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcMtV0LLOH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcMtV0LLOH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcMtV0LLOH .navbar.opened {
  transition: all 0.3s;
}
.cid-tcMtV0LLOH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcMtV0LLOH .navbar .navbar-logo img {
  width: auto;
}
.cid-tcMtV0LLOH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcMtV0LLOH .navbar.collapsed {
  justify-content: center;
}
.cid-tcMtV0LLOH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcMtV0LLOH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tcMtV0LLOH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcMtV0LLOH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcMtV0LLOH .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-tcMtV0LLOH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcMtV0LLOH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcMtV0LLOH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcMtV0LLOH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcMtV0LLOH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcMtV0LLOH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcMtV0LLOH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcMtV0LLOH .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-tcMtV0LLOH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcMtV0LLOH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcMtV0LLOH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcMtV0LLOH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcMtV0LLOH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcMtV0LLOH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcMtV0LLOH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcMtV0LLOH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcMtV0LLOH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tcMtV0LLOH .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-tcMtV0LLOH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcMtV0LLOH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcMtV0LLOH .dropdown-item.active,
.cid-tcMtV0LLOH .dropdown-item:active {
  background-color: transparent;
}
.cid-tcMtV0LLOH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcMtV0LLOH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcMtV0LLOH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcMtV0LLOH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcMtV0LLOH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcMtV0LLOH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcMtV0LLOH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcMtV0LLOH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcMtV0LLOH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tcMtV0LLOH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-tcMtV0LLOH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcMtV0LLOH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcMtV0LLOH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcMtV0LLOH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tcMtV0LLOH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcMtV0LLOH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tcMtV0LLOH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tcMtV0LLOH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcMtV0LLOH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tcMtV0LLOH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcMtV0LLOH .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-tcMtV0LLOH .navbar {
    height: 70px;
  }
  .cid-tcMtV0LLOH .navbar.opened {
    height: auto;
  }
  .cid-tcMtV0LLOH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcMtV1IvyN {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tcMtV1IvyN .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tcMtV1IvyN .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tcMtV1IvyN .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tcMtV1IvyN .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tcMtV1IvyN .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcMtV1IvyN .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tcMtV1IvyN .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tcMtV1IvyN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tcMtV28vLU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #4479d9;
}
.cid-tcMtV28vLU .mbr-text,
.cid-tcMtV28vLU .mbr-section-btn {
  color: #232323;
}
.cid-tcMtV28vLU .card-title,
.cid-tcMtV28vLU .card-box {
  color: #ffffff;
}
.cid-tcMtV28vLU .mbr-text,
.cid-tcMtV28vLU .link-wrap {
  color: #ffffff;
}
.cid-tcMtV2tyUe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tcMtV2tyUe img {
  border-radius: 0px;
  padding-top: 32px;
}
.cid-tcMtV2tyUe .features-image:nth-child(-n+4) img {
  padding-top: 0px;
}
.cid-tcMtV2tyUe .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-tcMtV2tyUe .date {
  text-transform: uppercase;
  color: #6592e6;
  text-align: left;
  padding-top: 1rem;
}
.cid-tcMtV2tyUe .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-tcMtV2tyUe .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
@media (max-width: 690px) {
  .cid-tcMtV2tyUe img {
    padding-top: 1rem;
  }
}
.cid-tNKUZRRpyB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tNKUZRRpyB .content {
    text-align: center;
  }
  .cid-tNKUZRRpyB .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tNKUZRRpyB .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tNKUZRRpyB .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tNKUZRRpyB .media-wrap img {
  height: 6rem;
}
.cid-tNKUZRRpyB .mbr-text {
  color: #8d97ad;
}
.cid-tNKUZRRpyB .p-title {
  font-size: 17px;
}
.cid-tNKUZRRpyB .p-title span {
  color: #111111;
}
.cid-tNKUZRRpyB .title-card {
  font-size: 1.3rem;
}
.cid-tNKUZRRpyB .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tNKUZRRpyB .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tNKUZRRpyB .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tNKUZRRpyB .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tNKUZRRpyB .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tNKUZRRpyB .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tNKUZRRpyB .copyright img {
  margin-right: 10px;
}
.cid-tNKUZRRpyB .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tNKUZRRpyB .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tNKUZRRpyB .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tNKUZRRpyB .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tNKUZRRpyB .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tNKUZRRpyB SPAN {
  color: #000000;
}
.cid-tcMu2UpRPU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tcMu2UpRPU nav.navbar {
  position: fixed;
}
.cid-tcMu2UpRPU .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-tcMu2UpRPU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tcMu2UpRPU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcMu2UpRPU .dropdown-item:hover,
.cid-tcMu2UpRPU .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tcMu2UpRPU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tcMu2UpRPU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tcMu2UpRPU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tcMu2UpRPU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcMu2UpRPU .nav-link {
  position: relative;
}
.cid-tcMu2UpRPU .container {
  display: flex;
  margin: auto;
}
.cid-tcMu2UpRPU .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcMu2UpRPU .dropdown-menu,
.cid-tcMu2UpRPU .navbar.opened {
  background: #ffffff !important;
}
.cid-tcMu2UpRPU .nav-item:focus,
.cid-tcMu2UpRPU .nav-link:focus {
  outline: none;
}
.cid-tcMu2UpRPU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcMu2UpRPU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcMu2UpRPU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcMu2UpRPU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcMu2UpRPU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcMu2UpRPU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcMu2UpRPU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tcMu2UpRPU .navbar.opened {
  transition: all 0.3s;
}
.cid-tcMu2UpRPU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcMu2UpRPU .navbar .navbar-logo img {
  width: auto;
}
.cid-tcMu2UpRPU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcMu2UpRPU .navbar.collapsed {
  justify-content: center;
}
.cid-tcMu2UpRPU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcMu2UpRPU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tcMu2UpRPU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcMu2UpRPU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcMu2UpRPU .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-tcMu2UpRPU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcMu2UpRPU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcMu2UpRPU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcMu2UpRPU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcMu2UpRPU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcMu2UpRPU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcMu2UpRPU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcMu2UpRPU .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-tcMu2UpRPU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcMu2UpRPU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcMu2UpRPU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcMu2UpRPU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcMu2UpRPU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcMu2UpRPU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcMu2UpRPU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcMu2UpRPU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcMu2UpRPU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tcMu2UpRPU .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-tcMu2UpRPU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcMu2UpRPU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcMu2UpRPU .dropdown-item.active,
.cid-tcMu2UpRPU .dropdown-item:active {
  background-color: transparent;
}
.cid-tcMu2UpRPU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcMu2UpRPU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcMu2UpRPU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcMu2UpRPU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tcMu2UpRPU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcMu2UpRPU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcMu2UpRPU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tcMu2UpRPU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcMu2UpRPU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tcMu2UpRPU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-tcMu2UpRPU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcMu2UpRPU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcMu2UpRPU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcMu2UpRPU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tcMu2UpRPU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcMu2UpRPU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tcMu2UpRPU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tcMu2UpRPU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcMu2UpRPU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tcMu2UpRPU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcMu2UpRPU .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-tcMu2UpRPU .navbar {
    height: 70px;
  }
  .cid-tcMu2UpRPU .navbar.opened {
    height: auto;
  }
  .cid-tcMu2UpRPU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcMu2V7f0Z {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tcMu2V7f0Z .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tcMu2V7f0Z .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tcMu2V7f0Z .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tcMu2V7f0Z .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tcMu2V7f0Z .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tcMu2V7f0Z .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tcMu2V7f0Z .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tcMu2V7f0Z .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tcMu2VBcsg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #4479d9;
}
.cid-tcMu2VBcsg .mbr-text,
.cid-tcMu2VBcsg .mbr-section-btn {
  color: #232323;
}
.cid-tcMu2VBcsg .card-title,
.cid-tcMu2VBcsg .card-box {
  color: #ffffff;
}
.cid-tcMu2VBcsg .mbr-text,
.cid-tcMu2VBcsg .link-wrap {
  color: #ffffff;
}
.cid-tcMu2W3tgh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tcMu2W3tgh img {
  border-radius: 0px;
  padding-top: 32px;
}
.cid-tcMu2W3tgh .features-image:nth-child(-n+4) img {
  padding-top: 0px;
}
.cid-tcMu2W3tgh .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-tcMu2W3tgh .date {
  text-transform: uppercase;
  color: #6592e6;
  text-align: left;
  padding-top: 1rem;
}
.cid-tcMu2W3tgh .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-tcMu2W3tgh .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
@media (max-width: 690px) {
  .cid-tcMu2W3tgh img {
    padding-top: 1rem;
  }
}
.cid-tNKV2mhI1A {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tNKV2mhI1A .content {
    text-align: center;
  }
  .cid-tNKV2mhI1A .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tNKV2mhI1A .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tNKV2mhI1A .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tNKV2mhI1A .media-wrap img {
  height: 6rem;
}
.cid-tNKV2mhI1A .mbr-text {
  color: #8d97ad;
}
.cid-tNKV2mhI1A .p-title {
  font-size: 17px;
}
.cid-tNKV2mhI1A .p-title span {
  color: #111111;
}
.cid-tNKV2mhI1A .title-card {
  font-size: 1.3rem;
}
.cid-tNKV2mhI1A .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tNKV2mhI1A .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tNKV2mhI1A .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tNKV2mhI1A .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tNKV2mhI1A .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tNKV2mhI1A .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tNKV2mhI1A .copyright img {
  margin-right: 10px;
}
.cid-tNKV2mhI1A .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tNKV2mhI1A .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tNKV2mhI1A .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tNKV2mhI1A .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tNKV2mhI1A .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tNKV2mhI1A SPAN {
  color: #000000;
}
.cid-sRQT0CvHJe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sRQT0CvHJe nav.navbar {
  position: fixed;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRQT0CvHJe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRQT0CvHJe .dropdown-item:hover,
.cid-sRQT0CvHJe .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRQT0CvHJe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRQT0CvHJe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRQT0CvHJe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRQT0CvHJe .nav-link {
  position: relative;
}
.cid-sRQT0CvHJe .container {
  display: flex;
  margin: auto;
}
.cid-sRQT0CvHJe .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRQT0CvHJe .dropdown-menu,
.cid-sRQT0CvHJe .navbar.opened {
  background: #ffffff !important;
}
.cid-sRQT0CvHJe .nav-item:focus,
.cid-sRQT0CvHJe .nav-link:focus {
  outline: none;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRQT0CvHJe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRQT0CvHJe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRQT0CvHJe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sRQT0CvHJe .navbar.opened {
  transition: all 0.3s;
}
.cid-sRQT0CvHJe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRQT0CvHJe .navbar .navbar-logo img {
  width: auto;
}
.cid-sRQT0CvHJe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRQT0CvHJe .navbar.collapsed {
  justify-content: center;
}
.cid-sRQT0CvHJe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRQT0CvHJe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRQT0CvHJe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRQT0CvHJe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRQT0CvHJe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRQT0CvHJe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRQT0CvHJe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRQT0CvHJe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRQT0CvHJe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRQT0CvHJe .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRQT0CvHJe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRQT0CvHJe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRQT0CvHJe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRQT0CvHJe .dropdown-item.active,
.cid-sRQT0CvHJe .dropdown-item:active {
  background-color: transparent;
}
.cid-sRQT0CvHJe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRQT0CvHJe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sRQT0CvHJe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRQT0CvHJe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRQT0CvHJe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRQT0CvHJe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRQT0CvHJe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sRQT0CvHJe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar {
    height: 70px;
  }
  .cid-sRQT0CvHJe .navbar.opened {
    height: auto;
  }
  .cid-sRQT0CvHJe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sTVOb43H1q {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sTVOb43H1q .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sTVOb43H1q .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sTVOb43H1q .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sTVOb43H1q .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sTVOb43H1q .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTVOb43H1q .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sTVOb43H1q .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sTVOb43H1q .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tcMuqgW6QJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #4479d9;
}
.cid-tcMuqgW6QJ .mbr-text,
.cid-tcMuqgW6QJ .mbr-section-btn {
  color: #232323;
}
.cid-tcMuqgW6QJ .card-title,
.cid-tcMuqgW6QJ .card-box {
  color: #ffffff;
}
.cid-tcMuqgW6QJ .mbr-text,
.cid-tcMuqgW6QJ .link-wrap {
  color: #ffffff;
}
.cid-sWKFye0JGd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sWKFye0JGd img {
  border-radius: 0px;
  padding-top: 32px;
}
.cid-sWKFye0JGd .features-image:nth-child(-n+4) img {
  padding-top: 0px;
}
.cid-sWKFye0JGd .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sWKFye0JGd .date {
  text-transform: uppercase;
  color: #6592e6;
  text-align: left;
  padding-top: 1rem;
}
.cid-sWKFye0JGd .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sWKFye0JGd .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
@media (max-width: 690px) {
  .cid-sWKFye0JGd img {
    padding-top: 1rem;
  }
}
.cid-tNKV4XFzKy {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tNKV4XFzKy .content {
    text-align: center;
  }
  .cid-tNKV4XFzKy .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tNKV4XFzKy .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tNKV4XFzKy .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tNKV4XFzKy .media-wrap img {
  height: 6rem;
}
.cid-tNKV4XFzKy .mbr-text {
  color: #8d97ad;
}
.cid-tNKV4XFzKy .p-title {
  font-size: 17px;
}
.cid-tNKV4XFzKy .p-title span {
  color: #111111;
}
.cid-tNKV4XFzKy .title-card {
  font-size: 1.3rem;
}
.cid-tNKV4XFzKy .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tNKV4XFzKy .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tNKV4XFzKy .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tNKV4XFzKy .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tNKV4XFzKy .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tNKV4XFzKy .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tNKV4XFzKy .copyright img {
  margin-right: 10px;
}
.cid-tNKV4XFzKy .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tNKV4XFzKy .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tNKV4XFzKy .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tNKV4XFzKy .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tNKV4XFzKy .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tNKV4XFzKy SPAN {
  color: #000000;
}
.cid-sRQT0CvHJe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sRQT0CvHJe nav.navbar {
  position: fixed;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRQT0CvHJe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRQT0CvHJe .dropdown-item:hover,
.cid-sRQT0CvHJe .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRQT0CvHJe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRQT0CvHJe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRQT0CvHJe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRQT0CvHJe .nav-link {
  position: relative;
}
.cid-sRQT0CvHJe .container {
  display: flex;
  margin: auto;
}
.cid-sRQT0CvHJe .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRQT0CvHJe .dropdown-menu,
.cid-sRQT0CvHJe .navbar.opened {
  background: #ffffff !important;
}
.cid-sRQT0CvHJe .nav-item:focus,
.cid-sRQT0CvHJe .nav-link:focus {
  outline: none;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRQT0CvHJe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRQT0CvHJe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRQT0CvHJe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sRQT0CvHJe .navbar.opened {
  transition: all 0.3s;
}
.cid-sRQT0CvHJe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRQT0CvHJe .navbar .navbar-logo img {
  width: auto;
}
.cid-sRQT0CvHJe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRQT0CvHJe .navbar.collapsed {
  justify-content: center;
}
.cid-sRQT0CvHJe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRQT0CvHJe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRQT0CvHJe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRQT0CvHJe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRQT0CvHJe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRQT0CvHJe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRQT0CvHJe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRQT0CvHJe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRQT0CvHJe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRQT0CvHJe .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRQT0CvHJe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRQT0CvHJe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRQT0CvHJe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRQT0CvHJe .dropdown-item.active,
.cid-sRQT0CvHJe .dropdown-item:active {
  background-color: transparent;
}
.cid-sRQT0CvHJe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRQT0CvHJe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sRQT0CvHJe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRQT0CvHJe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRQT0CvHJe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRQT0CvHJe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRQT0CvHJe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sRQT0CvHJe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar {
    height: 70px;
  }
  .cid-sRQT0CvHJe .navbar.opened {
    height: auto;
  }
  .cid-sRQT0CvHJe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sTVOt5cILH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sTVOt5cILH .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sTVOt5cILH .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sTVOt5cILH .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sTVOt5cILH .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sTVOt5cILH .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTVOt5cILH .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sTVOt5cILH .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sTVOt5cILH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sWKFIBRiDF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sWKFIBRiDF img {
  border-radius: 0px;
  padding-top: 32px;
}
.cid-sWKFIBRiDF .features-image:nth-child(-n+4) img {
  padding-top: 0px;
}
.cid-sWKFIBRiDF .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sWKFIBRiDF .date {
  text-transform: uppercase;
  color: #6592e6;
  text-align: left;
  padding-top: 1rem;
}
.cid-sWKFIBRiDF .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sWKFIBRiDF .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
@media (max-width: 690px) {
  .cid-sWKFIBRiDF img {
    padding-top: 1rem;
  }
}
.cid-tNKV7zvCKI {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tNKV7zvCKI .content {
    text-align: center;
  }
  .cid-tNKV7zvCKI .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tNKV7zvCKI .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tNKV7zvCKI .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tNKV7zvCKI .media-wrap img {
  height: 6rem;
}
.cid-tNKV7zvCKI .mbr-text {
  color: #8d97ad;
}
.cid-tNKV7zvCKI .p-title {
  font-size: 17px;
}
.cid-tNKV7zvCKI .p-title span {
  color: #111111;
}
.cid-tNKV7zvCKI .title-card {
  font-size: 1.3rem;
}
.cid-tNKV7zvCKI .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tNKV7zvCKI .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tNKV7zvCKI .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tNKV7zvCKI .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tNKV7zvCKI .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tNKV7zvCKI .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tNKV7zvCKI .copyright img {
  margin-right: 10px;
}
.cid-tNKV7zvCKI .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tNKV7zvCKI .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tNKV7zvCKI .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tNKV7zvCKI .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tNKV7zvCKI .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tNKV7zvCKI SPAN {
  color: #000000;
}
.cid-sRQT0CvHJe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sRQT0CvHJe nav.navbar {
  position: fixed;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRQT0CvHJe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRQT0CvHJe .dropdown-item:hover,
.cid-sRQT0CvHJe .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRQT0CvHJe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRQT0CvHJe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRQT0CvHJe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRQT0CvHJe .nav-link {
  position: relative;
}
.cid-sRQT0CvHJe .container {
  display: flex;
  margin: auto;
}
.cid-sRQT0CvHJe .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRQT0CvHJe .dropdown-menu,
.cid-sRQT0CvHJe .navbar.opened {
  background: #ffffff !important;
}
.cid-sRQT0CvHJe .nav-item:focus,
.cid-sRQT0CvHJe .nav-link:focus {
  outline: none;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRQT0CvHJe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRQT0CvHJe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRQT0CvHJe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sRQT0CvHJe .navbar.opened {
  transition: all 0.3s;
}
.cid-sRQT0CvHJe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRQT0CvHJe .navbar .navbar-logo img {
  width: auto;
}
.cid-sRQT0CvHJe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRQT0CvHJe .navbar.collapsed {
  justify-content: center;
}
.cid-sRQT0CvHJe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRQT0CvHJe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRQT0CvHJe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRQT0CvHJe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRQT0CvHJe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRQT0CvHJe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRQT0CvHJe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRQT0CvHJe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRQT0CvHJe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRQT0CvHJe .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRQT0CvHJe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRQT0CvHJe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRQT0CvHJe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRQT0CvHJe .dropdown-item.active,
.cid-sRQT0CvHJe .dropdown-item:active {
  background-color: transparent;
}
.cid-sRQT0CvHJe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRQT0CvHJe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sRQT0CvHJe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRQT0CvHJe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRQT0CvHJe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRQT0CvHJe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRQT0CvHJe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sRQT0CvHJe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar {
    height: 70px;
  }
  .cid-sRQT0CvHJe .navbar.opened {
    height: auto;
  }
  .cid-sRQT0CvHJe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sTVPdAZ4ZL {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sTVPdAZ4ZL .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sTVPdAZ4ZL label {
  padding: 0 1rem;
}
.cid-sTVPdAZ4ZL textarea {
  min-height: 150px;
}
.cid-sTVPdAZ4ZL .btn {
  padding: 1rem 3rem;
}
@media (min-width: 992px) {
  .cid-sTVPdAZ4ZL .image-wrapper {
    max-width: 80%;
  }
}
.cid-sTVPdAZ4ZL .row {
  align-items: center;
}
.cid-sTVPdAZ4ZL .form-control,
.cid-sTVPdAZ4ZL .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #004cd5 !important;
  border-radius: 0;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sTVPdAZ4ZL .form-control::-webkit-input-placeholder,
.cid-sTVPdAZ4ZL .field-input::-webkit-input-placeholder,
.cid-sTVPdAZ4ZL .form-control::-webkit-input-placeholder,
.cid-sTVPdAZ4ZL .field-input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-sTVPdAZ4ZL .form-control:-moz-placeholder,
.cid-sTVPdAZ4ZL .field-input:-moz-placeholder,
.cid-sTVPdAZ4ZL .form-control:-moz-placeholder,
.cid-sTVPdAZ4ZL .field-input:-moz-placeholder {
  color: #c1c1c1;
}
.cid-sTVPdAZ4ZL .form-control:hover,
.cid-sTVPdAZ4ZL .field-input:hover,
.cid-sTVPdAZ4ZL .form-control:focus,
.cid-sTVPdAZ4ZL .field-input:focus {
  background-color: #ffffff;
  border-color: #004cd5 !important;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-sTVPdAZ4ZL .form-control:hover::-webkit-input-placeholder,
.cid-sTVPdAZ4ZL .field-input:hover::-webkit-input-placeholder,
.cid-sTVPdAZ4ZL .form-control:focus::-webkit-input-placeholder,
.cid-sTVPdAZ4ZL .field-input:focus::-webkit-input-placeholder,
.cid-sTVPdAZ4ZL .form-control:hover::-webkit-input-placeholder,
.cid-sTVPdAZ4ZL .field-input:hover::-webkit-input-placeholder,
.cid-sTVPdAZ4ZL .form-control:focus::-webkit-input-placeholder,
.cid-sTVPdAZ4ZL .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-sTVPdAZ4ZL .form-control:hover:-moz-placeholder,
.cid-sTVPdAZ4ZL .field-input:hover:-moz-placeholder,
.cid-sTVPdAZ4ZL .form-control:focus:-moz-placeholder,
.cid-sTVPdAZ4ZL .field-input:focus:-moz-placeholder,
.cid-sTVPdAZ4ZL .form-control:hover:-moz-placeholder,
.cid-sTVPdAZ4ZL .field-input:hover:-moz-placeholder,
.cid-sTVPdAZ4ZL .form-control:focus:-moz-placeholder,
.cid-sTVPdAZ4ZL .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-sTVPdAZ4ZL .jq-number__spin:hover,
.cid-sTVPdAZ4ZL .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #004cd5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sTVPdAZ4ZL .jq-number__spin {
  background-color: #ffffff;
  border-color: #004cd5;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sTVPdAZ4ZL .jq-selectbox li,
.cid-sTVPdAZ4ZL .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sTVPdAZ4ZL .jq-selectbox li:hover,
.cid-sTVPdAZ4ZL .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-sTVPdAZ4ZL .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sTVPdAZ4ZL .jq-number__spin.minus:hover:after,
.cid-sTVPdAZ4ZL .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sTVPdAZ4ZL .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sTVPdAZ4ZL .jq-number__spin.minus:after,
.cid-sTVPdAZ4ZL .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sTVPdAZ4ZL input::-webkit-clear-button {
  display: none;
}
.cid-sTVPdAZ4ZL input::-webkit-inner-spin-button {
  display: none;
}
.cid-sTVPdAZ4ZL input::-webkit-outer-spin-button {
  display: none;
}
.cid-sTVPdAZ4ZL input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sTVPdAZ4ZL .wrapper {
  display: flex;
}
.cid-sTVPdAZ4ZL .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #6592e6;
  margin-right: 1.5rem;
}
@media (max-width: 767px) {
  .cid-sTVPdAZ4ZL .wrapper {
    flex-direction: column;
  }
  .cid-sTVPdAZ4ZL .iconfont-wrapper {
    margin: auto;
  }
  .cid-sTVPdAZ4ZL .mbr-iconfont {
    margin-right: 0rem;
    margin-bottom: 2rem;
  }
}
.cid-sTVPdAZ4ZL .mbr-section-title {
  color: #004cd5;
}
.cid-tNKVa8HfMY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tNKVa8HfMY .content {
    text-align: center;
  }
  .cid-tNKVa8HfMY .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tNKVa8HfMY .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tNKVa8HfMY .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tNKVa8HfMY .media-wrap img {
  height: 6rem;
}
.cid-tNKVa8HfMY .mbr-text {
  color: #8d97ad;
}
.cid-tNKVa8HfMY .p-title {
  font-size: 17px;
}
.cid-tNKVa8HfMY .p-title span {
  color: #111111;
}
.cid-tNKVa8HfMY .title-card {
  font-size: 1.3rem;
}
.cid-tNKVa8HfMY .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tNKVa8HfMY .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tNKVa8HfMY .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tNKVa8HfMY .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tNKVa8HfMY .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tNKVa8HfMY .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tNKVa8HfMY .copyright img {
  margin-right: 10px;
}
.cid-tNKVa8HfMY .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tNKVa8HfMY .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tNKVa8HfMY .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tNKVa8HfMY .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tNKVa8HfMY .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tNKVa8HfMY SPAN {
  color: #000000;
}
.cid-sRQT0CvHJe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sRQT0CvHJe nav.navbar {
  position: fixed;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRQT0CvHJe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRQT0CvHJe .dropdown-item:hover,
.cid-sRQT0CvHJe .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRQT0CvHJe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRQT0CvHJe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRQT0CvHJe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRQT0CvHJe .nav-link {
  position: relative;
}
.cid-sRQT0CvHJe .container {
  display: flex;
  margin: auto;
}
.cid-sRQT0CvHJe .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRQT0CvHJe .dropdown-menu,
.cid-sRQT0CvHJe .navbar.opened {
  background: #ffffff !important;
}
.cid-sRQT0CvHJe .nav-item:focus,
.cid-sRQT0CvHJe .nav-link:focus {
  outline: none;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRQT0CvHJe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRQT0CvHJe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRQT0CvHJe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sRQT0CvHJe .navbar.opened {
  transition: all 0.3s;
}
.cid-sRQT0CvHJe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRQT0CvHJe .navbar .navbar-logo img {
  width: auto;
}
.cid-sRQT0CvHJe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRQT0CvHJe .navbar.collapsed {
  justify-content: center;
}
.cid-sRQT0CvHJe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRQT0CvHJe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRQT0CvHJe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRQT0CvHJe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRQT0CvHJe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRQT0CvHJe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRQT0CvHJe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRQT0CvHJe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRQT0CvHJe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRQT0CvHJe .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRQT0CvHJe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRQT0CvHJe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRQT0CvHJe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRQT0CvHJe .dropdown-item.active,
.cid-sRQT0CvHJe .dropdown-item:active {
  background-color: transparent;
}
.cid-sRQT0CvHJe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRQT0CvHJe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sRQT0CvHJe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRQT0CvHJe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRQT0CvHJe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRQT0CvHJe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRQT0CvHJe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sRQT0CvHJe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar {
    height: 70px;
  }
  .cid-sRQT0CvHJe .navbar.opened {
    height: auto;
  }
  .cid-sRQT0CvHJe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sTVQLeic4s {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sTVQLeic4s textarea,
.cid-sTVQLeic4s textarea:hover,
.cid-sTVQLeic4s input,
.cid-sTVQLeic4s input:hover,
.cid-sTVQLeic4s input:focus,
.cid-sTVQLeic4s textarea:focus {
  padding: 13px 0;
  border-color: transparent;
  padding-left: 30px;
  box-shadow: none;
}
.cid-sTVQLeic4s .form-control {
  border-radius: 0 !important;
}
.cid-sTVQLeic4s .form-check .form-check-input {
  float: initial;
  margin-top: 0;
  padding: 0 !important;
}
.cid-sTVQLeic4s label {
  color: #040e17;
  font-family: 'DM Sans';
}
.cid-sTVQLeic4s input {
  color: #040e17;
  font-family: 'DM Sans';
  background-color: transparent;
  border-bottom: 1px solid #E2E3E9 !important;
}
.cid-sTVQLeic4s input::placeholder {
  color: #52586A;
  font-family: 'DM Sans';
}
.cid-sTVQLeic4s textarea {
  background-color: transparent;
  color: #040e17;
  font-family: 'DM Sans';
  min-height: 66px;
  border-bottom: 1px solid #E2E3E9 !important;
}
.cid-sTVQLeic4s textarea::placeholder {
  color: #52586A;
  font-family: 'DM Sans';
}
.cid-sTVQLeic4s .btn > span {
  margin-left: 0.5rem;
  color: currentColor;
}
.cid-sTVQLeic4s .btn {
  padding: 12px 35px 12px 35px !important;
}
.cid-sTVQLeic4s .line {
  display: block;
  height: 1px;
  width: 100%;
  position: relative;
  background-color: #E2E3E9;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
  margin-top: -1px;
}
.cid-sTVQLeic4s .line:before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  position: absolute;
  top: 0;
  z-index: 1;
  background-color: #040e17;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.cid-sTVQLeic4s .form-group:hover .line:before,
.cid-sTVQLeic4s .form-group:focus .line:before {
  width: 100%;
}
.cid-sTVQLeic4s .form-group {
  position: relative;
  margin-bottom: 30px;
}
.cid-sTVQLeic4s .form-group:before {
  font-size: 20px;
  color: black;
  display: block;
  font-weight: 400;
  position: absolute;
  z-index: 1;
  top: 10px;
  left: initial;
}
.cid-sTVQLeic4s .mbr-iconfont1 {
  position: absolute;
  top: 14px;
  font-size: 18px;
}
.cid-sTVQLeic4s .align {
  margin-top: 5px;
  text-align: left;
  padding-left: 0;
  padding-right: 0;
}
.cid-sTVQLeic4s .col-auto {
  display: inline-block;
}
.cid-sTVQLeic4s .icon-transition span {
  border: 1px solid #e6e6e7;
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 45px;
  height: 45px;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sTVQLeic4s button span:before {
  color: currentColor !important;
}
.cid-sTVQLeic4s .mbr-iconfont {
  color: #111213;
  align-items: center;
}
.cid-sTVQLeic4s .mbr-iconfont:before {
  color: currentColor;
  font-size: 18px;
  display: flex;
  justify-content: center;
}
.cid-sTVQLeic4s .social-list {
  display: inline-block;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sTVQLeic4s .icon-transition:hover .mbr-iconfont {
  color: #909190;
}
.cid-sTVQLeic4s .social-media {
  padding: 0;
  text-align: left;
}
.cid-sTVQLeic4s .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-sTVQLeic4s .social-media ul li {
  padding: 2px;
  display: inline-block;
}
.cid-sTVQLeic4s .mbr-list,
.cid-sTVQLeic4s .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-sTVQLeic4s .social-list {
    text-align: center !important;
  }
}
.cid-sTVQLeic4s .title {
  margin-bottom: 28px;
}
.cid-sTVQLeic4s .text {
  margin-bottom: 20px;
  color: #111213;
}
.cid-sTVQLeic4s .link1 {
  margin-bottom: 20px;
  position: relative;
}
.cid-sTVQLeic4s .phone {
  margin-bottom: 42px;
}
.cid-sTVQLeic4s .link:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: scale3d(0, 1, 1);
  -ms-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  -ms-transition: -ms-transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}
.cid-sTVQLeic4s .link:hover:after {
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.cid-sTVQLeic4s .ph {
  font-weight: 600;
}
.cid-sTVQLeic4s .link {
  font-weight: 400 !important;
}
@media (max-width: 768px) {
  .cid-sTVQLeic4s .col-md-8 {
    margin-top: 20px;
  }
}
.cid-sTVQLeic4s .title,
.cid-sTVQLeic4s .social-media,
.cid-sTVQLeic4s .link1,
.cid-sTVQLeic4s .phone {
  color: #111213;
}
.cid-sTVQ0e1WWq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sTVQ0e1WWq .google-map {
  height: 30rem;
  position: relative;
}
.cid-sTVQ0e1WWq .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sTVQ0e1WWq .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sTVQ0e1WWq .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sTVQ0e1WWq .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tNKVcW0jcb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tNKVcW0jcb .content {
    text-align: center;
  }
  .cid-tNKVcW0jcb .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tNKVcW0jcb .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tNKVcW0jcb .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tNKVcW0jcb .media-wrap img {
  height: 6rem;
}
.cid-tNKVcW0jcb .mbr-text {
  color: #8d97ad;
}
.cid-tNKVcW0jcb .p-title {
  font-size: 17px;
}
.cid-tNKVcW0jcb .p-title span {
  color: #111111;
}
.cid-tNKVcW0jcb .title-card {
  font-size: 1.3rem;
}
.cid-tNKVcW0jcb .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tNKVcW0jcb .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tNKVcW0jcb .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tNKVcW0jcb .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tNKVcW0jcb .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tNKVcW0jcb .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tNKVcW0jcb .copyright img {
  margin-right: 10px;
}
.cid-tNKVcW0jcb .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tNKVcW0jcb .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tNKVcW0jcb .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tNKVcW0jcb .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tNKVcW0jcb .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tNKVcW0jcb SPAN {
  color: #000000;
}
.cid-sRQT0CvHJe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sRQT0CvHJe nav.navbar {
  position: fixed;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRQT0CvHJe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRQT0CvHJe .dropdown-item:hover,
.cid-sRQT0CvHJe .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRQT0CvHJe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRQT0CvHJe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRQT0CvHJe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRQT0CvHJe .nav-link {
  position: relative;
}
.cid-sRQT0CvHJe .container {
  display: flex;
  margin: auto;
}
.cid-sRQT0CvHJe .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRQT0CvHJe .dropdown-menu,
.cid-sRQT0CvHJe .navbar.opened {
  background: #ffffff !important;
}
.cid-sRQT0CvHJe .nav-item:focus,
.cid-sRQT0CvHJe .nav-link:focus {
  outline: none;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRQT0CvHJe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRQT0CvHJe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRQT0CvHJe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sRQT0CvHJe .navbar.opened {
  transition: all 0.3s;
}
.cid-sRQT0CvHJe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRQT0CvHJe .navbar .navbar-logo img {
  width: auto;
}
.cid-sRQT0CvHJe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRQT0CvHJe .navbar.collapsed {
  justify-content: center;
}
.cid-sRQT0CvHJe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRQT0CvHJe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRQT0CvHJe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRQT0CvHJe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRQT0CvHJe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRQT0CvHJe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRQT0CvHJe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRQT0CvHJe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRQT0CvHJe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRQT0CvHJe .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRQT0CvHJe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRQT0CvHJe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRQT0CvHJe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRQT0CvHJe .dropdown-item.active,
.cid-sRQT0CvHJe .dropdown-item:active {
  background-color: transparent;
}
.cid-sRQT0CvHJe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRQT0CvHJe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sRQT0CvHJe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRQT0CvHJe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRQT0CvHJe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRQT0CvHJe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRQT0CvHJe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sRQT0CvHJe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar {
    height: 70px;
  }
  .cid-sRQT0CvHJe .navbar.opened {
    height: auto;
  }
  .cid-sRQT0CvHJe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNKUeaW7No {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tNKUykhEHa {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tNKUykhEHa .content {
    text-align: center;
  }
  .cid-tNKUykhEHa .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tNKUykhEHa .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tNKUykhEHa .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tNKUykhEHa .media-wrap img {
  height: 6rem;
}
.cid-tNKUykhEHa .mbr-text {
  color: #8d97ad;
}
.cid-tNKUykhEHa .p-title {
  font-size: 17px;
}
.cid-tNKUykhEHa .p-title span {
  color: #111111;
}
.cid-tNKUykhEHa .title-card {
  font-size: 1.3rem;
}
.cid-tNKUykhEHa .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tNKUykhEHa .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tNKUykhEHa .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tNKUykhEHa .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tNKUykhEHa .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tNKUykhEHa .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tNKUykhEHa .copyright img {
  margin-right: 10px;
}
.cid-tNKUykhEHa .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tNKUykhEHa .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tNKUykhEHa .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tNKUykhEHa .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tNKUykhEHa .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tNKUykhEHa SPAN {
  color: #000000;
}
.cid-sRQT0CvHJe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sRQT0CvHJe nav.navbar {
  position: fixed;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRQT0CvHJe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRQT0CvHJe .dropdown-item:hover,
.cid-sRQT0CvHJe .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sRQT0CvHJe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRQT0CvHJe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRQT0CvHJe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRQT0CvHJe .nav-link {
  position: relative;
}
.cid-sRQT0CvHJe .container {
  display: flex;
  margin: auto;
}
.cid-sRQT0CvHJe .iconfont-wrapper {
  color: #17171a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRQT0CvHJe .dropdown-menu,
.cid-sRQT0CvHJe .navbar.opened {
  background: #ffffff !important;
}
.cid-sRQT0CvHJe .nav-item:focus,
.cid-sRQT0CvHJe .nav-link:focus {
  outline: none;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRQT0CvHJe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRQT0CvHJe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRQT0CvHJe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRQT0CvHJe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sRQT0CvHJe .navbar.opened {
  transition: all 0.3s;
}
.cid-sRQT0CvHJe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRQT0CvHJe .navbar .navbar-logo img {
  width: auto;
}
.cid-sRQT0CvHJe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRQT0CvHJe .navbar.collapsed {
  justify-content: center;
}
.cid-sRQT0CvHJe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRQT0CvHJe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRQT0CvHJe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRQT0CvHJe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRQT0CvHJe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRQT0CvHJe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRQT0CvHJe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRQT0CvHJe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRQT0CvHJe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRQT0CvHJe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRQT0CvHJe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRQT0CvHJe .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRQT0CvHJe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRQT0CvHJe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRQT0CvHJe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRQT0CvHJe .dropdown-item.active,
.cid-sRQT0CvHJe .dropdown-item:active {
  background-color: transparent;
}
.cid-sRQT0CvHJe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRQT0CvHJe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRQT0CvHJe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sRQT0CvHJe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRQT0CvHJe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRQT0CvHJe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRQT0CvHJe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRQT0CvHJe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #17171a;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRQT0CvHJe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRQT0CvHJe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRQT0CvHJe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sRQT0CvHJe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRQT0CvHJe .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-sRQT0CvHJe .navbar {
    height: 70px;
  }
  .cid-sRQT0CvHJe .navbar.opened {
    height: auto;
  }
  .cid-sRQT0CvHJe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNKSB8Ugnx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tNKUv73AGd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tNKUv73AGd .content {
    text-align: center;
  }
  .cid-tNKUv73AGd .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tNKUv73AGd .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tNKUv73AGd .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tNKUv73AGd .media-wrap img {
  height: 6rem;
}
.cid-tNKUv73AGd .mbr-text {
  color: #8d97ad;
}
.cid-tNKUv73AGd .p-title {
  font-size: 17px;
}
.cid-tNKUv73AGd .p-title span {
  color: #111111;
}
.cid-tNKUv73AGd .title-card {
  font-size: 1.3rem;
}
.cid-tNKUv73AGd .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tNKUv73AGd .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tNKUv73AGd .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tNKUv73AGd .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tNKUv73AGd .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tNKUv73AGd .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tNKUv73AGd .copyright img {
  margin-right: 10px;
}
.cid-tNKUv73AGd .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tNKUv73AGd .icon-transition span:hover {
  background-color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tNKUv73AGd .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tNKUv73AGd .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tNKUv73AGd .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tNKUv73AGd SPAN {
  color: #000000;
}
