.btn {
  border-radius: 50px;
}
body {
  font-family: 'Fira Sans', sans-serif;
}
.display-1 {
  font-family: 'Fira Sans', sans-serif;
  font-size: 3.875rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.84375rem;
}
.display-2 {
  font-family: 'Fira Sans', sans-serif;
  font-size: 3.5rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-4 {
  font-family: 'Fira Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Fira Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Fira Sans', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.875rem;
}
/* ---- 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.1rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.7125rem;
    font-size: calc( 2.0062499999999996rem + (3.875 - 2.0062499999999996) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.0062499999999996rem + (3.875 - 2.0062499999999996) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .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: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 3.5625rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 1.5625rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #351a44 !important;
}
.bg-success {
  background-color: #8d8d8d !important;
}
.bg-info {
  background-color: #332071 !important;
}
.bg-warning {
  background-color: #8b8d8d !important;
}
.bg-danger {
  background-color: #1c91ff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #351a44 !important;
  border-color: #351a44 !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: #040205 !important;
  border-color: #040205 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #040205 !important;
  border-color: #040205 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #61c223 !important;
  border-color: #61c223 !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: #3c7916 !important;
  border-color: #3c7916 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #3c7916 !important;
  border-color: #3c7916 !important;
}
.btn-info,
.btn-info:active {
  background-color: #332071 !important;
  border-color: #332071 !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: #150d2d !important;
  border-color: #150d2d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #150d2d !important;
  border-color: #150d2d !important;
}
.btn-success,
.btn-success:active {
  background-color: #8d8d8d !important;
  border-color: #8d8d8d !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: #626262 !important;
  border-color: #626262 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #626262 !important;
  border-color: #626262 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #8b8d8d !important;
  border-color: #8b8d8d !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #606161 !important;
  border-color: #606161 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #606161 !important;
  border-color: #606161 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #1c91ff !important;
  border-color: #1c91ff !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: #0065c4 !important;
  border-color: #0065c4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0065c4 !important;
  border-color: #0065c4 !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: #351a44;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #040205 !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: #351a44 !important;
  border-color: #351a44 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #61c223;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #3c7916 !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: #61c223 !important;
  border-color: #61c223 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #332071;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #150d2d !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: #332071 !important;
  border-color: #332071 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8d8d8d;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #626262 !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: #8d8d8d !important;
  border-color: #8d8d8d !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8b8d8d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #606161 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #8b8d8d !important;
  border-color: #8b8d8d !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1c91ff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #0065c4 !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: #1c91ff !important;
  border-color: #1c91ff !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: #351a44 !important;
}
.text-secondary {
  color: #61c223 !important;
}
.text-success {
  color: #8d8d8d !important;
}
.text-info {
  color: #332071 !important;
}
.text-warning {
  color: #8b8d8d !important;
}
.text-danger {
  color: #1c91ff !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #351a44 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #61c223 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #8d8d8d !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #332071 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #8b8d8d !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #1c91ff !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #232323 !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 0.3s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  /*  background-position: 0px 1.2em; */
}
.nav-tabs .nav-link.active {
  color: #351a44;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #332071;
}
.alert-warning {
  background-color: #8b8d8d;
}
.alert-danger {
  background-color: #1c91ff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #351a44;
  border-color: #351a44;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ae78cb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #cdcdcd;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #6546cb;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #cbcccc;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e8f4ff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Fira Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #351a44 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Fira Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #351a44;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #351a44;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #351a44;
}
.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: #351a44;
  border-bottom-color: #351a44;
}
.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: #351a44 !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: #61c223 !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='%23351a44' %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;
}
p {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}
.container {
  max-width: 1440px;
}
a {
  transition: all 300ms ease !important;
}
a.btn {
  transition: all 300ms ease !important;
  box-shadow: none !important;
}
.card-title {
  margin-bottom: 0;
}
button:focus {
  box-shadow: none !important;
}
.cid-tw6OutoFCT .navbar-dropdown {
  position: relative !important;
}
.cid-tw6OutoFCT .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-tw6OutoFCT .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tw6OutoFCT .dropdown-item:hover,
.cid-tw6OutoFCT .dropdown-item:focus {
  color: #351a44 !important;
}
.cid-tw6OutoFCT .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tw6OutoFCT .nav-link {
  position: relative;
  padding: 0;
}
.cid-tw6OutoFCT .container {
  display: flex;
  margin: auto;
}
.cid-tw6OutoFCT .iconfont-wrapper {
  color: #1d2024 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tw6OutoFCT .dropdown-menu,
.cid-tw6OutoFCT .navbar.opened {
  background: #ffffff !important;
}
.cid-tw6OutoFCT .nav-item:focus,
.cid-tw6OutoFCT .nav-link:focus {
  outline: none;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tw6OutoFCT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tw6OutoFCT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tw6OutoFCT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tw6OutoFCT .navbar.opened {
  transition: all 0.3s;
}
.cid-tw6OutoFCT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tw6OutoFCT .navbar .navbar-logo img {
  width: auto;
}
.cid-tw6OutoFCT .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tw6OutoFCT .navbar.collapsed {
  justify-content: center;
}
.cid-tw6OutoFCT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tw6OutoFCT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tw6OutoFCT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tw6OutoFCT .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-tw6OutoFCT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tw6OutoFCT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tw6OutoFCT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tw6OutoFCT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tw6OutoFCT .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-tw6OutoFCT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tw6OutoFCT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tw6OutoFCT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tw6OutoFCT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tw6OutoFCT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tw6OutoFCT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tw6OutoFCT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tw6OutoFCT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tw6OutoFCT .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tw6OutoFCT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tw6OutoFCT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tw6OutoFCT .dropdown-item.active,
.cid-tw6OutoFCT .dropdown-item:active {
  background-color: transparent;
}
.cid-tw6OutoFCT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tw6OutoFCT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tw6OutoFCT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tw6OutoFCT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tw6OutoFCT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tw6OutoFCT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tw6OutoFCT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tw6OutoFCT .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tw6OutoFCT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tw6OutoFCT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 0;
  padding-top: 1.5rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tw6OutoFCT .navbar {
    height: 70px;
  }
  .cid-tw6OutoFCT .navbar.opened {
    height: auto;
  }
  .cid-tw6OutoFCT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tw6OutoFCT .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tw6OutoFCT .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-tw6OutoFCT a {
  display: inline;
  font-weight: bold;
}
.cid-tw6OutoFCT img {
  display: inline;
  padding-right: 10px;
}
.cid-tw6OutoFCT .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tw6OutoFCT .dropdown-item:hover {
  color: #8b8d8d !important;
}
@media (max-width: 990px) {
  .cid-tw6OutoFCT .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tw6OutoFCT .collapse .btn {
    margin: 11px 21px 18px;
  }
  .cid-tw6OutoFCT .right-side {
    flex-direction: column;
  }
  .cid-tw6OutoFCT ul {
    margin-left: 0 !important;
  }
}
.cid-tw6OutoFCT .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .cid-tw6OutoFCT .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-tw6OutoFCT .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-tw6OutoFCT .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-tw6OutoFCT .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tw6OutoFCT .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tw6OutoFCT .nav-link:before {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tw6OutoFCT ul {
  margin-left: 15%;
}
.cid-tw6OutoFCT .right-side {
  display: flex;
}
@media (min-width: 990px) and (max-width: 1050px) {
  .cid-tw6OutoFCT ul {
    margin-left: 50px !important;
  }
}
.cid-tw6OutoFCT .btn {
  border-radius: 50px;
}
.cid-tvJ3u9f5Uy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvJ3u9f5Uy .content_block {
  padding: 60px 15px;
  padding-right: 20%;
}
.cid-tvJ3u9f5Uy .content_block:hover .mbr-section-title a {
  color: #61c223 !important;
}
.cid-tvJ3u9f5Uy .card_topic,
.cid-tvJ3u9f5Uy .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-tvJ3u9f5Uy .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #61c223;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tvJ3u9f5Uy .image {
  position: relative;
}
.cid-tvJ3u9f5Uy .image:before {
  content: "";
  position: absolute;
  width: 60%;
  height: 100%;
  right: -1px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff);
  z-index: 1;
  pointer-events: none;
}
.cid-tvJ3u9f5Uy .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tvJ3u9f5Uy .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tvJ3u9f5Uy .mbr-section-btn .btn-secondary-outline:hover,
.cid-tvJ3u9f5Uy .mbr-section-btn .btn-secondary-outline .active,
.cid-tvJ3u9f5Uy .mbr-section-btn .btn-secondary-outline:focus {
  color: #351a44 !important;
}
.cid-tvJ3u9f5Uy .category_content {
  opacity: .8;
}
@media (max-width: 991px) {
  .cid-tvJ3u9f5Uy .content_block {
    padding: 30px 15px;
  }
  .cid-tvJ3u9f5Uy .mbr-figure {
    padding: 0;
  }
  .cid-tvJ3u9f5Uy .image:before {
    width: 100%;
    height: 60%;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.99));
  }
}
.cid-tw2T6FvRuu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tw2T6FvRuu .mbr-section-title {
  color: #1d1d1f;
  text-align: center;
  margin-bottom: 0;
  font-weight: 700;
}
.cid-tw2T6FvRuu .mbr-section-subtitle {
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 0;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tw2T6FvRuu .row {
  align-items: center;
  height: 100%;
}
.cid-tw2T6FvRuu .container {
  max-width: 1100px;
}
.cid-tw2T6FvRuu .wrapper {
  margin: auto;
}
.cid-tw6jE0ADXi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #61c223;
}
.cid-tw6jE0ADXi .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: currentColor;
  margin-right: 1rem;
  transition: all 0.3s;
  transform: rotate(90deg);
}
.cid-tw6jE0ADXi .panel-group {
  border: none;
}
.cid-tw6jE0ADXi .card-header {
  padding: 1.2rem 1rem;
}
@media (max-width: 767px) {
  .cid-tw6jE0ADXi .card-header {
    padding: 1rem 0rem;
  }
}
.cid-tw6jE0ADXi .panel-body {
  padding: 0 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tw6jE0ADXi .panel-body {
    padding: 0rem;
  }
}
.cid-tw6jE0ADXi .content {
  max-width: 500px;
  margin: 5rem auto;
}
.cid-tw6jE0ADXi .img-col {
  padding: 0;
}
.cid-tw6jE0ADXi .img-item {
  height: 100%;
}
.cid-tw6jE0ADXi img {
  height: 100%;
  object-fit: cover;
}
.cid-tw6jE0ADXi .container-fluid {
  padding: 0 1rem;
}
.cid-tw6jE0ADXi .collapsed span {
  transform: rotate(0deg);
}
.cid-tw6jE0ADXi .panel-title {
  display: flex;
  align-items: center;
}
.cid-tw6jE0ADXi .mbri-arrow-up {
  transform: rotate(45deg);
}
.cid-tw6jE0ADXi .panel-title-edit {
  color: #000000;
}
.cid-tw6jE0ADXi .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 10px;
}
.cid-tw6jE0ADXi .card {
  background: white;
  padding: 0rem 1rem;
  border-radius: 10px!important;
}
.cid-tw6jE0ADXi .panel-title-edit,
.cid-tw6jE0ADXi .mbr-iconfont {
  color: #1b2026;
}
.cid-tw6jE0ADXi .panel-text {
  color: #777777;
}
.cid-tw6jE0ADXi H4 {
  color: #ffffff;
}
.cid-tw6jEFGWTh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #61c223;
}
.cid-tw6jEFGWTh .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: currentColor;
  margin-right: 1rem;
  transition: all 0.3s;
  transform: rotate(90deg);
}
.cid-tw6jEFGWTh .panel-group {
  border: none;
}
.cid-tw6jEFGWTh .card-header {
  padding: 1.2rem 1rem;
}
@media (max-width: 767px) {
  .cid-tw6jEFGWTh .card-header {
    padding: 1rem 0rem;
  }
}
.cid-tw6jEFGWTh .panel-body {
  padding: 0 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tw6jEFGWTh .panel-body {
    padding: 0rem;
  }
}
.cid-tw6jEFGWTh .content {
  max-width: 500px;
  margin: 5rem auto;
}
.cid-tw6jEFGWTh .img-col {
  padding: 0;
}
.cid-tw6jEFGWTh .img-item {
  height: 100%;
}
.cid-tw6jEFGWTh img {
  height: 100%;
  object-fit: cover;
}
.cid-tw6jEFGWTh .container-fluid {
  padding: 0 1rem;
}
.cid-tw6jEFGWTh .collapsed span {
  transform: rotate(0deg);
}
.cid-tw6jEFGWTh .panel-title {
  display: flex;
  align-items: center;
}
.cid-tw6jEFGWTh .mbri-arrow-up {
  transform: rotate(45deg);
}
.cid-tw6jEFGWTh .panel-title-edit {
  color: #000000;
}
.cid-tw6jEFGWTh .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 10px;
}
.cid-tw6jEFGWTh .card {
  background: white;
  padding: 0rem 1rem;
  border-radius: 10px!important;
}
.cid-tw6jEFGWTh .panel-title-edit,
.cid-tw6jEFGWTh .mbr-iconfont {
  color: #1b2026;
}
.cid-tw6jEFGWTh .panel-text {
  color: #777777;
}
.cid-tw6jEFGWTh H4 {
  color: #ffffff;
}
.cid-tw6jFgvQLD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #61c223;
}
.cid-tw6jFgvQLD .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: currentColor;
  margin-right: 1rem;
  transition: all 0.3s;
  transform: rotate(90deg);
}
.cid-tw6jFgvQLD .panel-group {
  border: none;
}
.cid-tw6jFgvQLD .card-header {
  padding: 1.2rem 1rem;
}
@media (max-width: 767px) {
  .cid-tw6jFgvQLD .card-header {
    padding: 1rem 0rem;
  }
}
.cid-tw6jFgvQLD .panel-body {
  padding: 0 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tw6jFgvQLD .panel-body {
    padding: 0rem;
  }
}
.cid-tw6jFgvQLD .content {
  max-width: 500px;
  margin: 5rem auto;
}
.cid-tw6jFgvQLD .img-col {
  padding: 0;
}
.cid-tw6jFgvQLD .img-item {
  height: 100%;
}
.cid-tw6jFgvQLD img {
  height: 100%;
  object-fit: cover;
}
.cid-tw6jFgvQLD .container-fluid {
  padding: 0 1rem;
}
.cid-tw6jFgvQLD .collapsed span {
  transform: rotate(0deg);
}
.cid-tw6jFgvQLD .panel-title {
  display: flex;
  align-items: center;
}
.cid-tw6jFgvQLD .mbri-arrow-up {
  transform: rotate(45deg);
}
.cid-tw6jFgvQLD .panel-title-edit {
  color: #000000;
}
.cid-tw6jFgvQLD .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 10px;
}
.cid-tw6jFgvQLD .card {
  background: white;
  padding: 0rem 1rem;
  border-radius: 10px!important;
}
.cid-tw6jFgvQLD .panel-title-edit,
.cid-tw6jFgvQLD .mbr-iconfont {
  color: #1b2026;
}
.cid-tw6jFgvQLD .panel-text {
  color: #777777;
}
.cid-tw6jFgvQLD H4 {
  color: #ffffff;
}
.cid-tw2T8bjb6W {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tw2T8bjb6W .image-block {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.cid-tw2T8bjb6W .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-tw2T8bjb6W .image-block:hover:before {
  opacity: 0.4;
}
.cid-tw2T8bjb6W .image-block:hover .wrap {
  opacity: 1;
}
.cid-tw2T8bjb6W .image-block:hover img {
  transform: scale(1.05);
}
.cid-tw2T8bjb6W .row {
  justify-content: center;
  padding: 0.2rem;
}
.cid-tw2T8bjb6W h4 {
  letter-spacing: 2px;
}
.cid-tw2T8bjb6W figcaption {
  position: relative;
}
.cid-tw2T8bjb6W figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tw2T8bjb6W img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-tw2T8bjb6W .col-md-4 {
  padding: 0.2rem;
}
@media (min-width: 992px) {
  .cid-tw2T8bjb6W .col-lg-25 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0.2rem;
  }
  .cid-tw2T8bjb6W .image-block {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-tw2T8bjb6W .image-block:before {
    opacity: 0.4;
  }
  .cid-tw2T8bjb6W .image-block .wrap {
    opacity: 1;
  }
}
.cid-tw2TaGOqGW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tw2TaGOqGW .mbr-section-title {
  color: #1d1d1f;
  text-align: center;
  margin-bottom: 0;
  font-weight: 700;
}
.cid-tw2TaGOqGW .mbr-section-subtitle {
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 0;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tw2TaGOqGW .row {
  align-items: center;
  height: 100%;
}
.cid-tw2TaGOqGW .container {
  max-width: 1100px;
}
.cid-tw2TaGOqGW .wrapper {
  margin: auto;
}
.cid-tw2T9c6e4g {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tw2T9c6e4g .image-block {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.cid-tw2T9c6e4g .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-tw2T9c6e4g .image-block:hover:before {
  opacity: 0.4;
}
.cid-tw2T9c6e4g .image-block:hover .wrap {
  opacity: 1;
}
.cid-tw2T9c6e4g .image-block:hover img {
  transform: scale(1.05);
}
.cid-tw2T9c6e4g .row {
  justify-content: center;
  padding: 0.2rem;
}
.cid-tw2T9c6e4g h4 {
  letter-spacing: 2px;
}
.cid-tw2T9c6e4g figcaption {
  position: relative;
}
.cid-tw2T9c6e4g figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tw2T9c6e4g img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-tw2T9c6e4g .col-md-4 {
  padding: 0.2rem;
}
@media (min-width: 992px) {
  .cid-tw2T9c6e4g .col-lg-25 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0.2rem;
  }
  .cid-tw2T9c6e4g .image-block {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-tw2T9c6e4g .image-block:before {
    opacity: 0.4;
  }
  .cid-tw2T9c6e4g .image-block .wrap {
    opacity: 1;
  }
}
.cid-tw2ylTsk5k {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tw2ylTsk5k .content {
    text-align: center;
  }
  .cid-tw2ylTsk5k .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tw2ylTsk5k .img-logo img {
  height: 6rem;
}
.cid-tw2ylTsk5k .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tw2ylTsk5k .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #232323;
}
.cid-tw2ylTsk5k .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tw2ylTsk5k .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-tw2ylTsk5k .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tw2ylTsk5k .social-list a:hover {
  opacity: 1;
}
.cid-tw2ylTsk5k .form-control {
  min-height: auto;
  width: 100%;
  color: #232323 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #232323;
}
.cid-tw2ylTsk5k .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-tw2ylTsk5k input::-webkit-input-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k input::-moz-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k textarea::-moz-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k .list {
  list-style-type: none;
  padding: 0;
}
.cid-tw2ylTsk5k .list li {
  padding-bottom: .5rem;
}
.cid-tw2ylTsk5k .list li:last-child {
  padding-bottom: 0;
}
.cid-tw2ylTsk5k .mbr-footer-list,
.cid-tw2ylTsk5k .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-tw2ylTsk5k .mbr-footer-list,
  .cid-tw2ylTsk5k .form-text,
  .cid-tw2ylTsk5k .footer-title,
  .cid-tw2ylTsk5k .footer-main-title,
  .cid-tw2ylTsk5k .form-text,
  .cid-tw2ylTsk5k .list {
    text-align: center !important;
  }
  .cid-tw2ylTsk5k .mbr-form,
  .cid-tw2ylTsk5k .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-tw2ylTsk5k .footer-title {
  text-align: right;
  color: #232323;
}
.cid-tw2ylTsk5k .mbr-footer-list UL {
  text-align: right;
  color: #232323;
}
.cid-tw2ylTsk5k .footer-main-title {
  color: #232323;
}
.cid-tvJFDkqYqJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvJFDkqYqJ .content_block {
  padding: 60px 15px;
  padding-right: 20%;
}
.cid-tvJFDkqYqJ .content_block:hover .mbr-section-title a {
  color: #61c223 !important;
}
.cid-tvJFDkqYqJ .card_topic,
.cid-tvJFDkqYqJ .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-tvJFDkqYqJ .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #61c223;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tvJFDkqYqJ .image {
  position: relative;
}
.cid-tvJFDkqYqJ .image:before {
  content: "";
  position: absolute;
  width: 60%;
  height: 100%;
  right: -1px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff);
  z-index: 1;
  pointer-events: none;
}
.cid-tvJFDkqYqJ .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tvJFDkqYqJ .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tvJFDkqYqJ .mbr-section-btn .btn-secondary-outline:hover,
.cid-tvJFDkqYqJ .mbr-section-btn .btn-secondary-outline .active,
.cid-tvJFDkqYqJ .mbr-section-btn .btn-secondary-outline:focus {
  color: #351a44 !important;
}
.cid-tvJFDkqYqJ .category_content {
  opacity: .8;
}
@media (max-width: 991px) {
  .cid-tvJFDkqYqJ .content_block {
    padding: 30px 15px;
  }
  .cid-tvJFDkqYqJ .mbr-figure {
    padding: 0;
  }
  .cid-tvJFDkqYqJ .image:before {
    width: 100%;
    height: 60%;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.99));
  }
}
.cid-tvs2YW3OL1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvs2YW3OL1 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tvs2YW3OL1 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tvs2YW3OL1 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tvs2YW3OL1 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tvs2YW3OL1 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tvs2YW3OL1 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tvs2YW3OL1 .carousel-control,
.cid-tvs2YW3OL1 .close {
  background: #1b1b1b;
}
.cid-tvs2YW3OL1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tvs2YW3OL1 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tvs2YW3OL1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tvs2YW3OL1 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tvs2YW3OL1 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tvs2YW3OL1 .close::before {
  content: '\e91a';
}
.cid-tvs2YW3OL1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tvs2YW3OL1 .carousel-control {
  display: flex;
  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-tvs2YW3OL1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tvs2YW3OL1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tvs2YW3OL1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tvs2YW3OL1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tvs2YW3OL1 .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-tvs2YW3OL1 .carousel-indicators li.active,
.cid-tvs2YW3OL1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tvs2YW3OL1 .carousel-indicators li::after,
.cid-tvs2YW3OL1 .carousel-indicators li::before {
  content: none;
}
.cid-tvs2YW3OL1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tvs2YW3OL1 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tvs2YW3OL1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tvs2YW3OL1 .carousel-indicators {
    display: none;
  }
}
.cid-tvs2YW3OL1 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tvs2YW3OL1 .carousel-inner > .active {
  display: block;
}
.cid-tvs2YW3OL1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tvs2YW3OL1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tvs2YW3OL1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tvs2YW3OL1 .carousel-control,
  .cid-tvs2YW3OL1 .carousel-indicators,
  .cid-tvs2YW3OL1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tvs2YW3OL1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tvs2YW3OL1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tvs2YW3OL1 .carousel-indicators .active,
.cid-tvs2YW3OL1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tvs2YW3OL1 .carousel-indicators .active {
  background: #fff;
}
.cid-tvs2YW3OL1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tvs2YW3OL1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tvs2YW3OL1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tvs2YW3OL1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tvs2YW3OL1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tvs2YW3OL1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tvs2YW3OL1 .carousel {
  width: 100%;
}
.cid-tvs2YW3OL1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tvs2YW3OL1 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tvs2YW3OL1 .modal.fade .modal-dialog,
.cid-tvs2YW3OL1 .modal.in .modal-dialog {
  transform: none;
}
.cid-tvs2YW3OL1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tvs2YW3OL1 H6 {
  text-align: center;
}
.cid-tvs2YW3OL1 .mbr-section-title {
  color: #2e6b75;
}
.cid-tvs2YW3OL1 .mbr-section-subtitle {
  color: #6c7577;
}
.cid-tvs2YW3OL1 .mbr-item-subtitle {
  color: #6c7577;
}
.cid-tvs2YW3OL1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvs2YW3OL1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvJj6WrWEd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvJj6WrWEd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvJj6WrWEd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvJj6WrWEd .container {
  max-width: 1140px;
}
.cid-tvJj6WrWEd .row {
  align-items: stretch;
}
.cid-tvJj6WrWEd .col-title {
  position: relative;
  padding: 10px;
  flex-grow: 1;
}
.cid-tvJj6WrWEd .col-text {
  padding: 10px;
  flex-grow: 1;
}
.cid-tvJj6WrWEd .title-container {
  position: sticky;
  top: 57px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tvJj6WrWEd .title-container {
    position: static;
  }
}
.cid-tvJj6WrWEd .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-tvJj6WrWEd .item-text {
  width: 100%;
  margin-bottom: 20px;
}
.cid-tvJj6WrWEd .item-text:not(:first-child) {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .cid-tvJj6WrWEd .item-text:not(:first-child) {
    margin-bottom: 0;
  }
}
.cid-tvJj6WrWEd .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 15px !important;
  width: 100%;
}
.cid-tvJj6WrWEd .mbr-text {
  color: #1d191f;
  margin-bottom: 0;
  width: 100%;
}
.cid-tvJEfIQyqc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvJEfIQyqc .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tvJEfIQyqc .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tvJEfIQyqc .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tvJEfIQyqc .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tvJEfIQyqc .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tvJEfIQyqc .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tvJEfIQyqc .carousel-control,
.cid-tvJEfIQyqc .close {
  background: #1b1b1b;
}
.cid-tvJEfIQyqc .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tvJEfIQyqc .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tvJEfIQyqc .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tvJEfIQyqc .carousel-control-next span {
  margin-left: 5px;
}
.cid-tvJEfIQyqc .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tvJEfIQyqc .close::before {
  content: '\e91a';
}
.cid-tvJEfIQyqc .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tvJEfIQyqc .carousel-control {
  display: flex;
  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-tvJEfIQyqc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tvJEfIQyqc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tvJEfIQyqc .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tvJEfIQyqc .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tvJEfIQyqc .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-tvJEfIQyqc .carousel-indicators li.active,
.cid-tvJEfIQyqc .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tvJEfIQyqc .carousel-indicators li::after,
.cid-tvJEfIQyqc .carousel-indicators li::before {
  content: none;
}
.cid-tvJEfIQyqc .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tvJEfIQyqc .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tvJEfIQyqc .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tvJEfIQyqc .carousel-indicators {
    display: none;
  }
}
.cid-tvJEfIQyqc .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tvJEfIQyqc .carousel-inner > .active {
  display: block;
}
.cid-tvJEfIQyqc .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tvJEfIQyqc .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tvJEfIQyqc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tvJEfIQyqc .carousel-control,
  .cid-tvJEfIQyqc .carousel-indicators,
  .cid-tvJEfIQyqc .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tvJEfIQyqc .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tvJEfIQyqc .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tvJEfIQyqc .carousel-indicators .active,
.cid-tvJEfIQyqc .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tvJEfIQyqc .carousel-indicators .active {
  background: #fff;
}
.cid-tvJEfIQyqc .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tvJEfIQyqc .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tvJEfIQyqc .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tvJEfIQyqc .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tvJEfIQyqc .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tvJEfIQyqc .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tvJEfIQyqc .carousel {
  width: 100%;
}
.cid-tvJEfIQyqc .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tvJEfIQyqc .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tvJEfIQyqc .modal.fade .modal-dialog,
.cid-tvJEfIQyqc .modal.in .modal-dialog {
  transform: none;
}
.cid-tvJEfIQyqc .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tvJEfIQyqc H6 {
  text-align: center;
}
.cid-tvJEfIQyqc .mbr-section-title {
  color: #2e6b75;
}
.cid-tvJEfIQyqc .mbr-section-subtitle {
  color: #6c7577;
}
.cid-tvJEfIQyqc .mbr-item-subtitle {
  color: #6c7577;
}
.cid-tvJEfIQyqc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvJEfIQyqc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tw2ylTsk5k {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tw2ylTsk5k .content {
    text-align: center;
  }
  .cid-tw2ylTsk5k .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tw2ylTsk5k .img-logo img {
  height: 6rem;
}
.cid-tw2ylTsk5k .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tw2ylTsk5k .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #232323;
}
.cid-tw2ylTsk5k .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tw2ylTsk5k .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-tw2ylTsk5k .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tw2ylTsk5k .social-list a:hover {
  opacity: 1;
}
.cid-tw2ylTsk5k .form-control {
  min-height: auto;
  width: 100%;
  color: #232323 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #232323;
}
.cid-tw2ylTsk5k .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-tw2ylTsk5k input::-webkit-input-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k input::-moz-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k textarea::-moz-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k .list {
  list-style-type: none;
  padding: 0;
}
.cid-tw2ylTsk5k .list li {
  padding-bottom: .5rem;
}
.cid-tw2ylTsk5k .list li:last-child {
  padding-bottom: 0;
}
.cid-tw2ylTsk5k .mbr-footer-list,
.cid-tw2ylTsk5k .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-tw2ylTsk5k .mbr-footer-list,
  .cid-tw2ylTsk5k .form-text,
  .cid-tw2ylTsk5k .footer-title,
  .cid-tw2ylTsk5k .footer-main-title,
  .cid-tw2ylTsk5k .form-text,
  .cid-tw2ylTsk5k .list {
    text-align: center !important;
  }
  .cid-tw2ylTsk5k .mbr-form,
  .cid-tw2ylTsk5k .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-tw2ylTsk5k .footer-title {
  text-align: right;
  color: #232323;
}
.cid-tw2ylTsk5k .mbr-footer-list UL {
  text-align: right;
  color: #232323;
}
.cid-tw2ylTsk5k .footer-main-title {
  color: #232323;
}
.cid-tw6OutoFCT .navbar-dropdown {
  position: relative !important;
}
.cid-tw6OutoFCT .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-tw6OutoFCT .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tw6OutoFCT .dropdown-item:hover,
.cid-tw6OutoFCT .dropdown-item:focus {
  color: #351a44 !important;
}
.cid-tw6OutoFCT .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tw6OutoFCT .nav-link {
  position: relative;
  padding: 0;
}
.cid-tw6OutoFCT .container {
  display: flex;
  margin: auto;
}
.cid-tw6OutoFCT .iconfont-wrapper {
  color: #1d2024 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tw6OutoFCT .dropdown-menu,
.cid-tw6OutoFCT .navbar.opened {
  background: #ffffff !important;
}
.cid-tw6OutoFCT .nav-item:focus,
.cid-tw6OutoFCT .nav-link:focus {
  outline: none;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tw6OutoFCT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tw6OutoFCT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tw6OutoFCT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tw6OutoFCT .navbar.opened {
  transition: all 0.3s;
}
.cid-tw6OutoFCT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tw6OutoFCT .navbar .navbar-logo img {
  width: auto;
}
.cid-tw6OutoFCT .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tw6OutoFCT .navbar.collapsed {
  justify-content: center;
}
.cid-tw6OutoFCT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tw6OutoFCT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tw6OutoFCT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tw6OutoFCT .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-tw6OutoFCT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tw6OutoFCT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tw6OutoFCT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tw6OutoFCT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tw6OutoFCT .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-tw6OutoFCT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tw6OutoFCT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tw6OutoFCT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tw6OutoFCT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tw6OutoFCT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tw6OutoFCT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tw6OutoFCT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tw6OutoFCT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tw6OutoFCT .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tw6OutoFCT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tw6OutoFCT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tw6OutoFCT .dropdown-item.active,
.cid-tw6OutoFCT .dropdown-item:active {
  background-color: transparent;
}
.cid-tw6OutoFCT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tw6OutoFCT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tw6OutoFCT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tw6OutoFCT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tw6OutoFCT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tw6OutoFCT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tw6OutoFCT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tw6OutoFCT .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tw6OutoFCT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tw6OutoFCT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 0;
  padding-top: 1.5rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tw6OutoFCT .navbar {
    height: 70px;
  }
  .cid-tw6OutoFCT .navbar.opened {
    height: auto;
  }
  .cid-tw6OutoFCT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tw6OutoFCT .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tw6OutoFCT .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-tw6OutoFCT a {
  display: inline;
  font-weight: bold;
}
.cid-tw6OutoFCT img {
  display: inline;
  padding-right: 10px;
}
.cid-tw6OutoFCT .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tw6OutoFCT .dropdown-item:hover {
  color: #8b8d8d !important;
}
@media (max-width: 990px) {
  .cid-tw6OutoFCT .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tw6OutoFCT .collapse .btn {
    margin: 11px 21px 18px;
  }
  .cid-tw6OutoFCT .right-side {
    flex-direction: column;
  }
  .cid-tw6OutoFCT ul {
    margin-left: 0 !important;
  }
}
.cid-tw6OutoFCT .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .cid-tw6OutoFCT .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-tw6OutoFCT .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-tw6OutoFCT .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-tw6OutoFCT .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tw6OutoFCT .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tw6OutoFCT .nav-link:before {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tw6OutoFCT ul {
  margin-left: 15%;
}
.cid-tw6OutoFCT .right-side {
  display: flex;
}
@media (min-width: 990px) and (max-width: 1050px) {
  .cid-tw6OutoFCT ul {
    margin-left: 50px !important;
  }
}
.cid-tw6OutoFCT .btn {
  border-radius: 50px;
}
.cid-twoppOXMR7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-twoppOXMR7 .mbr-section-title {
  color: #1d1d1f;
  text-align: center;
  margin-bottom: 0;
  font-weight: 700;
}
.cid-twoppOXMR7 .mbr-section-subtitle {
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 0;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-twoppOXMR7 .row {
  align-items: center;
  height: 100%;
}
.cid-twoppOXMR7 .container {
  max-width: 1100px;
}
.cid-twoppOXMR7 .wrapper {
  margin: auto;
}
.cid-twopo5xhb9 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-twopo5xhb9 .image-block {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.cid-twopo5xhb9 .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-twopo5xhb9 .image-block:hover:before {
  opacity: 0.4;
}
.cid-twopo5xhb9 .image-block:hover .wrap {
  opacity: 1;
}
.cid-twopo5xhb9 .image-block:hover img {
  transform: scale(1.05);
}
.cid-twopo5xhb9 .row {
  justify-content: center;
  padding: 0.2rem;
}
.cid-twopo5xhb9 h4 {
  letter-spacing: 2px;
}
.cid-twopo5xhb9 figcaption {
  position: relative;
}
.cid-twopo5xhb9 figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-twopo5xhb9 img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-twopo5xhb9 .col-md-4 {
  padding: 0.2rem;
}
@media (min-width: 992px) {
  .cid-twopo5xhb9 .col-lg-25 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0.2rem;
  }
  .cid-twopo5xhb9 .image-block {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-twopo5xhb9 .image-block:before {
    opacity: 0.4;
  }
  .cid-twopo5xhb9 .image-block .wrap {
    opacity: 1;
  }
}
.cid-twopoFuFMh {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-twopoFuFMh .image-block {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.cid-twopoFuFMh .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-twopoFuFMh .image-block:hover:before {
  opacity: 0.4;
}
.cid-twopoFuFMh .image-block:hover .wrap {
  opacity: 1;
}
.cid-twopoFuFMh .image-block:hover img {
  transform: scale(1.05);
}
.cid-twopoFuFMh .row {
  justify-content: center;
  padding: 0.2rem;
}
.cid-twopoFuFMh h4 {
  letter-spacing: 2px;
}
.cid-twopoFuFMh figcaption {
  position: relative;
}
.cid-twopoFuFMh figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-twopoFuFMh img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-twopoFuFMh .col-md-4 {
  padding: 0.2rem;
}
@media (min-width: 992px) {
  .cid-twopoFuFMh .col-lg-25 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0.2rem;
  }
  .cid-twopoFuFMh .image-block {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-twopoFuFMh .image-block:before {
    opacity: 0.4;
  }
  .cid-twopoFuFMh .image-block .wrap {
    opacity: 1;
  }
}
.cid-tw6gvTK5D3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #61c223;
}
.cid-tw6gvTK5D3 .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: currentColor;
  margin-right: 1rem;
  transition: all 0.3s;
  transform: rotate(90deg);
}
.cid-tw6gvTK5D3 .panel-group {
  border: none;
}
.cid-tw6gvTK5D3 .card-header {
  padding: 1.2rem 1rem;
}
@media (max-width: 767px) {
  .cid-tw6gvTK5D3 .card-header {
    padding: 1rem 0rem;
  }
}
.cid-tw6gvTK5D3 .panel-body {
  padding: 0 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tw6gvTK5D3 .panel-body {
    padding: 0rem;
  }
}
.cid-tw6gvTK5D3 .content {
  max-width: 500px;
  margin: 5rem auto;
}
.cid-tw6gvTK5D3 .img-col {
  padding: 0;
}
.cid-tw6gvTK5D3 .img-item {
  height: 100%;
}
.cid-tw6gvTK5D3 img {
  height: 100%;
  object-fit: cover;
}
.cid-tw6gvTK5D3 .container-fluid {
  padding: 0 1rem;
}
.cid-tw6gvTK5D3 .collapsed span {
  transform: rotate(0deg);
}
.cid-tw6gvTK5D3 .panel-title {
  display: flex;
  align-items: center;
}
.cid-tw6gvTK5D3 .mbri-arrow-up {
  transform: rotate(45deg);
}
.cid-tw6gvTK5D3 .panel-title-edit {
  color: #000000;
}
.cid-tw6gvTK5D3 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 10px;
}
.cid-tw6gvTK5D3 .card {
  background: white;
  padding: 0rem 1rem;
  border-radius: 10px!important;
}
.cid-tw6gvTK5D3 .panel-title-edit,
.cid-tw6gvTK5D3 .mbr-iconfont {
  color: #1b2026;
}
.cid-tw6gvTK5D3 .panel-text {
  color: #777777;
}
.cid-tw6gvTK5D3 H4 {
  color: #ffffff;
}
.cid-tw6iAMdy7R {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #61c223;
}
.cid-tw6iAMdy7R .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: currentColor;
  margin-right: 1rem;
  transition: all 0.3s;
  transform: rotate(90deg);
}
.cid-tw6iAMdy7R .panel-group {
  border: none;
}
.cid-tw6iAMdy7R .card-header {
  padding: 1.2rem 1rem;
}
@media (max-width: 767px) {
  .cid-tw6iAMdy7R .card-header {
    padding: 1rem 0rem;
  }
}
.cid-tw6iAMdy7R .panel-body {
  padding: 0 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tw6iAMdy7R .panel-body {
    padding: 0rem;
  }
}
.cid-tw6iAMdy7R .content {
  max-width: 500px;
  margin: 5rem auto;
}
.cid-tw6iAMdy7R .img-col {
  padding: 0;
}
.cid-tw6iAMdy7R .img-item {
  height: 100%;
}
.cid-tw6iAMdy7R img {
  height: 100%;
  object-fit: cover;
}
.cid-tw6iAMdy7R .container-fluid {
  padding: 0 1rem;
}
.cid-tw6iAMdy7R .collapsed span {
  transform: rotate(0deg);
}
.cid-tw6iAMdy7R .panel-title {
  display: flex;
  align-items: center;
}
.cid-tw6iAMdy7R .mbri-arrow-up {
  transform: rotate(45deg);
}
.cid-tw6iAMdy7R .panel-title-edit {
  color: #000000;
}
.cid-tw6iAMdy7R .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 10px;
}
.cid-tw6iAMdy7R .card {
  background: white;
  padding: 0rem 1rem;
  border-radius: 10px!important;
}
.cid-tw6iAMdy7R .panel-title-edit,
.cid-tw6iAMdy7R .mbr-iconfont {
  color: #1b2026;
}
.cid-tw6iAMdy7R .panel-text {
  color: #777777;
}
.cid-tw6iAMdy7R H4 {
  color: #ffffff;
}
.cid-tw6iBXmun4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #61c223;
}
.cid-tw6iBXmun4 .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: currentColor;
  margin-right: 1rem;
  transition: all 0.3s;
  transform: rotate(90deg);
}
.cid-tw6iBXmun4 .panel-group {
  border: none;
}
.cid-tw6iBXmun4 .card-header {
  padding: 1.2rem 1rem;
}
@media (max-width: 767px) {
  .cid-tw6iBXmun4 .card-header {
    padding: 1rem 0rem;
  }
}
.cid-tw6iBXmun4 .panel-body {
  padding: 0 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tw6iBXmun4 .panel-body {
    padding: 0rem;
  }
}
.cid-tw6iBXmun4 .content {
  max-width: 500px;
  margin: 5rem auto;
}
.cid-tw6iBXmun4 .img-col {
  padding: 0;
}
.cid-tw6iBXmun4 .img-item {
  height: 100%;
}
.cid-tw6iBXmun4 img {
  height: 100%;
  object-fit: cover;
}
.cid-tw6iBXmun4 .container-fluid {
  padding: 0 1rem;
}
.cid-tw6iBXmun4 .collapsed span {
  transform: rotate(0deg);
}
.cid-tw6iBXmun4 .panel-title {
  display: flex;
  align-items: center;
}
.cid-tw6iBXmun4 .mbri-arrow-up {
  transform: rotate(45deg);
}
.cid-tw6iBXmun4 .panel-title-edit {
  color: #000000;
}
.cid-tw6iBXmun4 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 10px;
}
.cid-tw6iBXmun4 .card {
  background: white;
  padding: 0rem 1rem;
  border-radius: 10px!important;
}
.cid-tw6iBXmun4 .panel-title-edit,
.cid-tw6iBXmun4 .mbr-iconfont {
  color: #1b2026;
}
.cid-tw6iBXmun4 .panel-text {
  color: #777777;
}
.cid-tw6iBXmun4 H4 {
  color: #ffffff;
}
.cid-tw2ylTsk5k {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tw2ylTsk5k .content {
    text-align: center;
  }
  .cid-tw2ylTsk5k .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tw2ylTsk5k .img-logo img {
  height: 6rem;
}
.cid-tw2ylTsk5k .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tw2ylTsk5k .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #232323;
}
.cid-tw2ylTsk5k .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tw2ylTsk5k .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-tw2ylTsk5k .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tw2ylTsk5k .social-list a:hover {
  opacity: 1;
}
.cid-tw2ylTsk5k .form-control {
  min-height: auto;
  width: 100%;
  color: #232323 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #232323;
}
.cid-tw2ylTsk5k .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-tw2ylTsk5k input::-webkit-input-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k input::-moz-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k textarea::-moz-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k .list {
  list-style-type: none;
  padding: 0;
}
.cid-tw2ylTsk5k .list li {
  padding-bottom: .5rem;
}
.cid-tw2ylTsk5k .list li:last-child {
  padding-bottom: 0;
}
.cid-tw2ylTsk5k .mbr-footer-list,
.cid-tw2ylTsk5k .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-tw2ylTsk5k .mbr-footer-list,
  .cid-tw2ylTsk5k .form-text,
  .cid-tw2ylTsk5k .footer-title,
  .cid-tw2ylTsk5k .footer-main-title,
  .cid-tw2ylTsk5k .form-text,
  .cid-tw2ylTsk5k .list {
    text-align: center !important;
  }
  .cid-tw2ylTsk5k .mbr-form,
  .cid-tw2ylTsk5k .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-tw2ylTsk5k .footer-title {
  text-align: right;
  color: #232323;
}
.cid-tw2ylTsk5k .mbr-footer-list UL {
  text-align: right;
  color: #232323;
}
.cid-tw2ylTsk5k .footer-main-title {
  color: #232323;
}
.cid-tw6OutoFCT .navbar-dropdown {
  position: relative !important;
}
.cid-tw6OutoFCT .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-tw6OutoFCT .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tw6OutoFCT .dropdown-item:hover,
.cid-tw6OutoFCT .dropdown-item:focus {
  color: #351a44 !important;
}
.cid-tw6OutoFCT .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tw6OutoFCT .nav-link {
  position: relative;
  padding: 0;
}
.cid-tw6OutoFCT .container {
  display: flex;
  margin: auto;
}
.cid-tw6OutoFCT .iconfont-wrapper {
  color: #1d2024 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tw6OutoFCT .dropdown-menu,
.cid-tw6OutoFCT .navbar.opened {
  background: #ffffff !important;
}
.cid-tw6OutoFCT .nav-item:focus,
.cid-tw6OutoFCT .nav-link:focus {
  outline: none;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tw6OutoFCT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tw6OutoFCT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tw6OutoFCT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tw6OutoFCT .navbar.opened {
  transition: all 0.3s;
}
.cid-tw6OutoFCT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tw6OutoFCT .navbar .navbar-logo img {
  width: auto;
}
.cid-tw6OutoFCT .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tw6OutoFCT .navbar.collapsed {
  justify-content: center;
}
.cid-tw6OutoFCT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tw6OutoFCT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tw6OutoFCT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tw6OutoFCT .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-tw6OutoFCT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tw6OutoFCT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tw6OutoFCT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tw6OutoFCT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tw6OutoFCT .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-tw6OutoFCT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tw6OutoFCT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tw6OutoFCT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tw6OutoFCT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tw6OutoFCT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tw6OutoFCT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tw6OutoFCT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tw6OutoFCT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tw6OutoFCT .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tw6OutoFCT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tw6OutoFCT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tw6OutoFCT .dropdown-item.active,
.cid-tw6OutoFCT .dropdown-item:active {
  background-color: transparent;
}
.cid-tw6OutoFCT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tw6OutoFCT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tw6OutoFCT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tw6OutoFCT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tw6OutoFCT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tw6OutoFCT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tw6OutoFCT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tw6OutoFCT .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tw6OutoFCT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tw6OutoFCT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 0;
  padding-top: 1.5rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tw6OutoFCT .navbar {
    height: 70px;
  }
  .cid-tw6OutoFCT .navbar.opened {
    height: auto;
  }
  .cid-tw6OutoFCT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tw6OutoFCT .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tw6OutoFCT .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-tw6OutoFCT a {
  display: inline;
  font-weight: bold;
}
.cid-tw6OutoFCT img {
  display: inline;
  padding-right: 10px;
}
.cid-tw6OutoFCT .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tw6OutoFCT .dropdown-item:hover {
  color: #8b8d8d !important;
}
@media (max-width: 990px) {
  .cid-tw6OutoFCT .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tw6OutoFCT .collapse .btn {
    margin: 11px 21px 18px;
  }
  .cid-tw6OutoFCT .right-side {
    flex-direction: column;
  }
  .cid-tw6OutoFCT ul {
    margin-left: 0 !important;
  }
}
.cid-tw6OutoFCT .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .cid-tw6OutoFCT .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-tw6OutoFCT .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-tw6OutoFCT .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-tw6OutoFCT .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tw6OutoFCT .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tw6OutoFCT .nav-link:before {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tw6OutoFCT ul {
  margin-left: 15%;
}
.cid-tw6OutoFCT .right-side {
  display: flex;
}
@media (min-width: 990px) and (max-width: 1050px) {
  .cid-tw6OutoFCT ul {
    margin-left: 50px !important;
  }
}
.cid-tw6OutoFCT .btn {
  border-radius: 50px;
}
.cid-tvKcEIlHwQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvKcEIlHwQ .content_block {
  padding: 60px 15px;
  padding-right: 20%;
}
.cid-tvKcEIlHwQ .content_block:hover .mbr-section-title a {
  color: #61c223 !important;
}
.cid-tvKcEIlHwQ .card_topic,
.cid-tvKcEIlHwQ .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-tvKcEIlHwQ .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #61c223;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tvKcEIlHwQ .image {
  position: relative;
}
.cid-tvKcEIlHwQ .image:before {
  content: "";
  position: absolute;
  width: 60%;
  height: 100%;
  right: -1px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff);
  z-index: 1;
  pointer-events: none;
}
.cid-tvKcEIlHwQ .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tvKcEIlHwQ .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tvKcEIlHwQ .mbr-section-btn .btn-secondary-outline:hover,
.cid-tvKcEIlHwQ .mbr-section-btn .btn-secondary-outline .active,
.cid-tvKcEIlHwQ .mbr-section-btn .btn-secondary-outline:focus {
  color: #351a44 !important;
}
.cid-tvKcEIlHwQ .category_content {
  opacity: .8;
}
@media (max-width: 991px) {
  .cid-tvKcEIlHwQ .content_block {
    padding: 30px 15px;
  }
  .cid-tvKcEIlHwQ .mbr-figure {
    padding: 0;
  }
  .cid-tvKcEIlHwQ .image:before {
    width: 100%;
    height: 60%;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.99));
  }
}
.cid-tvKhDxSAdY {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tvKhDxSAdY .google-map {
  height: 25rem;
  position: relative;
}
.cid-tvKhDxSAdY .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tvKhDxSAdY .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tvKhDxSAdY .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tvKhDxSAdY .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tvKhDxSAdY .wrapper {
  margin-top: -10rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: 40px;
  border-collapse: separate;
  -webkit-perspective: 1px;
  perspective: 1px;
  overflow: hidden;
}
.cid-tvKhDxSAdY .wrapper .row {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-radius: 40px;
  border-collapse: separate;
  -webkit-perspective: 1px;
  perspective: 1px;
}
.cid-tvKhDxSAdY .wrapper .row .btn {
  border-radius: 30px;
  padding: 0.8rem 3rem !important;
}
.cid-tvKhDxSAdY .wrapper .row .title {
  color: #351a44;
}
.cid-tvKhDxSAdY .wrapper .form-container {
  padding: 3rem;
  border-radius: 40px;
  border-collapse: separate;
  -webkit-perspective: 1px;
  perspective: 1px;
  overflow: hidden;
}
.cid-tvKhDxSAdY .content-panel {
  padding: 3rem;
  background: linear-gradient(45deg, #ffffff, #ffffff);
  height: 100%;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  overflow: hidden;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cid-tvKhDxSAdY .mbr-text {
  color: #170d38;
}
.cid-tvKhDxSAdY .form-control {
  border-radius: 10px !important;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  min-height: 40px;
}
.cid-tvKhDxSAdY textarea.form-control {
  min-height: 170px;
}
.cid-tvKhDxSAdY .social-list {
  margin-top: auto;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.cid-tvKhDxSAdY .social-list .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #fff;
}
.cid-tvKhDxSAdY .social-list .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
  border-style: dotted;
}
.cid-tvKhDxSAdY .social-list .soc-item {
  margin: 15px 3px 0px 3px;
}
.cid-tvKhDxSAdY .social-list a {
  margin: 0;
  opacity: 0.7;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tvKhDxSAdY .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tvKhDxSAdY .container {
    max-width: 80% !important;
  }
  .cid-tvKhDxSAdY .wrapper {
    margin-top: 0;
    border-radius: 40px;
  }
  .cid-tvKhDxSAdY .wrapper .main-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tvKhDxSAdY .wrapper .main-row .text-block .content-panel {
    border-radius: 0 0 30px 30px !important;
  }
  .cid-tvKhDxSAdY .wrapper .main-row .text-block .content-panel .social-list {
    margin-left: auto;
    margin-right: auto;
  }
  .cid-tvKhDxSAdY .form-container {
    border-radius: 30px 30px 0 0 !important;
  }
}
.cid-tvKhDxSAdY .mbr-title {
  color: #170d38;
}
.cid-tw2ylTsk5k {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tw2ylTsk5k .content {
    text-align: center;
  }
  .cid-tw2ylTsk5k .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tw2ylTsk5k .img-logo img {
  height: 6rem;
}
.cid-tw2ylTsk5k .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tw2ylTsk5k .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #232323;
}
.cid-tw2ylTsk5k .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tw2ylTsk5k .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-tw2ylTsk5k .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tw2ylTsk5k .social-list a:hover {
  opacity: 1;
}
.cid-tw2ylTsk5k .form-control {
  min-height: auto;
  width: 100%;
  color: #232323 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #232323;
}
.cid-tw2ylTsk5k .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-tw2ylTsk5k input::-webkit-input-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k input::-moz-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k textarea::-moz-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k .list {
  list-style-type: none;
  padding: 0;
}
.cid-tw2ylTsk5k .list li {
  padding-bottom: .5rem;
}
.cid-tw2ylTsk5k .list li:last-child {
  padding-bottom: 0;
}
.cid-tw2ylTsk5k .mbr-footer-list,
.cid-tw2ylTsk5k .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-tw2ylTsk5k .mbr-footer-list,
  .cid-tw2ylTsk5k .form-text,
  .cid-tw2ylTsk5k .footer-title,
  .cid-tw2ylTsk5k .footer-main-title,
  .cid-tw2ylTsk5k .form-text,
  .cid-tw2ylTsk5k .list {
    text-align: center !important;
  }
  .cid-tw2ylTsk5k .mbr-form,
  .cid-tw2ylTsk5k .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-tw2ylTsk5k .footer-title {
  text-align: right;
  color: #232323;
}
.cid-tw2ylTsk5k .mbr-footer-list UL {
  text-align: right;
  color: #232323;
}
.cid-tw2ylTsk5k .footer-main-title {
  color: #232323;
}
.cid-tw6OutoFCT .navbar-dropdown {
  position: relative !important;
}
.cid-tw6OutoFCT .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-tw6OutoFCT .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tw6OutoFCT .dropdown-item:hover,
.cid-tw6OutoFCT .dropdown-item:focus {
  color: #351a44 !important;
}
.cid-tw6OutoFCT .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tw6OutoFCT .nav-link {
  position: relative;
  padding: 0;
}
.cid-tw6OutoFCT .container {
  display: flex;
  margin: auto;
}
.cid-tw6OutoFCT .iconfont-wrapper {
  color: #1d2024 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tw6OutoFCT .dropdown-menu,
.cid-tw6OutoFCT .navbar.opened {
  background: #ffffff !important;
}
.cid-tw6OutoFCT .nav-item:focus,
.cid-tw6OutoFCT .nav-link:focus {
  outline: none;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tw6OutoFCT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tw6OutoFCT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tw6OutoFCT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tw6OutoFCT .navbar.opened {
  transition: all 0.3s;
}
.cid-tw6OutoFCT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tw6OutoFCT .navbar .navbar-logo img {
  width: auto;
}
.cid-tw6OutoFCT .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tw6OutoFCT .navbar.collapsed {
  justify-content: center;
}
.cid-tw6OutoFCT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tw6OutoFCT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tw6OutoFCT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tw6OutoFCT .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-tw6OutoFCT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tw6OutoFCT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tw6OutoFCT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tw6OutoFCT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tw6OutoFCT .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-tw6OutoFCT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tw6OutoFCT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tw6OutoFCT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tw6OutoFCT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tw6OutoFCT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tw6OutoFCT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tw6OutoFCT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tw6OutoFCT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tw6OutoFCT .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tw6OutoFCT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tw6OutoFCT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tw6OutoFCT .dropdown-item.active,
.cid-tw6OutoFCT .dropdown-item:active {
  background-color: transparent;
}
.cid-tw6OutoFCT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tw6OutoFCT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tw6OutoFCT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tw6OutoFCT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tw6OutoFCT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tw6OutoFCT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tw6OutoFCT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tw6OutoFCT .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tw6OutoFCT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tw6OutoFCT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 0;
  padding-top: 1.5rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tw6OutoFCT .navbar {
    height: 70px;
  }
  .cid-tw6OutoFCT .navbar.opened {
    height: auto;
  }
  .cid-tw6OutoFCT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tw6OutoFCT .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tw6OutoFCT .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-tw6OutoFCT a {
  display: inline;
  font-weight: bold;
}
.cid-tw6OutoFCT img {
  display: inline;
  padding-right: 10px;
}
.cid-tw6OutoFCT .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tw6OutoFCT .dropdown-item:hover {
  color: #8b8d8d !important;
}
@media (max-width: 990px) {
  .cid-tw6OutoFCT .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tw6OutoFCT .collapse .btn {
    margin: 11px 21px 18px;
  }
  .cid-tw6OutoFCT .right-side {
    flex-direction: column;
  }
  .cid-tw6OutoFCT ul {
    margin-left: 0 !important;
  }
}
.cid-tw6OutoFCT .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .cid-tw6OutoFCT .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-tw6OutoFCT .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-tw6OutoFCT .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-tw6OutoFCT .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tw6OutoFCT .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tw6OutoFCT .nav-link:before {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tw6OutoFCT ul {
  margin-left: 15%;
}
.cid-tw6OutoFCT .right-side {
  display: flex;
}
@media (min-width: 990px) and (max-width: 1050px) {
  .cid-tw6OutoFCT ul {
    margin-left: 50px !important;
  }
}
.cid-tw6OutoFCT .btn {
  border-radius: 50px;
}
.cid-tw7cFIVUPH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tw7cFIVUPH .content_block {
  padding: 60px 15px;
  padding-right: 20%;
}
.cid-tw7cFIVUPH .content_block:hover .mbr-section-title a {
  color: #61c223 !important;
}
.cid-tw7cFIVUPH .card_topic,
.cid-tw7cFIVUPH .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-tw7cFIVUPH .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #61c223;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tw7cFIVUPH .image {
  position: relative;
}
.cid-tw7cFIVUPH .image:before {
  content: "";
  position: absolute;
  width: 60%;
  height: 100%;
  right: -1px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff);
  z-index: 1;
  pointer-events: none;
}
.cid-tw7cFIVUPH .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tw7cFIVUPH .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tw7cFIVUPH .mbr-section-btn .btn-secondary-outline:hover,
.cid-tw7cFIVUPH .mbr-section-btn .btn-secondary-outline .active,
.cid-tw7cFIVUPH .mbr-section-btn .btn-secondary-outline:focus {
  color: #351a44 !important;
}
.cid-tw7cFIVUPH .category_content {
  opacity: .8;
}
@media (max-width: 991px) {
  .cid-tw7cFIVUPH .content_block {
    padding: 30px 15px;
  }
  .cid-tw7cFIVUPH .mbr-figure {
    padding: 0;
  }
  .cid-tw7cFIVUPH .image:before {
    width: 100%;
    height: 60%;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.99));
  }
}
.cid-tw64T1st8P {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tw64T1st8P .image-block {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.cid-tw64T1st8P .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-tw64T1st8P .image-block:hover:before {
  opacity: 0.4;
}
.cid-tw64T1st8P .image-block:hover .wrap {
  opacity: 1;
}
.cid-tw64T1st8P .image-block:hover img {
  transform: scale(1.05);
}
.cid-tw64T1st8P .row {
  justify-content: center;
  padding: 0.2rem;
}
.cid-tw64T1st8P h4 {
  letter-spacing: 2px;
}
.cid-tw64T1st8P figcaption {
  position: relative;
}
.cid-tw64T1st8P figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tw64T1st8P img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-tw64T1st8P .col-md-4 {
  padding: 0.2rem;
}
@media (min-width: 992px) {
  .cid-tw64T1st8P .col-lg-25 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0.2rem;
  }
  .cid-tw64T1st8P .image-block {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-tw64T1st8P .image-block:before {
    opacity: 0.4;
  }
  .cid-tw64T1st8P .image-block .wrap {
    opacity: 1;
  }
}
.cid-tw2ylTsk5k {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tw2ylTsk5k .content {
    text-align: center;
  }
  .cid-tw2ylTsk5k .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tw2ylTsk5k .img-logo img {
  height: 6rem;
}
.cid-tw2ylTsk5k .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tw2ylTsk5k .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #232323;
}
.cid-tw2ylTsk5k .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tw2ylTsk5k .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-tw2ylTsk5k .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tw2ylTsk5k .social-list a:hover {
  opacity: 1;
}
.cid-tw2ylTsk5k .form-control {
  min-height: auto;
  width: 100%;
  color: #232323 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #232323;
}
.cid-tw2ylTsk5k .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-tw2ylTsk5k input::-webkit-input-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k input::-moz-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k textarea::-moz-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k .list {
  list-style-type: none;
  padding: 0;
}
.cid-tw2ylTsk5k .list li {
  padding-bottom: .5rem;
}
.cid-tw2ylTsk5k .list li:last-child {
  padding-bottom: 0;
}
.cid-tw2ylTsk5k .mbr-footer-list,
.cid-tw2ylTsk5k .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-tw2ylTsk5k .mbr-footer-list,
  .cid-tw2ylTsk5k .form-text,
  .cid-tw2ylTsk5k .footer-title,
  .cid-tw2ylTsk5k .footer-main-title,
  .cid-tw2ylTsk5k .form-text,
  .cid-tw2ylTsk5k .list {
    text-align: center !important;
  }
  .cid-tw2ylTsk5k .mbr-form,
  .cid-tw2ylTsk5k .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-tw2ylTsk5k .footer-title {
  text-align: right;
  color: #232323;
}
.cid-tw2ylTsk5k .mbr-footer-list UL {
  text-align: right;
  color: #232323;
}
.cid-tw2ylTsk5k .footer-main-title {
  color: #232323;
}
.cid-tw6OutoFCT .navbar-dropdown {
  position: relative !important;
}
.cid-tw6OutoFCT .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-tw6OutoFCT .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tw6OutoFCT .dropdown-item:hover,
.cid-tw6OutoFCT .dropdown-item:focus {
  color: #351a44 !important;
}
.cid-tw6OutoFCT .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tw6OutoFCT .nav-link {
  position: relative;
  padding: 0;
}
.cid-tw6OutoFCT .container {
  display: flex;
  margin: auto;
}
.cid-tw6OutoFCT .iconfont-wrapper {
  color: #1d2024 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tw6OutoFCT .dropdown-menu,
.cid-tw6OutoFCT .navbar.opened {
  background: #ffffff !important;
}
.cid-tw6OutoFCT .nav-item:focus,
.cid-tw6OutoFCT .nav-link:focus {
  outline: none;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tw6OutoFCT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tw6OutoFCT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tw6OutoFCT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tw6OutoFCT .navbar.opened {
  transition: all 0.3s;
}
.cid-tw6OutoFCT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tw6OutoFCT .navbar .navbar-logo img {
  width: auto;
}
.cid-tw6OutoFCT .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tw6OutoFCT .navbar.collapsed {
  justify-content: center;
}
.cid-tw6OutoFCT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tw6OutoFCT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tw6OutoFCT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tw6OutoFCT .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-tw6OutoFCT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tw6OutoFCT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tw6OutoFCT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tw6OutoFCT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tw6OutoFCT .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-tw6OutoFCT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tw6OutoFCT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tw6OutoFCT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tw6OutoFCT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tw6OutoFCT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tw6OutoFCT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tw6OutoFCT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tw6OutoFCT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tw6OutoFCT .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tw6OutoFCT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tw6OutoFCT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tw6OutoFCT .dropdown-item.active,
.cid-tw6OutoFCT .dropdown-item:active {
  background-color: transparent;
}
.cid-tw6OutoFCT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tw6OutoFCT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tw6OutoFCT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tw6OutoFCT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tw6OutoFCT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tw6OutoFCT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tw6OutoFCT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tw6OutoFCT .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tw6OutoFCT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tw6OutoFCT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 0;
  padding-top: 1.5rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tw6OutoFCT .navbar {
    height: 70px;
  }
  .cid-tw6OutoFCT .navbar.opened {
    height: auto;
  }
  .cid-tw6OutoFCT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tw6OutoFCT .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tw6OutoFCT .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-tw6OutoFCT a {
  display: inline;
  font-weight: bold;
}
.cid-tw6OutoFCT img {
  display: inline;
  padding-right: 10px;
}
.cid-tw6OutoFCT .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tw6OutoFCT .dropdown-item:hover {
  color: #8b8d8d !important;
}
@media (max-width: 990px) {
  .cid-tw6OutoFCT .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tw6OutoFCT .collapse .btn {
    margin: 11px 21px 18px;
  }
  .cid-tw6OutoFCT .right-side {
    flex-direction: column;
  }
  .cid-tw6OutoFCT ul {
    margin-left: 0 !important;
  }
}
.cid-tw6OutoFCT .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .cid-tw6OutoFCT .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-tw6OutoFCT .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-tw6OutoFCT .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-tw6OutoFCT .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tw6OutoFCT .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tw6OutoFCT .nav-link:before {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tw6OutoFCT ul {
  margin-left: 15%;
}
.cid-tw6OutoFCT .right-side {
  display: flex;
}
@media (min-width: 990px) and (max-width: 1050px) {
  .cid-tw6OutoFCT ul {
    margin-left: 50px !important;
  }
}
.cid-tw6OutoFCT .btn {
  border-radius: 50px;
}
.cid-tw6cLgyib9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tw6cLgyib9 .content_block {
  padding: 60px 15px;
  padding-right: 20%;
}
.cid-tw6cLgyib9 .content_block:hover .mbr-section-title a {
  color: #61c223 !important;
}
.cid-tw6cLgyib9 .card_topic,
.cid-tw6cLgyib9 .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-tw6cLgyib9 .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #61c223;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tw6cLgyib9 .image {
  position: relative;
}
.cid-tw6cLgyib9 .image:before {
  content: "";
  position: absolute;
  width: 60%;
  height: 100%;
  right: -1px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff);
  z-index: 1;
  pointer-events: none;
}
.cid-tw6cLgyib9 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tw6cLgyib9 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tw6cLgyib9 .mbr-section-btn .btn-secondary-outline:hover,
.cid-tw6cLgyib9 .mbr-section-btn .btn-secondary-outline .active,
.cid-tw6cLgyib9 .mbr-section-btn .btn-secondary-outline:focus {
  color: #351a44 !important;
}
.cid-tw6cLgyib9 .category_content {
  opacity: .8;
}
@media (max-width: 991px) {
  .cid-tw6cLgyib9 .content_block {
    padding: 30px 15px;
  }
  .cid-tw6cLgyib9 .mbr-figure {
    padding: 0;
  }
  .cid-tw6cLgyib9 .image:before {
    width: 100%;
    height: 60%;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.99));
  }
}
.cid-tw6cNxIhXb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tw6cNxIhXb .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tw6cNxIhXb .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tw6cNxIhXb .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tw6cNxIhXb .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tw6cNxIhXb .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tw6cNxIhXb .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tw6cNxIhXb .carousel-control,
.cid-tw6cNxIhXb .close {
  background: #1b1b1b;
}
.cid-tw6cNxIhXb .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tw6cNxIhXb .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tw6cNxIhXb .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tw6cNxIhXb .carousel-control-next span {
  margin-left: 5px;
}
.cid-tw6cNxIhXb .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tw6cNxIhXb .close::before {
  content: '\e91a';
}
.cid-tw6cNxIhXb .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tw6cNxIhXb .carousel-control {
  display: flex;
  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-tw6cNxIhXb .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tw6cNxIhXb .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tw6cNxIhXb .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tw6cNxIhXb .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tw6cNxIhXb .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-tw6cNxIhXb .carousel-indicators li.active,
.cid-tw6cNxIhXb .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tw6cNxIhXb .carousel-indicators li::after,
.cid-tw6cNxIhXb .carousel-indicators li::before {
  content: none;
}
.cid-tw6cNxIhXb .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tw6cNxIhXb .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tw6cNxIhXb .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tw6cNxIhXb .carousel-indicators {
    display: none;
  }
}
.cid-tw6cNxIhXb .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tw6cNxIhXb .carousel-inner > .active {
  display: block;
}
.cid-tw6cNxIhXb .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tw6cNxIhXb .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tw6cNxIhXb .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tw6cNxIhXb .carousel-control,
  .cid-tw6cNxIhXb .carousel-indicators,
  .cid-tw6cNxIhXb .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tw6cNxIhXb .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tw6cNxIhXb .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tw6cNxIhXb .carousel-indicators .active,
.cid-tw6cNxIhXb .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tw6cNxIhXb .carousel-indicators .active {
  background: #fff;
}
.cid-tw6cNxIhXb .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tw6cNxIhXb .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tw6cNxIhXb .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tw6cNxIhXb .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tw6cNxIhXb .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tw6cNxIhXb .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tw6cNxIhXb .carousel {
  width: 100%;
}
.cid-tw6cNxIhXb .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tw6cNxIhXb .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tw6cNxIhXb .modal.fade .modal-dialog,
.cid-tw6cNxIhXb .modal.in .modal-dialog {
  transform: none;
}
.cid-tw6cNxIhXb .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tw6cNxIhXb H6 {
  text-align: center;
}
.cid-tw6cNxIhXb .mbr-section-title {
  color: #2e6b75;
}
.cid-tw6cNxIhXb .mbr-section-subtitle {
  color: #6c7577;
}
.cid-tw6cNxIhXb .mbr-item-subtitle {
  color: #6c7577;
}
.cid-tw6cNxIhXb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tw6cNxIhXb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tw6cObuxlM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tw6cObuxlM .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tw6cObuxlM .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tw6cObuxlM .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tw6cObuxlM .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tw6cObuxlM .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tw6cObuxlM .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tw6cObuxlM .carousel-control,
.cid-tw6cObuxlM .close {
  background: #1b1b1b;
}
.cid-tw6cObuxlM .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tw6cObuxlM .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tw6cObuxlM .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tw6cObuxlM .carousel-control-next span {
  margin-left: 5px;
}
.cid-tw6cObuxlM .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tw6cObuxlM .close::before {
  content: '\e91a';
}
.cid-tw6cObuxlM .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tw6cObuxlM .carousel-control {
  display: flex;
  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-tw6cObuxlM .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tw6cObuxlM .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tw6cObuxlM .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tw6cObuxlM .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tw6cObuxlM .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-tw6cObuxlM .carousel-indicators li.active,
.cid-tw6cObuxlM .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tw6cObuxlM .carousel-indicators li::after,
.cid-tw6cObuxlM .carousel-indicators li::before {
  content: none;
}
.cid-tw6cObuxlM .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tw6cObuxlM .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tw6cObuxlM .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tw6cObuxlM .carousel-indicators {
    display: none;
  }
}
.cid-tw6cObuxlM .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tw6cObuxlM .carousel-inner > .active {
  display: block;
}
.cid-tw6cObuxlM .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tw6cObuxlM .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tw6cObuxlM .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tw6cObuxlM .carousel-control,
  .cid-tw6cObuxlM .carousel-indicators,
  .cid-tw6cObuxlM .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tw6cObuxlM .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tw6cObuxlM .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tw6cObuxlM .carousel-indicators .active,
.cid-tw6cObuxlM .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tw6cObuxlM .carousel-indicators .active {
  background: #fff;
}
.cid-tw6cObuxlM .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tw6cObuxlM .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tw6cObuxlM .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tw6cObuxlM .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tw6cObuxlM .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tw6cObuxlM .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tw6cObuxlM .carousel {
  width: 100%;
}
.cid-tw6cObuxlM .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tw6cObuxlM .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tw6cObuxlM .modal.fade .modal-dialog,
.cid-tw6cObuxlM .modal.in .modal-dialog {
  transform: none;
}
.cid-tw6cObuxlM .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tw6cObuxlM H6 {
  text-align: center;
}
.cid-tw6cObuxlM .mbr-section-title {
  color: #2e6b75;
}
.cid-tw6cObuxlM .mbr-section-subtitle {
  color: #6c7577;
}
.cid-tw6cObuxlM .mbr-item-subtitle {
  color: #6c7577;
}
.cid-tw6cObuxlM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tw6cObuxlM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tw6lZVL95v {
  padding-top: 420px;
  background-image: url("../../../assets/images/untitled-1-2000x1414.jpg");
}
.cid-tw2ylTsk5k {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tw2ylTsk5k .content {
    text-align: center;
  }
  .cid-tw2ylTsk5k .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tw2ylTsk5k .img-logo img {
  height: 6rem;
}
.cid-tw2ylTsk5k .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tw2ylTsk5k .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #232323;
}
.cid-tw2ylTsk5k .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tw2ylTsk5k .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-tw2ylTsk5k .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tw2ylTsk5k .social-list a:hover {
  opacity: 1;
}
.cid-tw2ylTsk5k .form-control {
  min-height: auto;
  width: 100%;
  color: #232323 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #232323;
}
.cid-tw2ylTsk5k .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-tw2ylTsk5k input::-webkit-input-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k input::-moz-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k textarea::-moz-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k .list {
  list-style-type: none;
  padding: 0;
}
.cid-tw2ylTsk5k .list li {
  padding-bottom: .5rem;
}
.cid-tw2ylTsk5k .list li:last-child {
  padding-bottom: 0;
}
.cid-tw2ylTsk5k .mbr-footer-list,
.cid-tw2ylTsk5k .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-tw2ylTsk5k .mbr-footer-list,
  .cid-tw2ylTsk5k .form-text,
  .cid-tw2ylTsk5k .footer-title,
  .cid-tw2ylTsk5k .footer-main-title,
  .cid-tw2ylTsk5k .form-text,
  .cid-tw2ylTsk5k .list {
    text-align: center !important;
  }
  .cid-tw2ylTsk5k .mbr-form,
  .cid-tw2ylTsk5k .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-tw2ylTsk5k .footer-title {
  text-align: right;
  color: #232323;
}
.cid-tw2ylTsk5k .mbr-footer-list UL {
  text-align: right;
  color: #232323;
}
.cid-tw2ylTsk5k .footer-main-title {
  color: #232323;
}
.cid-tw6OutoFCT .navbar-dropdown {
  position: relative !important;
}
.cid-tw6OutoFCT .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-tw6OutoFCT .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tw6OutoFCT .dropdown-item:hover,
.cid-tw6OutoFCT .dropdown-item:focus {
  color: #351a44 !important;
}
.cid-tw6OutoFCT .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tw6OutoFCT .nav-link {
  position: relative;
  padding: 0;
}
.cid-tw6OutoFCT .container {
  display: flex;
  margin: auto;
}
.cid-tw6OutoFCT .iconfont-wrapper {
  color: #1d2024 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tw6OutoFCT .dropdown-menu,
.cid-tw6OutoFCT .navbar.opened {
  background: #ffffff !important;
}
.cid-tw6OutoFCT .nav-item:focus,
.cid-tw6OutoFCT .nav-link:focus {
  outline: none;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tw6OutoFCT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tw6OutoFCT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tw6OutoFCT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tw6OutoFCT .navbar.opened {
  transition: all 0.3s;
}
.cid-tw6OutoFCT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tw6OutoFCT .navbar .navbar-logo img {
  width: auto;
}
.cid-tw6OutoFCT .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tw6OutoFCT .navbar.collapsed {
  justify-content: center;
}
.cid-tw6OutoFCT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tw6OutoFCT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tw6OutoFCT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tw6OutoFCT .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-tw6OutoFCT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tw6OutoFCT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tw6OutoFCT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tw6OutoFCT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tw6OutoFCT .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-tw6OutoFCT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tw6OutoFCT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tw6OutoFCT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tw6OutoFCT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tw6OutoFCT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tw6OutoFCT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tw6OutoFCT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tw6OutoFCT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tw6OutoFCT .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tw6OutoFCT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tw6OutoFCT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tw6OutoFCT .dropdown-item.active,
.cid-tw6OutoFCT .dropdown-item:active {
  background-color: transparent;
}
.cid-tw6OutoFCT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tw6OutoFCT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tw6OutoFCT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tw6OutoFCT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tw6OutoFCT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tw6OutoFCT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tw6OutoFCT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tw6OutoFCT .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tw6OutoFCT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tw6OutoFCT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 0;
  padding-top: 1.5rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tw6OutoFCT .navbar {
    height: 70px;
  }
  .cid-tw6OutoFCT .navbar.opened {
    height: auto;
  }
  .cid-tw6OutoFCT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tw6OutoFCT .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tw6OutoFCT .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-tw6OutoFCT a {
  display: inline;
  font-weight: bold;
}
.cid-tw6OutoFCT img {
  display: inline;
  padding-right: 10px;
}
.cid-tw6OutoFCT .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tw6OutoFCT .dropdown-item:hover {
  color: #8b8d8d !important;
}
@media (max-width: 990px) {
  .cid-tw6OutoFCT .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tw6OutoFCT .collapse .btn {
    margin: 11px 21px 18px;
  }
  .cid-tw6OutoFCT .right-side {
    flex-direction: column;
  }
  .cid-tw6OutoFCT ul {
    margin-left: 0 !important;
  }
}
.cid-tw6OutoFCT .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .cid-tw6OutoFCT .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-tw6OutoFCT .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-tw6OutoFCT .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-tw6OutoFCT .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tw6OutoFCT .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tw6OutoFCT .nav-link:before {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tw6OutoFCT ul {
  margin-left: 15%;
}
.cid-tw6OutoFCT .right-side {
  display: flex;
}
@media (min-width: 990px) and (max-width: 1050px) {
  .cid-tw6OutoFCT ul {
    margin-left: 50px !important;
  }
}
.cid-tw6OutoFCT .btn {
  border-radius: 50px;
}
.cid-tw67JBdeXw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tw67JBdeXw .content_block {
  padding: 60px 15px;
  padding-right: 20%;
}
.cid-tw67JBdeXw .content_block:hover .mbr-section-title a {
  color: #61c223 !important;
}
.cid-tw67JBdeXw .card_topic,
.cid-tw67JBdeXw .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-tw67JBdeXw .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #61c223;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-tw67JBdeXw .image {
  position: relative;
}
.cid-tw67JBdeXw .image:before {
  content: "";
  position: absolute;
  width: 60%;
  height: 100%;
  right: -1px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff);
  z-index: 1;
  pointer-events: none;
}
.cid-tw67JBdeXw .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tw67JBdeXw .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tw67JBdeXw .mbr-section-btn .btn-secondary-outline:hover,
.cid-tw67JBdeXw .mbr-section-btn .btn-secondary-outline .active,
.cid-tw67JBdeXw .mbr-section-btn .btn-secondary-outline:focus {
  color: #351a44 !important;
}
.cid-tw67JBdeXw .category_content {
  opacity: .8;
}
@media (max-width: 991px) {
  .cid-tw67JBdeXw .content_block {
    padding: 30px 15px;
  }
  .cid-tw67JBdeXw .mbr-figure {
    padding: 0;
  }
  .cid-tw67JBdeXw .image:before {
    width: 100%;
    height: 60%;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.99));
  }
}
.cid-tw685jvGgw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tw685jvGgw .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tw685jvGgw .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tw685jvGgw .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tw685jvGgw .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tw685jvGgw .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tw685jvGgw .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tw685jvGgw .carousel-control,
.cid-tw685jvGgw .close {
  background: #1b1b1b;
}
.cid-tw685jvGgw .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tw685jvGgw .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tw685jvGgw .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tw685jvGgw .carousel-control-next span {
  margin-left: 5px;
}
.cid-tw685jvGgw .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tw685jvGgw .close::before {
  content: '\e91a';
}
.cid-tw685jvGgw .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tw685jvGgw .carousel-control {
  display: flex;
  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-tw685jvGgw .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tw685jvGgw .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tw685jvGgw .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tw685jvGgw .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tw685jvGgw .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-tw685jvGgw .carousel-indicators li.active,
.cid-tw685jvGgw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tw685jvGgw .carousel-indicators li::after,
.cid-tw685jvGgw .carousel-indicators li::before {
  content: none;
}
.cid-tw685jvGgw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tw685jvGgw .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tw685jvGgw .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tw685jvGgw .carousel-indicators {
    display: none;
  }
}
.cid-tw685jvGgw .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tw685jvGgw .carousel-inner > .active {
  display: block;
}
.cid-tw685jvGgw .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tw685jvGgw .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tw685jvGgw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tw685jvGgw .carousel-control,
  .cid-tw685jvGgw .carousel-indicators,
  .cid-tw685jvGgw .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tw685jvGgw .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tw685jvGgw .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tw685jvGgw .carousel-indicators .active,
.cid-tw685jvGgw .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tw685jvGgw .carousel-indicators .active {
  background: #fff;
}
.cid-tw685jvGgw .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tw685jvGgw .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tw685jvGgw .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tw685jvGgw .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tw685jvGgw .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tw685jvGgw .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tw685jvGgw .carousel {
  width: 100%;
}
.cid-tw685jvGgw .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tw685jvGgw .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tw685jvGgw .modal.fade .modal-dialog,
.cid-tw685jvGgw .modal.in .modal-dialog {
  transform: none;
}
.cid-tw685jvGgw .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tw685jvGgw H6 {
  text-align: center;
}
.cid-tw685jvGgw .mbr-section-title {
  color: #2e6b75;
}
.cid-tw685jvGgw .mbr-section-subtitle {
  color: #6c7577;
}
.cid-tw685jvGgw .mbr-item-subtitle {
  color: #6c7577;
}
.cid-tw685jvGgw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tw685jvGgw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tw685NYEpj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tw685NYEpj .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tw685NYEpj .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tw685NYEpj .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tw685NYEpj .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tw685NYEpj .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tw685NYEpj .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tw685NYEpj .carousel-control,
.cid-tw685NYEpj .close {
  background: #1b1b1b;
}
.cid-tw685NYEpj .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tw685NYEpj .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tw685NYEpj .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tw685NYEpj .carousel-control-next span {
  margin-left: 5px;
}
.cid-tw685NYEpj .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tw685NYEpj .close::before {
  content: '\e91a';
}
.cid-tw685NYEpj .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tw685NYEpj .carousel-control {
  display: flex;
  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-tw685NYEpj .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tw685NYEpj .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tw685NYEpj .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tw685NYEpj .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tw685NYEpj .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-tw685NYEpj .carousel-indicators li.active,
.cid-tw685NYEpj .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tw685NYEpj .carousel-indicators li::after,
.cid-tw685NYEpj .carousel-indicators li::before {
  content: none;
}
.cid-tw685NYEpj .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tw685NYEpj .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tw685NYEpj .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tw685NYEpj .carousel-indicators {
    display: none;
  }
}
.cid-tw685NYEpj .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tw685NYEpj .carousel-inner > .active {
  display: block;
}
.cid-tw685NYEpj .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tw685NYEpj .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tw685NYEpj .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tw685NYEpj .carousel-control,
  .cid-tw685NYEpj .carousel-indicators,
  .cid-tw685NYEpj .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tw685NYEpj .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tw685NYEpj .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tw685NYEpj .carousel-indicators .active,
.cid-tw685NYEpj .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tw685NYEpj .carousel-indicators .active {
  background: #fff;
}
.cid-tw685NYEpj .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tw685NYEpj .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tw685NYEpj .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tw685NYEpj .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tw685NYEpj .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tw685NYEpj .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tw685NYEpj .carousel {
  width: 100%;
}
.cid-tw685NYEpj .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tw685NYEpj .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tw685NYEpj .modal.fade .modal-dialog,
.cid-tw685NYEpj .modal.in .modal-dialog {
  transform: none;
}
.cid-tw685NYEpj .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tw685NYEpj H6 {
  text-align: center;
}
.cid-tw685NYEpj .mbr-section-title {
  color: #2e6b75;
}
.cid-tw685NYEpj .mbr-section-subtitle {
  color: #6c7577;
}
.cid-tw685NYEpj .mbr-item-subtitle {
  color: #6c7577;
}
.cid-tw685NYEpj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tw685NYEpj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tw681rQFmf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tw681rQFmf .mbr-media {
  position: relative;
  border-radius: 1rem;
}
.cid-tw681rQFmf .mbr-media img {
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.cid-tw681rQFmf .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tw681rQFmf .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
  color: #ffffff;
}
.cid-tw681rQFmf .mbr-media span:hover {
  color: #61c223 !important;
}
.cid-tw681rQFmf .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tw681rQFmf .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tw681rQFmf .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tw681rQFmf .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tw681rQFmf .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tw681rQFmf .mbr-section-subtitle {
  color: #353535;
}
.cid-tw681rQFmf .mbr-section-title {
  color: #160830;
}
.cid-tw681rQFmf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tw681rQFmf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tw6czd1SLd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tw6czd1SLd .mbr-media {
  position: relative;
  border-radius: 1rem;
}
.cid-tw6czd1SLd .mbr-media img {
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.cid-tw6czd1SLd .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tw6czd1SLd .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
  color: #ffffff;
}
.cid-tw6czd1SLd .mbr-media span:hover {
  color: #61c223 !important;
}
.cid-tw6czd1SLd .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tw6czd1SLd .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tw6czd1SLd .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tw6czd1SLd .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tw6czd1SLd .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tw6czd1SLd .mbr-section-subtitle {
  color: #353535;
}
.cid-tw6czd1SLd .mbr-section-title {
  color: #160830;
}
.cid-tw6czd1SLd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tw6czd1SLd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tw6dLl6pI2 {
  padding-top: 420px;
  background-image: url("../../../assets/images/56264324-1173628639485347-529663939697442816-n.jpg");
}
.cid-tw2ylTsk5k {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tw2ylTsk5k .content {
    text-align: center;
  }
  .cid-tw2ylTsk5k .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tw2ylTsk5k .img-logo img {
  height: 6rem;
}
.cid-tw2ylTsk5k .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tw2ylTsk5k .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #232323;
}
.cid-tw2ylTsk5k .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tw2ylTsk5k .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-tw2ylTsk5k .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tw2ylTsk5k .social-list a:hover {
  opacity: 1;
}
.cid-tw2ylTsk5k .form-control {
  min-height: auto;
  width: 100%;
  color: #232323 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #232323;
}
.cid-tw2ylTsk5k .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-tw2ylTsk5k input::-webkit-input-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k input::-moz-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k textarea::-moz-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k .list {
  list-style-type: none;
  padding: 0;
}
.cid-tw2ylTsk5k .list li {
  padding-bottom: .5rem;
}
.cid-tw2ylTsk5k .list li:last-child {
  padding-bottom: 0;
}
.cid-tw2ylTsk5k .mbr-footer-list,
.cid-tw2ylTsk5k .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-tw2ylTsk5k .mbr-footer-list,
  .cid-tw2ylTsk5k .form-text,
  .cid-tw2ylTsk5k .footer-title,
  .cid-tw2ylTsk5k .footer-main-title,
  .cid-tw2ylTsk5k .form-text,
  .cid-tw2ylTsk5k .list {
    text-align: center !important;
  }
  .cid-tw2ylTsk5k .mbr-form,
  .cid-tw2ylTsk5k .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-tw2ylTsk5k .footer-title {
  text-align: right;
  color: #232323;
}
.cid-tw2ylTsk5k .mbr-footer-list UL {
  text-align: right;
  color: #232323;
}
.cid-tw2ylTsk5k .footer-main-title {
  color: #232323;
}
.cid-tw6OutoFCT .navbar-dropdown {
  position: relative !important;
}
.cid-tw6OutoFCT .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-tw6OutoFCT .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tw6OutoFCT .dropdown-item:hover,
.cid-tw6OutoFCT .dropdown-item:focus {
  color: #351a44 !important;
}
.cid-tw6OutoFCT .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tw6OutoFCT .nav-link {
  position: relative;
  padding: 0;
}
.cid-tw6OutoFCT .container {
  display: flex;
  margin: auto;
}
.cid-tw6OutoFCT .iconfont-wrapper {
  color: #1d2024 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tw6OutoFCT .dropdown-menu,
.cid-tw6OutoFCT .navbar.opened {
  background: #ffffff !important;
}
.cid-tw6OutoFCT .nav-item:focus,
.cid-tw6OutoFCT .nav-link:focus {
  outline: none;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tw6OutoFCT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tw6OutoFCT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tw6OutoFCT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tw6OutoFCT .navbar.opened {
  transition: all 0.3s;
}
.cid-tw6OutoFCT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tw6OutoFCT .navbar .navbar-logo img {
  width: auto;
}
.cid-tw6OutoFCT .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tw6OutoFCT .navbar.collapsed {
  justify-content: center;
}
.cid-tw6OutoFCT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tw6OutoFCT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tw6OutoFCT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tw6OutoFCT .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-tw6OutoFCT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tw6OutoFCT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tw6OutoFCT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tw6OutoFCT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tw6OutoFCT .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-tw6OutoFCT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tw6OutoFCT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tw6OutoFCT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tw6OutoFCT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tw6OutoFCT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tw6OutoFCT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tw6OutoFCT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tw6OutoFCT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tw6OutoFCT .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tw6OutoFCT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tw6OutoFCT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tw6OutoFCT .dropdown-item.active,
.cid-tw6OutoFCT .dropdown-item:active {
  background-color: transparent;
}
.cid-tw6OutoFCT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tw6OutoFCT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tw6OutoFCT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tw6OutoFCT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tw6OutoFCT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tw6OutoFCT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tw6OutoFCT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tw6OutoFCT .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tw6OutoFCT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tw6OutoFCT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 0;
  padding-top: 1.5rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tw6OutoFCT .navbar {
    height: 70px;
  }
  .cid-tw6OutoFCT .navbar.opened {
    height: auto;
  }
  .cid-tw6OutoFCT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tw6OutoFCT .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tw6OutoFCT .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-tw6OutoFCT a {
  display: inline;
  font-weight: bold;
}
.cid-tw6OutoFCT img {
  display: inline;
  padding-right: 10px;
}
.cid-tw6OutoFCT .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tw6OutoFCT .dropdown-item:hover {
  color: #8b8d8d !important;
}
@media (max-width: 990px) {
  .cid-tw6OutoFCT .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tw6OutoFCT .collapse .btn {
    margin: 11px 21px 18px;
  }
  .cid-tw6OutoFCT .right-side {
    flex-direction: column;
  }
  .cid-tw6OutoFCT ul {
    margin-left: 0 !important;
  }
}
.cid-tw6OutoFCT .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .cid-tw6OutoFCT .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-tw6OutoFCT .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-tw6OutoFCT .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-tw6OutoFCT .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tw6OutoFCT .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tw6OutoFCT .nav-link:before {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tw6OutoFCT ul {
  margin-left: 15%;
}
.cid-tw6OutoFCT .right-side {
  display: flex;
}
@media (min-width: 990px) and (max-width: 1050px) {
  .cid-tw6OutoFCT ul {
    margin-left: 50px !important;
  }
}
.cid-tw6OutoFCT .btn {
  border-radius: 50px;
}
.cid-tw2XRUlzqT {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tw2XRUlzqT .mbr-section-title {
  color: #1d1d1f;
  text-align: center;
  margin-bottom: 0;
  font-weight: 700;
}
.cid-tw2XRUlzqT .mbr-section-subtitle {
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 0;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tw2XRUlzqT .row {
  align-items: center;
  height: 100%;
}
.cid-tw2XRUlzqT .container {
  max-width: 1100px;
}
.cid-tw2XRUlzqT .wrapper {
  margin: auto;
}
.cid-tw2XPjwLeO {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tw2XPjwLeO .image-block {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.cid-tw2XPjwLeO .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-tw2XPjwLeO .image-block:hover:before {
  opacity: 0.4;
}
.cid-tw2XPjwLeO .image-block:hover .wrap {
  opacity: 1;
}
.cid-tw2XPjwLeO .image-block:hover img {
  transform: scale(1.05);
}
.cid-tw2XPjwLeO .row {
  justify-content: center;
  padding: 0.2rem;
}
.cid-tw2XPjwLeO h4 {
  letter-spacing: 2px;
}
.cid-tw2XPjwLeO figcaption {
  position: relative;
}
.cid-tw2XPjwLeO figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tw2XPjwLeO img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-tw2XPjwLeO .col-md-4 {
  padding: 0.2rem;
}
@media (min-width: 992px) {
  .cid-tw2XPjwLeO .col-lg-25 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0.2rem;
  }
  .cid-tw2XPjwLeO .image-block {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-tw2XPjwLeO .image-block:before {
    opacity: 0.4;
  }
  .cid-tw2XPjwLeO .image-block .wrap {
    opacity: 1;
  }
}
.cid-tw342soAFS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tw342soAFS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tw342soAFS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tw342soAFS .container-fluid {
    padding: 0.5rem;
  }
}
@media (min-width: 767px) {
  .cid-tw342soAFS .container-fluid {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tw342soAFS .container-fluid {
    padding: 0 1.7rem;
  }
}
.cid-tw342soAFS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tw342soAFS .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-tw342soAFS .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-tw342soAFS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tw342soAFS .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-tw342soAFS .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-tw342soAFS .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-tw342soAFS .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-tw342soAFS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tw342soAFS .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-tw342soAFS .mbr-gallery-item img {
  transition: all 2s !important;
}
.cid-tw342soAFS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tw342soAFS .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-tw342soAFS .mbr-gallery-title:before {
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tw2XQkqiql {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tw2XQkqiql .image-block {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.cid-tw2XQkqiql .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-tw2XQkqiql .image-block:hover:before {
  opacity: 0.4;
}
.cid-tw2XQkqiql .image-block:hover .wrap {
  opacity: 1;
}
.cid-tw2XQkqiql .image-block:hover img {
  transform: scale(1.05);
}
.cid-tw2XQkqiql .row {
  justify-content: center;
  padding: 0.2rem;
}
.cid-tw2XQkqiql h4 {
  letter-spacing: 2px;
}
.cid-tw2XQkqiql figcaption {
  position: relative;
}
.cid-tw2XQkqiql figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tw2XQkqiql img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-tw2XQkqiql .col-md-4 {
  padding: 0.2rem;
}
@media (min-width: 992px) {
  .cid-tw2XQkqiql .col-lg-25 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0.2rem;
  }
  .cid-tw2XQkqiql .image-block {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-tw2XQkqiql .image-block:before {
    opacity: 0.4;
  }
  .cid-tw2XQkqiql .image-block .wrap {
    opacity: 1;
  }
}
.cid-tw3438Rzvs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tw3438Rzvs .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tw3438Rzvs .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tw3438Rzvs .container-fluid {
    padding: 0.5rem;
  }
}
@media (min-width: 767px) {
  .cid-tw3438Rzvs .container-fluid {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tw3438Rzvs .container-fluid {
    padding: 0 1.7rem;
  }
}
.cid-tw3438Rzvs .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tw3438Rzvs .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-tw3438Rzvs .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-tw3438Rzvs .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tw3438Rzvs .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-tw3438Rzvs .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-tw3438Rzvs .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-tw3438Rzvs .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-tw3438Rzvs .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tw3438Rzvs .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-tw3438Rzvs .mbr-gallery-item img {
  transition: all 2s !important;
}
.cid-tw3438Rzvs .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tw3438Rzvs .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-tw3438Rzvs .mbr-gallery-title:before {
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tw6dUapU7g {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tw6dUapU7g .mbr-media {
  position: relative;
  border-radius: 1rem;
}
.cid-tw6dUapU7g .mbr-media img {
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.cid-tw6dUapU7g .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tw6dUapU7g .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
  color: #ffffff;
}
.cid-tw6dUapU7g .mbr-media span:hover {
  color: #61c223 !important;
}
.cid-tw6dUapU7g .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tw6dUapU7g .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tw6dUapU7g .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tw6dUapU7g .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tw6dUapU7g .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tw6dUapU7g .mbr-section-subtitle {
  color: #353535;
}
.cid-tw6dUapU7g .mbr-section-title {
  color: #160830;
}
.cid-tw6dUapU7g .mbr-fallback-image.disabled {
  display: none;
}
.cid-tw6dUapU7g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tw2ylTsk5k {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tw2ylTsk5k .content {
    text-align: center;
  }
  .cid-tw2ylTsk5k .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tw2ylTsk5k .img-logo img {
  height: 6rem;
}
.cid-tw2ylTsk5k .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tw2ylTsk5k .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #232323;
}
.cid-tw2ylTsk5k .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tw2ylTsk5k .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-tw2ylTsk5k .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tw2ylTsk5k .social-list a:hover {
  opacity: 1;
}
.cid-tw2ylTsk5k .form-control {
  min-height: auto;
  width: 100%;
  color: #232323 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #232323;
}
.cid-tw2ylTsk5k .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-tw2ylTsk5k input::-webkit-input-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k input::-moz-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k textarea::-moz-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k .list {
  list-style-type: none;
  padding: 0;
}
.cid-tw2ylTsk5k .list li {
  padding-bottom: .5rem;
}
.cid-tw2ylTsk5k .list li:last-child {
  padding-bottom: 0;
}
.cid-tw2ylTsk5k .mbr-footer-list,
.cid-tw2ylTsk5k .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-tw2ylTsk5k .mbr-footer-list,
  .cid-tw2ylTsk5k .form-text,
  .cid-tw2ylTsk5k .footer-title,
  .cid-tw2ylTsk5k .footer-main-title,
  .cid-tw2ylTsk5k .form-text,
  .cid-tw2ylTsk5k .list {
    text-align: center !important;
  }
  .cid-tw2ylTsk5k .mbr-form,
  .cid-tw2ylTsk5k .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-tw2ylTsk5k .footer-title {
  text-align: right;
  color: #232323;
}
.cid-tw2ylTsk5k .mbr-footer-list UL {
  text-align: right;
  color: #232323;
}
.cid-tw2ylTsk5k .footer-main-title {
  color: #232323;
}
.cid-tw6OutoFCT .navbar-dropdown {
  position: relative !important;
}
.cid-tw6OutoFCT .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-tw6OutoFCT .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tw6OutoFCT .dropdown-item:hover,
.cid-tw6OutoFCT .dropdown-item:focus {
  color: #351a44 !important;
}
.cid-tw6OutoFCT .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tw6OutoFCT .nav-link {
  position: relative;
  padding: 0;
}
.cid-tw6OutoFCT .container {
  display: flex;
  margin: auto;
}
.cid-tw6OutoFCT .iconfont-wrapper {
  color: #1d2024 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tw6OutoFCT .dropdown-menu,
.cid-tw6OutoFCT .navbar.opened {
  background: #ffffff !important;
}
.cid-tw6OutoFCT .nav-item:focus,
.cid-tw6OutoFCT .nav-link:focus {
  outline: none;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tw6OutoFCT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tw6OutoFCT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tw6OutoFCT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tw6OutoFCT .navbar.opened {
  transition: all 0.3s;
}
.cid-tw6OutoFCT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tw6OutoFCT .navbar .navbar-logo img {
  width: auto;
}
.cid-tw6OutoFCT .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tw6OutoFCT .navbar.collapsed {
  justify-content: center;
}
.cid-tw6OutoFCT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tw6OutoFCT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tw6OutoFCT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tw6OutoFCT .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-tw6OutoFCT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tw6OutoFCT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tw6OutoFCT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tw6OutoFCT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tw6OutoFCT .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-tw6OutoFCT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tw6OutoFCT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tw6OutoFCT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tw6OutoFCT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tw6OutoFCT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tw6OutoFCT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tw6OutoFCT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tw6OutoFCT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tw6OutoFCT .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tw6OutoFCT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tw6OutoFCT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tw6OutoFCT .dropdown-item.active,
.cid-tw6OutoFCT .dropdown-item:active {
  background-color: transparent;
}
.cid-tw6OutoFCT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tw6OutoFCT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tw6OutoFCT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tw6OutoFCT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tw6OutoFCT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tw6OutoFCT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tw6OutoFCT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tw6OutoFCT .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tw6OutoFCT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tw6OutoFCT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 0;
  padding-top: 1.5rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tw6OutoFCT .navbar {
    height: 70px;
  }
  .cid-tw6OutoFCT .navbar.opened {
    height: auto;
  }
  .cid-tw6OutoFCT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tw6OutoFCT .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tw6OutoFCT .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-tw6OutoFCT a {
  display: inline;
  font-weight: bold;
}
.cid-tw6OutoFCT img {
  display: inline;
  padding-right: 10px;
}
.cid-tw6OutoFCT .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tw6OutoFCT .dropdown-item:hover {
  color: #8b8d8d !important;
}
@media (max-width: 990px) {
  .cid-tw6OutoFCT .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tw6OutoFCT .collapse .btn {
    margin: 11px 21px 18px;
  }
  .cid-tw6OutoFCT .right-side {
    flex-direction: column;
  }
  .cid-tw6OutoFCT ul {
    margin-left: 0 !important;
  }
}
.cid-tw6OutoFCT .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .cid-tw6OutoFCT .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-tw6OutoFCT .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-tw6OutoFCT .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-tw6OutoFCT .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tw6OutoFCT .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tw6OutoFCT .nav-link:before {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tw6OutoFCT ul {
  margin-left: 15%;
}
.cid-tw6OutoFCT .right-side {
  display: flex;
}
@media (min-width: 990px) and (max-width: 1050px) {
  .cid-tw6OutoFCT ul {
    margin-left: 50px !important;
  }
}
.cid-tw6OutoFCT .btn {
  border-radius: 50px;
}
.cid-tw2V8Grqbs {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tw2V8Grqbs .mbr-section-title {
  color: #1d1d1f;
  text-align: center;
  margin-bottom: 0;
  font-weight: 700;
}
.cid-tw2V8Grqbs .mbr-section-subtitle {
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 0;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tw2V8Grqbs .row {
  align-items: center;
  height: 100%;
}
.cid-tw2V8Grqbs .container {
  max-width: 1100px;
}
.cid-tw2V8Grqbs .wrapper {
  margin: auto;
}
.cid-tw2UXo2vGX {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tw2UXo2vGX .image-block {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.cid-tw2UXo2vGX .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-tw2UXo2vGX .image-block:hover:before {
  opacity: 0.4;
}
.cid-tw2UXo2vGX .image-block:hover .wrap {
  opacity: 1;
}
.cid-tw2UXo2vGX .image-block:hover img {
  transform: scale(1.05);
}
.cid-tw2UXo2vGX .row {
  justify-content: center;
  padding: 0.2rem;
}
.cid-tw2UXo2vGX h4 {
  letter-spacing: 2px;
}
.cid-tw2UXo2vGX figcaption {
  position: relative;
}
.cid-tw2UXo2vGX figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tw2UXo2vGX img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-tw2UXo2vGX .col-md-4 {
  padding: 0.2rem;
}
@media (min-width: 992px) {
  .cid-tw2UXo2vGX .col-lg-25 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0.2rem;
  }
  .cid-tw2UXo2vGX .image-block {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-tw2UXo2vGX .image-block:before {
    opacity: 0.4;
  }
  .cid-tw2UXo2vGX .image-block .wrap {
    opacity: 1;
  }
}
.cid-tw2VQ85xP2 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tw2VQ85xP2 .image-wrap-1 {
  padding-right: 0;
  padding-left: 1rem;
}
@media (max-width: 992px) {
  .cid-tw2VQ85xP2 .image-wrap-1 {
    padding: 0 12px;
  }
}
.cid-tw2VQ85xP2 .image-wrap-1 .image-wrapper {
  height: 720px;
  object-fit: cover;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tw2VQ85xP2 .image-wrap-1 .image-wrapper {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-tw2VQ85xP2 .image-wrap-1 .image-wrapper {
    height: 350px;
  }
}
.cid-tw2VQ85xP2 .image-wrap-1 .image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  padding: 0;
}
.cid-tw2VQ85xP2 .image-wrap-2 {
  padding-right: 2rem;
  padding-left: 1rem;
}
@media (max-width: 992px) {
  .cid-tw2VQ85xP2 .image-wrap-2 {
    padding: 0 24px;
  }
}
.cid-tw2VQ85xP2 .image-wrap-2 .image-wrapper {
  height: 360px;
  object-fit: cover;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tw2VQ85xP2 .image-wrap-2 .image-wrapper {
    height: 350px;
  }
}
.cid-tw2VQ85xP2 .image-wrap-2 .image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  padding: 0;
}
.cid-tw2VQ85xP2 .image-wrap {
  padding: 0;
}
.cid-tw2VQ85xP2 .card-link {
  height: 100%;
  z-index: 1;
  pointer-events: none;
  transition: all .4s ease;
}
.cid-tw2VQ85xP2 .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}
.cid-tw2VQ85xP2 .card-wrapper .mbr-title {
  pointer-events: visible;
  margin: 0;
  z-index: 1;
  opacity: 0;
  transform: translate(0, 5%);
  transition: all .3s ease;
}
.cid-tw2VQ85xP2 .card-wrapper .mbr-text {
  pointer-events: visible;
  margin: 5px 0 0 0;
  opacity: 0;
  transform: translate(0, 5%);
  transition: all .3s ease;
}
.cid-tw2VQ85xP2 .image-wrapper:hover .mbr-title {
  opacity: 1;
  transform: translate(0, 0);
}
.cid-tw2VQ85xP2 .image-wrapper:hover .mbr-text {
  opacity: .7;
  transform: translate(0, 0);
}
.cid-tw2VQ85xP2 .image-wrapper:hover .card-link {
  position: absolute;
  width: 100%;
  background-color: #61c223;
}
.cid-tw2VQ85xP2 .mbr-title {
  color: #FFFFFF;
  text-align: center;
}
.cid-tw2VQ85xP2 .mbr-text {
  color: #FFFFFF;
  text-align: center;
}
.cid-tw2UYauzPt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tw2UYauzPt .mbr-section-title {
  color: #1d1d1f;
  text-align: center;
  margin-bottom: 0;
  font-weight: 700;
}
.cid-tw2UYauzPt .mbr-section-subtitle {
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 0;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tw2UYauzPt .row {
  align-items: center;
  height: 100%;
}
.cid-tw2UYauzPt .container {
  max-width: 1100px;
}
.cid-tw2UYauzPt .wrapper {
  margin: auto;
}
.cid-tw2VlqQReU {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tw2VlqQReU .image-block {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.cid-tw2VlqQReU .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-tw2VlqQReU .image-block:hover:before {
  opacity: 0.4;
}
.cid-tw2VlqQReU .image-block:hover .wrap {
  opacity: 1;
}
.cid-tw2VlqQReU .image-block:hover img {
  transform: scale(1.05);
}
.cid-tw2VlqQReU .row {
  justify-content: center;
  padding: 0.2rem;
}
.cid-tw2VlqQReU h4 {
  letter-spacing: 2px;
}
.cid-tw2VlqQReU figcaption {
  position: relative;
}
.cid-tw2VlqQReU figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tw2VlqQReU img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-tw2VlqQReU .col-md-4 {
  padding: 0.2rem;
}
@media (min-width: 992px) {
  .cid-tw2VlqQReU .col-lg-25 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0.2rem;
  }
  .cid-tw2VlqQReU .image-block {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-tw2VlqQReU .image-block:before {
    opacity: 0.4;
  }
  .cid-tw2VlqQReU .image-block .wrap {
    opacity: 1;
  }
}
.cid-tw2ylTsk5k {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tw2ylTsk5k .content {
    text-align: center;
  }
  .cid-tw2ylTsk5k .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tw2ylTsk5k .img-logo img {
  height: 6rem;
}
.cid-tw2ylTsk5k .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tw2ylTsk5k .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #232323;
}
.cid-tw2ylTsk5k .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tw2ylTsk5k .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-tw2ylTsk5k .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tw2ylTsk5k .social-list a:hover {
  opacity: 1;
}
.cid-tw2ylTsk5k .form-control {
  min-height: auto;
  width: 100%;
  color: #232323 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #232323;
}
.cid-tw2ylTsk5k .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-tw2ylTsk5k input::-webkit-input-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k input::-moz-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k textarea::-moz-placeholder {
  color: #232323;
}
.cid-tw2ylTsk5k .list {
  list-style-type: none;
  padding: 0;
}
.cid-tw2ylTsk5k .list li {
  padding-bottom: .5rem;
}
.cid-tw2ylTsk5k .list li:last-child {
  padding-bottom: 0;
}
.cid-tw2ylTsk5k .mbr-footer-list,
.cid-tw2ylTsk5k .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-tw2ylTsk5k .mbr-footer-list,
  .cid-tw2ylTsk5k .form-text,
  .cid-tw2ylTsk5k .footer-title,
  .cid-tw2ylTsk5k .footer-main-title,
  .cid-tw2ylTsk5k .form-text,
  .cid-tw2ylTsk5k .list {
    text-align: center !important;
  }
  .cid-tw2ylTsk5k .mbr-form,
  .cid-tw2ylTsk5k .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-tw2ylTsk5k .footer-title {
  text-align: right;
  color: #232323;
}
.cid-tw2ylTsk5k .mbr-footer-list UL {
  text-align: right;
  color: #232323;
}
.cid-tw2ylTsk5k .footer-main-title {
  color: #232323;
}
.cid-tw6OutoFCT .navbar-dropdown {
  position: relative !important;
}
.cid-tw6OutoFCT .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-tw6OutoFCT .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tw6OutoFCT .dropdown-item:hover,
.cid-tw6OutoFCT .dropdown-item:focus {
  color: #351a44 !important;
}
.cid-tw6OutoFCT .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tw6OutoFCT .nav-link {
  position: relative;
  padding: 0;
}
.cid-tw6OutoFCT .container {
  display: flex;
  margin: auto;
}
.cid-tw6OutoFCT .iconfont-wrapper {
  color: #1d2024 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tw6OutoFCT .dropdown-menu,
.cid-tw6OutoFCT .navbar.opened {
  background: #ffffff !important;
}
.cid-tw6OutoFCT .nav-item:focus,
.cid-tw6OutoFCT .nav-link:focus {
  outline: none;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tw6OutoFCT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tw6OutoFCT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tw6OutoFCT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tw6OutoFCT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tw6OutoFCT .navbar.opened {
  transition: all 0.3s;
}
.cid-tw6OutoFCT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tw6OutoFCT .navbar .navbar-logo img {
  width: auto;
}
.cid-tw6OutoFCT .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tw6OutoFCT .navbar.collapsed {
  justify-content: center;
}
.cid-tw6OutoFCT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tw6OutoFCT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tw6OutoFCT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tw6OutoFCT .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-tw6OutoFCT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tw6OutoFCT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tw6OutoFCT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tw6OutoFCT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tw6OutoFCT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tw6OutoFCT .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-tw6OutoFCT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tw6OutoFCT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tw6OutoFCT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tw6OutoFCT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tw6OutoFCT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tw6OutoFCT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tw6OutoFCT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tw6OutoFCT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tw6OutoFCT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tw6OutoFCT .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tw6OutoFCT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tw6OutoFCT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tw6OutoFCT .dropdown-item.active,
.cid-tw6OutoFCT .dropdown-item:active {
  background-color: transparent;
}
.cid-tw6OutoFCT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tw6OutoFCT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tw6OutoFCT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tw6OutoFCT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tw6OutoFCT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tw6OutoFCT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tw6OutoFCT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tw6OutoFCT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tw6OutoFCT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tw6OutoFCT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tw6OutoFCT .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tw6OutoFCT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tw6OutoFCT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 0;
  padding-top: 1.5rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tw6OutoFCT .navbar {
    height: 70px;
  }
  .cid-tw6OutoFCT .navbar.opened {
    height: auto;
  }
  .cid-tw6OutoFCT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tw6OutoFCT .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tw6OutoFCT .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-tw6OutoFCT a {
  display: inline;
  font-weight: bold;
}
.cid-tw6OutoFCT img {
  display: inline;
  padding-right: 10px;
}
.cid-tw6OutoFCT .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tw6OutoFCT .dropdown-item:hover {
  color: #8b8d8d !important;
}
@media (max-width: 990px) {
  .cid-tw6OutoFCT .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tw6OutoFCT .collapse .btn {
    margin: 11px 21px 18px;
  }
  .cid-tw6OutoFCT .right-side {
    flex-direction: column;
  }
  .cid-tw6OutoFCT ul {
    margin-left: 0 !important;
  }
}
.cid-tw6OutoFCT .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .cid-tw6OutoFCT .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-tw6OutoFCT .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-tw6OutoFCT .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-tw6OutoFCT .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tw6OutoFCT .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tw6OutoFCT .nav-link:before {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tw6OutoFCT ul {
  margin-left: 15%;
}
.cid-tw6OutoFCT .right-side {
  display: flex;
}
@media (min-width: 990px) and (max-width: 1050px) {
  .cid-tw6OutoFCT ul {
    margin-left: 50px !important;
  }
}
.cid-tw6OutoFCT .btn {
  border-radius: 50px;
}
