.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 3.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.125rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.88rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.52rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.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.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))));
  }
  .display-7 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #de2561 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #de2561 !important;
  border-color: #de2561 !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: #961740 !important;
  border-color: #961740 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #961740 !important;
  border-color: #961740 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #08509f !important;
  border-color: #08509f !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: #04264c !important;
  border-color: #04264c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #04264c !important;
  border-color: #04264c !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #de2561;
  color: #de2561;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #961740 !important;
  background-color: transparent!important;
  border-color: #961740 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #de2561 !important;
  border-color: #de2561 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #08509f;
  color: #08509f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #04264c !important;
  background-color: transparent!important;
  border-color: #04264c !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #08509f !important;
  border-color: #08509f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #de2561 !important;
}
.text-secondary {
  color: #08509f !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #88153a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #031f3e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #de2561;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #de2561;
  border-color: #de2561;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #de2561;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f9d6e1;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 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: #de2561 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', 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: #de2561;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #de2561;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #de2561;
}
.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: #de2561;
  border-bottom-color: #de2561;
}
.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: #de2561 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #08509f !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='%23de2561' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tA0HWYhsyd {
  z-index: 1000;
  width: 100%;
}
.cid-tA0HWYhsyd nav.navbar {
  position: fixed;
}
.cid-tA0HWYhsyd .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-tA0HWYhsyd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tA0HWYhsyd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tA0HWYhsyd .dropdown-item:hover,
.cid-tA0HWYhsyd .dropdown-item:focus {
  background: #de2561 !important;
  color: white !important;
}
.cid-tA0HWYhsyd .dropdown-item:hover span {
  color: white;
}
.cid-tA0HWYhsyd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tA0HWYhsyd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tA0HWYhsyd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tA0HWYhsyd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tA0HWYhsyd .nav-link {
  position: relative;
}
.cid-tA0HWYhsyd .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .container {
    flex-wrap: nowrap;
  }
}
.cid-tA0HWYhsyd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tA0HWYhsyd .dropdown-menu,
.cid-tA0HWYhsyd .navbar.opened {
  background: #ffffff !important;
}
.cid-tA0HWYhsyd .nav-item:focus,
.cid-tA0HWYhsyd .nav-link:focus {
  outline: none;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tA0HWYhsyd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tA0HWYhsyd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tA0HWYhsyd .navbar {
  min-height: 71px;
  transition: all 0.4s ease-out;
  position: absolute;
  padding: 35px 40px !important;
  background-color: transparent;
  box-sizing: content-box;
  box-shadow: none !important;
}
.cid-tA0HWYhsyd .navbar.opened {
  transition: all 0.3s;
}
.cid-tA0HWYhsyd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tA0HWYhsyd .navbar .navbar-logo img {
  width: auto;
}
.cid-tA0HWYhsyd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tA0HWYhsyd .navbar.collapsed {
  justify-content: center;
}
.cid-tA0HWYhsyd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tA0HWYhsyd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-tA0HWYhsyd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tA0HWYhsyd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tA0HWYhsyd .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-tA0HWYhsyd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tA0HWYhsyd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tA0HWYhsyd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tA0HWYhsyd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tA0HWYhsyd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tA0HWYhsyd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tA0HWYhsyd .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-tA0HWYhsyd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tA0HWYhsyd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tA0HWYhsyd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tA0HWYhsyd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tA0HWYhsyd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tA0HWYhsyd .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tA0HWYhsyd .navbar.navbar-short {
  min-height: 60px;
}
.cid-tA0HWYhsyd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tA0HWYhsyd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tA0HWYhsyd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tA0HWYhsyd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tA0HWYhsyd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tA0HWYhsyd .dropdown-item.active,
.cid-tA0HWYhsyd .dropdown-item:active {
  background-color: transparent;
}
.cid-tA0HWYhsyd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tA0HWYhsyd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tA0HWYhsyd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tA0HWYhsyd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tA0HWYhsyd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tA0HWYhsyd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tA0HWYhsyd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tA0HWYhsyd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-tA0HWYhsyd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tA0HWYhsyd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tA0HWYhsyd .navbar {
    height: 70px;
  }
  .cid-tA0HWYhsyd .navbar.opened {
    height: auto;
  }
  .cid-tA0HWYhsyd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tA0HWYhsyd .navbar-short {
  padding: 5px 40px !important;
  background-color: #ffffff;
  box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.1);
}
.cid-tA0HWYhsyd .container-fluid {
  padding: 0 !important;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .container-fluid .show {
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .navbar-nav {
    margin-right: auto;
    margin-left: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .cid-tA0HWYhsyd .navbar-nav {
    margin-left: 40px;
  }
}
@media (min-width: 1400px) {
  .cid-tA0HWYhsyd .navbar-nav {
    margin-left: 145px;
  }
}
.cid-tA0HWYhsyd .nav-item a:hover {
  color: #ffffff !important;
}
.cid-tA0HWYhsyd .nav-item .nav-link {
  position: relative !important;
}
.cid-tA0HWYhsyd .nav-item .nav-link:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #de2561;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: 0 100%;
  opacity: 0;
  transition: transform 0.3s ease-in-out;
}
.cid-tA0HWYhsyd .nav-item .nav-link:hover {
  color: #de2561 !important;
}
.cid-tA0HWYhsyd .nav-item .nav-link:hover:before {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .nav-item .show {
    padding-bottom: 0;
  }
}
.cid-tA0HWYhsyd .tel-menu {
  transition: 0s all !important;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .tel-menu {
    margin-right: 48px;
    margin-left: auto;
    order: 49;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-tA0HWYhsyd .tel-menu {
    display: none;
  }
}
.cid-tA0HWYhsyd .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-bottom: 0;
  word-break: normal;
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .mbr-text {
    text-align: center !important;
  }
}
.cid-tA0HWYhsyd .mbr-text a {
  opacity: 1;
  text-decoration: underline;
}
.cid-tA0HWYhsyd .mbr-section-btn {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .mbr-section-btn {
    justify-content: center;
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .mbr-section-btn {
    max-width: 35%;
    margin-left: -0.6rem !important;
    margin-right: -0.6rem !important;
    order: 50;
  }
}
.cid-tA0HWYhsyd .mbr-section-btn .btn {
  max-width: 200px;
  width: 200px;
  min-height: 55px;
  padding: 5px 10px;
  border-radius: 9px;
}
.cid-tA0HWYhsyd .mbr-section-btn .btn:hover:before {
  display: none;
}
.cid-tA0HWYhsyd .navbar-toggler:before {
  content: '';
  position: absolute;
  right: -7px;
  top: -10px;
  width: 44px;
  height: 38px;
  background-color: #de2561;
  border-radius: 0.25rem;
}
.cid-txrmfgNUZH {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/05-colorful-party-balloons-isolated-white-background-1-2000x1125.jpg");
}
.cid-txrmfgNUZH .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-txrmfgNUZH .mbr-text,
.cid-txrmfgNUZH .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-sFzz5E692j {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sFzz5E692j .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzz5E692j .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sFzz5E692j .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sFzz5E692j .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-txrTX6jZnD {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-txrTX6jZnD .mbr-fallback-image.disabled {
  display: none;
}
.cid-txrTX6jZnD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txrTX6jZnD .mbr-section-title {
  text-align: left;
}
.cid-txrTX6jZnD .mbr-section-subtitle {
  text-align: left;
}
.cid-txrxElbXTe {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txrxElbXTe .row {
  justify-content: center;
}
.cid-txrxElbXTe .card {
  padding: 0 15px;
  height: 453px;
  position: relative;
  margin-bottom: 30px;
}
.cid-txrxElbXTe .card img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  padding: 0 15px;
}
.cid-txrxElbXTe .item-wrapper {
  height: 100%;
}
.cid-txrxElbXTe .card-link {
  position: relative;
  height: 100%;
  z-index: 1;
  transition: all .4s ease;
  pointer-events: none;
}
.cid-txrxElbXTe .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.3em;
  transition: all .4s ease;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-txrxElbXTe .card-wrapper {
    padding: 1.8em;
  }
}
.cid-txrxElbXTe .mbr-number {
  margin: 0;
  opacity: 0;
  transition: all .4s ease;
  transform: translate(0, -30%);
  pointer-events: visible;
  color: #fff;
}
.cid-txrxElbXTe .mbr-title {
  margin-bottom: 1rem;
  pointer-events: visible;
  color: #fff;
}
.cid-txrxElbXTe .mbr-text {
  margin: 0;
  opacity: 0;
  transition: all .4s ease;
  pointer-events: visible;
  color: #EAEAEA;
}
.cid-txrxElbXTe .card-text {
  transform: translate(0, 50%);
  transition: all .4s ease;
}
.cid-txrxElbXTe .card:hover .mbr-number {
  opacity: 1;
  transform: translate(0, 0);
}
.cid-txrxElbXTe .card:hover .mbr-text {
  opacity: .7;
}
.cid-txrxElbXTe .card:hover .card-text {
  transform: translate(0, 0);
}
.cid-txrxElbXTe .card:hover .card-wrapper {
  background: #de2561;
}
.cid-txszTyrk5Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/closeup-shot-tall-trees-middle-green-forest-2000x1334.jpg");
}
.cid-txszTyrk5Q .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-txszTyrk5Q .text-wrapper {
    padding: 2rem;
  }
}
.cid-txszTyrk5Q .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .cid-txszTyrk5Q .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-txszTyrk5Q .name {
  color: #ffffff;
}
.cid-txszTyrk5Q .mbr-text {
  padding: 0;
  margin: 0;
  padding-top: 25px;
  color: #ffffff;
}
.cid-tyKzV0ZAEV {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tyKzV0ZAEV .content {
    text-align: center;
  }
  .cid-tyKzV0ZAEV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tyKzV0ZAEV .logo-subtitle {
  color: #8d97ad;
}
.cid-tyKzV0ZAEV .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tyKzV0ZAEV .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tyKzV0ZAEV .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tyKzV0ZAEV .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tyKzV0ZAEV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tyKzV0ZAEV .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tyKzV0ZAEV .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tyKzV0ZAEV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tyKzV0ZAEV .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tyKzV0ZAEV .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tyKzV0ZAEV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tyKzV0ZAEV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tyKzV0ZAEV .list-item {
  display: flex;
}
.cid-tyKzV0ZAEV .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tyKzV0ZAEV ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tyKzV0ZAEV ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tyKzV0ZAEV ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tyKzV0ZAEV .copyright > p {
  color: #000000;
  text-align: left;
}
.cid-tyKzV0ZAEV .column-title {
  color: #232323;
  text-align: left;
}
.cid-tyKzV0ZAEV .mbr-text {
  color: #575757;
}
.cid-tyKzV0ZAEV P {
  color: #575757;
  text-align: left;
}
.cid-tyKzV0ZAEV .logo-subtitle,
.cid-tyKzV0ZAEV .media-wrap {
  color: #575757;
}
.cid-txt1i67C5E {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/classic-interior-walls-with-bunch-balloons-present-box-walls-with-mouldings-panels-2000x1263.jpg");
}
.cid-txt1i67C5E .mbr-section-title {
  color: #de2561;
  text-align: left;
}
.cid-txt1i67C5E .mbr-text,
.cid-txt1i67C5E .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-txt1i67C5E .mbr-section-subtitle {
  color: #000000;
}
.cid-tytIYdOsia {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tytIYdOsia .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #de2561;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  overflow: visible;
}
.cid-tytIYdOsia .row {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 5rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tytIYdOsia .row {
    padding: 3rem 1rem;
  }
}
.cid-tytIYdOsia .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tytIYdOsia .card-wrapper {
  overflow: visible;
}
.cid-tytIYdOsia .card-text {
  color: #000000;
}
.cid-tytIYdOsia .card-title,
.cid-tytIYdOsia .iconfont-wrapper {
  color: #de2561;
}
.cid-tytIYdOsia .mbr-section-subtitle {
  color: #263d5a;
}
.cid-tytIYdOsia .mbr-section-title {
  color: #263d5a;
}
@media (max-width: 992px) {
  .cid-tytIYdOsia .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tytIYdOsia .card-link {
  color: #263d5a;
}
.cid-txt2BgHNDC {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-txt2BgHNDC .mbr-section-title {
  margin-bottom: 25px;
  text-align: center;
}
.cid-txt2BgHNDC .mbr-text {
  color: #919dab;
  margin-bottom: 25px;
  text-align: center;
}
.cid-txt2BgHNDC .tel {
  margin-bottom: 0;
}
.cid-txt2BgHNDC .tel .mbr-iconfont {
  width: 30px;
  font-size: 18px !important;
  color: #47b5ed;
}
.cid-txt2BgHNDC .subscribe__form {
  margin-top: 40px;
}
.cid-txt2BgHNDC .form-group {
  margin-bottom: 0;
}
.cid-txt2BgHNDC .dragArea .form-control {
  color: #919dab;
  margin-bottom: 30px;
  border: 2px solid rgba(235, 234, 237, 0.4) !important;
  font-weight: 700;
  padding: 0 25px;
  height: 60px !important;
  line-height: 32px !important;
  font-size: 18px !important;
  border-radius: 30px;
  background-color: #ffffff !important;
}
.cid-txt2BgHNDC .dragArea .jq-selectbox__select {
  padding: 12px 25px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.cid-txt2BgHNDC .dragArea .jq-selectbox__select-text {
  opacity: .6;
}
.cid-txt2BgHNDC .dragArea .jq-selectbox__trigger-arrow {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 7px;
  height: 7px !important;
  top: 40%;
  right: auto !important;
  border-color: #de2561 !important;
}
.cid-txt2BgHNDC .dragArea textarea {
  height: 170px !important;
  border-radius: 10px !important;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  resize: none;
}
.cid-txt2BgHNDC .dragArea input::placeholder {
  color: #919dab;
  opacity: .6;
}
.cid-txt2BgHNDC .dragArea textarea::placeholder {
  color: #919dab;
  opacity: .6;
}
.cid-txt2BgHNDC .dragArea .input-group-btn .btn {
  margin: 0;
  font-weight: 700;
  height: 60px !important;
}
.cid-txt2BgHNDC .help__block {
  margin-top: 30px;
}
.cid-txt2BgHNDC .title__help {
  margin-bottom: 10px;
}
.cid-txt2BgHNDC .text__help {
  color: #919dab;
  margin-bottom: 0;
}
.cid-txt2BgHNDC .mbr-fallback-image.disabled {
  display: none;
}
.cid-txt2BgHNDC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txt1i8MZoC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/closeup-shot-tall-trees-middle-green-forest-2000x1334.jpg");
}
.cid-txt1i8MZoC .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-txt1i8MZoC .text-wrapper {
    padding: 2rem;
  }
}
.cid-txt1i8MZoC .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .cid-txt1i8MZoC .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-txt1i8MZoC .name {
  color: #ffffff;
}
.cid-txt1i8MZoC .mbr-text {
  padding: 0;
  margin: 0;
  padding-top: 25px;
  color: #ffffff;
}
.cid-tyKzV0ZAEV {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tyKzV0ZAEV .content {
    text-align: center;
  }
  .cid-tyKzV0ZAEV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tyKzV0ZAEV .logo-subtitle {
  color: #8d97ad;
}
.cid-tyKzV0ZAEV .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tyKzV0ZAEV .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tyKzV0ZAEV .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tyKzV0ZAEV .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tyKzV0ZAEV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tyKzV0ZAEV .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tyKzV0ZAEV .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tyKzV0ZAEV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tyKzV0ZAEV .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tyKzV0ZAEV .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tyKzV0ZAEV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tyKzV0ZAEV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tyKzV0ZAEV .list-item {
  display: flex;
}
.cid-tyKzV0ZAEV .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tyKzV0ZAEV ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tyKzV0ZAEV ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tyKzV0ZAEV ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tyKzV0ZAEV .copyright > p {
  color: #000000;
  text-align: left;
}
.cid-tyKzV0ZAEV .column-title {
  color: #232323;
  text-align: left;
}
.cid-tyKzV0ZAEV .mbr-text {
  color: #575757;
}
.cid-tyKzV0ZAEV P {
  color: #575757;
  text-align: left;
}
.cid-tyKzV0ZAEV .logo-subtitle,
.cid-tyKzV0ZAEV .media-wrap {
  color: #575757;
}
.cid-tA0HWYhsyd {
  z-index: 1000;
  width: 100%;
}
.cid-tA0HWYhsyd nav.navbar {
  position: fixed;
}
.cid-tA0HWYhsyd .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-tA0HWYhsyd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tA0HWYhsyd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tA0HWYhsyd .dropdown-item:hover,
.cid-tA0HWYhsyd .dropdown-item:focus {
  background: #de2561 !important;
  color: white !important;
}
.cid-tA0HWYhsyd .dropdown-item:hover span {
  color: white;
}
.cid-tA0HWYhsyd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tA0HWYhsyd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tA0HWYhsyd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tA0HWYhsyd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tA0HWYhsyd .nav-link {
  position: relative;
}
.cid-tA0HWYhsyd .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .container {
    flex-wrap: nowrap;
  }
}
.cid-tA0HWYhsyd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tA0HWYhsyd .dropdown-menu,
.cid-tA0HWYhsyd .navbar.opened {
  background: #ffffff !important;
}
.cid-tA0HWYhsyd .nav-item:focus,
.cid-tA0HWYhsyd .nav-link:focus {
  outline: none;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tA0HWYhsyd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tA0HWYhsyd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tA0HWYhsyd .navbar {
  min-height: 71px;
  transition: all 0.4s ease-out;
  position: absolute;
  padding: 35px 40px !important;
  background-color: transparent;
  box-sizing: content-box;
  box-shadow: none !important;
}
.cid-tA0HWYhsyd .navbar.opened {
  transition: all 0.3s;
}
.cid-tA0HWYhsyd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tA0HWYhsyd .navbar .navbar-logo img {
  width: auto;
}
.cid-tA0HWYhsyd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tA0HWYhsyd .navbar.collapsed {
  justify-content: center;
}
.cid-tA0HWYhsyd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tA0HWYhsyd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-tA0HWYhsyd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tA0HWYhsyd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tA0HWYhsyd .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-tA0HWYhsyd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tA0HWYhsyd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tA0HWYhsyd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tA0HWYhsyd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tA0HWYhsyd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tA0HWYhsyd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tA0HWYhsyd .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-tA0HWYhsyd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tA0HWYhsyd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tA0HWYhsyd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tA0HWYhsyd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tA0HWYhsyd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tA0HWYhsyd .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tA0HWYhsyd .navbar.navbar-short {
  min-height: 60px;
}
.cid-tA0HWYhsyd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tA0HWYhsyd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tA0HWYhsyd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tA0HWYhsyd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tA0HWYhsyd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tA0HWYhsyd .dropdown-item.active,
.cid-tA0HWYhsyd .dropdown-item:active {
  background-color: transparent;
}
.cid-tA0HWYhsyd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tA0HWYhsyd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tA0HWYhsyd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tA0HWYhsyd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tA0HWYhsyd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tA0HWYhsyd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tA0HWYhsyd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tA0HWYhsyd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-tA0HWYhsyd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tA0HWYhsyd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tA0HWYhsyd .navbar {
    height: 70px;
  }
  .cid-tA0HWYhsyd .navbar.opened {
    height: auto;
  }
  .cid-tA0HWYhsyd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tA0HWYhsyd .navbar-short {
  padding: 5px 40px !important;
  background-color: #ffffff;
  box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.1);
}
.cid-tA0HWYhsyd .container-fluid {
  padding: 0 !important;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .container-fluid .show {
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .navbar-nav {
    margin-right: auto;
    margin-left: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .cid-tA0HWYhsyd .navbar-nav {
    margin-left: 40px;
  }
}
@media (min-width: 1400px) {
  .cid-tA0HWYhsyd .navbar-nav {
    margin-left: 145px;
  }
}
.cid-tA0HWYhsyd .nav-item a:hover {
  color: #ffffff !important;
}
.cid-tA0HWYhsyd .nav-item .nav-link {
  position: relative !important;
}
.cid-tA0HWYhsyd .nav-item .nav-link:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #de2561;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: 0 100%;
  opacity: 0;
  transition: transform 0.3s ease-in-out;
}
.cid-tA0HWYhsyd .nav-item .nav-link:hover {
  color: #de2561 !important;
}
.cid-tA0HWYhsyd .nav-item .nav-link:hover:before {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .nav-item .show {
    padding-bottom: 0;
  }
}
.cid-tA0HWYhsyd .tel-menu {
  transition: 0s all !important;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .tel-menu {
    margin-right: 48px;
    margin-left: auto;
    order: 49;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-tA0HWYhsyd .tel-menu {
    display: none;
  }
}
.cid-tA0HWYhsyd .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-bottom: 0;
  word-break: normal;
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .mbr-text {
    text-align: center !important;
  }
}
.cid-tA0HWYhsyd .mbr-text a {
  opacity: 1;
  text-decoration: underline;
}
.cid-tA0HWYhsyd .mbr-section-btn {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .mbr-section-btn {
    justify-content: center;
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .mbr-section-btn {
    max-width: 35%;
    margin-left: -0.6rem !important;
    margin-right: -0.6rem !important;
    order: 50;
  }
}
.cid-tA0HWYhsyd .mbr-section-btn .btn {
  max-width: 200px;
  width: 200px;
  min-height: 55px;
  padding: 5px 10px;
  border-radius: 9px;
}
.cid-tA0HWYhsyd .mbr-section-btn .btn:hover:before {
  display: none;
}
.cid-tA0HWYhsyd .navbar-toggler:before {
  content: '';
  position: absolute;
  right: -7px;
  top: -10px;
  width: 44px;
  height: 38px;
  background-color: #de2561;
  border-radius: 0.25rem;
}
.cid-txst3LMOst {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/white-balloons-gray-background-birthday-party-new-year-background-2000x1000.jpg");
}
.cid-txst3LMOst .mbr-section-title {
  color: #de2561;
  text-align: left;
}
.cid-txst3LMOst .mbr-text,
.cid-txst3LMOst .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-txst3LMOst .mbr-section-subtitle {
  color: #000000;
}
.cid-txst3MAFvB {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-txst3MAFvB .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-txst3MAFvB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-txst3MAFvB .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-txst3MAFvB .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tyzdi42mGr {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tyzdi42mGr .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #103178;
  margin-bottom: 2rem;
}
.cid-tyzdi42mGr .card-wrapper {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.cid-tyzdi42mGr .row {
  justify-content: center;
}
@media (min-width: 1400px) {
  .cid-tyzdi42mGr .card {
    max-width: 14.2%;
  }
}
.cid-tyzdi42mGr .card-title,
.cid-tyzdi42mGr .iconfont-wrapper {
  color: #000000;
}
.cid-txsDyxVSUm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/closeup-shot-tall-trees-middle-green-forest-2000x1334.jpg");
}
.cid-txsDyxVSUm .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-txsDyxVSUm .text-wrapper {
    padding: 2rem;
  }
}
.cid-txsDyxVSUm .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .cid-txsDyxVSUm .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-txsDyxVSUm .name {
  color: #ffffff;
}
.cid-txsDyxVSUm .mbr-text {
  padding: 0;
  margin: 0;
  padding-top: 25px;
  color: #ffffff;
}
.cid-tyKzV0ZAEV {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tyKzV0ZAEV .content {
    text-align: center;
  }
  .cid-tyKzV0ZAEV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tyKzV0ZAEV .logo-subtitle {
  color: #8d97ad;
}
.cid-tyKzV0ZAEV .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tyKzV0ZAEV .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tyKzV0ZAEV .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tyKzV0ZAEV .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tyKzV0ZAEV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tyKzV0ZAEV .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tyKzV0ZAEV .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tyKzV0ZAEV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tyKzV0ZAEV .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tyKzV0ZAEV .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tyKzV0ZAEV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tyKzV0ZAEV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tyKzV0ZAEV .list-item {
  display: flex;
}
.cid-tyKzV0ZAEV .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tyKzV0ZAEV ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tyKzV0ZAEV ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tyKzV0ZAEV ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tyKzV0ZAEV .copyright > p {
  color: #000000;
  text-align: left;
}
.cid-tyKzV0ZAEV .column-title {
  color: #232323;
  text-align: left;
}
.cid-tyKzV0ZAEV .mbr-text {
  color: #575757;
}
.cid-tyKzV0ZAEV P {
  color: #575757;
  text-align: left;
}
.cid-tyKzV0ZAEV .logo-subtitle,
.cid-tyKzV0ZAEV .media-wrap {
  color: #575757;
}
.cid-tA0HWYhsyd {
  z-index: 1000;
  width: 100%;
}
.cid-tA0HWYhsyd nav.navbar {
  position: fixed;
}
.cid-tA0HWYhsyd .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-tA0HWYhsyd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tA0HWYhsyd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tA0HWYhsyd .dropdown-item:hover,
.cid-tA0HWYhsyd .dropdown-item:focus {
  background: #de2561 !important;
  color: white !important;
}
.cid-tA0HWYhsyd .dropdown-item:hover span {
  color: white;
}
.cid-tA0HWYhsyd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tA0HWYhsyd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tA0HWYhsyd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tA0HWYhsyd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tA0HWYhsyd .nav-link {
  position: relative;
}
.cid-tA0HWYhsyd .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .container {
    flex-wrap: nowrap;
  }
}
.cid-tA0HWYhsyd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tA0HWYhsyd .dropdown-menu,
.cid-tA0HWYhsyd .navbar.opened {
  background: #ffffff !important;
}
.cid-tA0HWYhsyd .nav-item:focus,
.cid-tA0HWYhsyd .nav-link:focus {
  outline: none;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tA0HWYhsyd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tA0HWYhsyd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tA0HWYhsyd .navbar {
  min-height: 71px;
  transition: all 0.4s ease-out;
  position: absolute;
  padding: 35px 40px !important;
  background-color: transparent;
  box-sizing: content-box;
  box-shadow: none !important;
}
.cid-tA0HWYhsyd .navbar.opened {
  transition: all 0.3s;
}
.cid-tA0HWYhsyd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tA0HWYhsyd .navbar .navbar-logo img {
  width: auto;
}
.cid-tA0HWYhsyd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tA0HWYhsyd .navbar.collapsed {
  justify-content: center;
}
.cid-tA0HWYhsyd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tA0HWYhsyd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-tA0HWYhsyd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tA0HWYhsyd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tA0HWYhsyd .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-tA0HWYhsyd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tA0HWYhsyd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tA0HWYhsyd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tA0HWYhsyd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tA0HWYhsyd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tA0HWYhsyd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tA0HWYhsyd .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-tA0HWYhsyd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tA0HWYhsyd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tA0HWYhsyd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tA0HWYhsyd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tA0HWYhsyd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tA0HWYhsyd .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tA0HWYhsyd .navbar.navbar-short {
  min-height: 60px;
}
.cid-tA0HWYhsyd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tA0HWYhsyd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tA0HWYhsyd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tA0HWYhsyd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tA0HWYhsyd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tA0HWYhsyd .dropdown-item.active,
.cid-tA0HWYhsyd .dropdown-item:active {
  background-color: transparent;
}
.cid-tA0HWYhsyd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tA0HWYhsyd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tA0HWYhsyd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tA0HWYhsyd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tA0HWYhsyd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tA0HWYhsyd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tA0HWYhsyd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tA0HWYhsyd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-tA0HWYhsyd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tA0HWYhsyd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tA0HWYhsyd .navbar {
    height: 70px;
  }
  .cid-tA0HWYhsyd .navbar.opened {
    height: auto;
  }
  .cid-tA0HWYhsyd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tA0HWYhsyd .navbar-short {
  padding: 5px 40px !important;
  background-color: #ffffff;
  box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.1);
}
.cid-tA0HWYhsyd .container-fluid {
  padding: 0 !important;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .container-fluid .show {
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .navbar-nav {
    margin-right: auto;
    margin-left: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .cid-tA0HWYhsyd .navbar-nav {
    margin-left: 40px;
  }
}
@media (min-width: 1400px) {
  .cid-tA0HWYhsyd .navbar-nav {
    margin-left: 145px;
  }
}
.cid-tA0HWYhsyd .nav-item a:hover {
  color: #ffffff !important;
}
.cid-tA0HWYhsyd .nav-item .nav-link {
  position: relative !important;
}
.cid-tA0HWYhsyd .nav-item .nav-link:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #de2561;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: 0 100%;
  opacity: 0;
  transition: transform 0.3s ease-in-out;
}
.cid-tA0HWYhsyd .nav-item .nav-link:hover {
  color: #de2561 !important;
}
.cid-tA0HWYhsyd .nav-item .nav-link:hover:before {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .nav-item .show {
    padding-bottom: 0;
  }
}
.cid-tA0HWYhsyd .tel-menu {
  transition: 0s all !important;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .tel-menu {
    margin-right: 48px;
    margin-left: auto;
    order: 49;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-tA0HWYhsyd .tel-menu {
    display: none;
  }
}
.cid-tA0HWYhsyd .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-bottom: 0;
  word-break: normal;
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .mbr-text {
    text-align: center !important;
  }
}
.cid-tA0HWYhsyd .mbr-text a {
  opacity: 1;
  text-decoration: underline;
}
.cid-tA0HWYhsyd .mbr-section-btn {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .mbr-section-btn {
    justify-content: center;
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .mbr-section-btn {
    max-width: 35%;
    margin-left: -0.6rem !important;
    margin-right: -0.6rem !important;
    order: 50;
  }
}
.cid-tA0HWYhsyd .mbr-section-btn .btn {
  max-width: 200px;
  width: 200px;
  min-height: 55px;
  padding: 5px 10px;
  border-radius: 9px;
}
.cid-tA0HWYhsyd .mbr-section-btn .btn:hover:before {
  display: none;
}
.cid-tA0HWYhsyd .navbar-toggler:before {
  content: '';
  position: absolute;
  right: -7px;
  top: -10px;
  width: 44px;
  height: 38px;
  background-color: #de2561;
  border-radius: 0.25rem;
}
.cid-tyEe7nZrKI {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/colorful-balloons-white-background.jpg");
}
.cid-tyEe7nZrKI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tyEe7nZrKI .mbr-text,
.cid-tyEe7nZrKI .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tyEe7nZrKI .mbr-section-subtitle {
  color: #000000;
}
.cid-tyKqXBT26D {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tyKqXBT26D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyKqXBT26D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tyKqXBT26D .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tyKqXBT26D img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tyKqXBT26D .text-wrapper {
    padding: 2rem;
  }
}
.cid-tA5ByEEEyz {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tA5ByEEEyz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tA5ByEEEyz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyElHCCuhm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tyElHCCuhm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tyElHCCuhm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tyElHCCuhm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tyElHCCuhm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tyElHCCuhm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tyElHCCuhm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tyElHCCuhm .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-tyElHCCuhm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tyElHCCuhm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #ffffff !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tyElHCCuhm .mbr-gallery-item > div > span {
  color: #232323;
  text-align: left;
}
.cid-tyElKj2JQ9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tyElKj2JQ9 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tyElKj2JQ9 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tyElKj2JQ9 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tyElKj2JQ9 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tyElKj2JQ9 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tyElKj2JQ9 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tyElKj2JQ9 .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-tyElKj2JQ9 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tyElKj2JQ9 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #ffffff !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tyElKj2JQ9 .mbr-gallery-item > div > span {
  color: #232323;
  text-align: left;
}
.cid-tyEmhW87jD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tyEmhW87jD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tyEmhW87jD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tyEmhW87jD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tyEmhW87jD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tyEmhW87jD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tyEmhW87jD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tyEmhW87jD .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-tyEmhW87jD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tyEmhW87jD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #ffffff !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tyEmhW87jD .mbr-gallery-item > div > span {
  color: #232323;
  text-align: left;
}
.cid-tyElMjt3kY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tyElMjt3kY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tyElMjt3kY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tyElMjt3kY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tyElMjt3kY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tyElMjt3kY .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tyElMjt3kY .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tyElMjt3kY .mbr-gallery-item > div:hover:before {
  opacity: 0.1 !important;
}
.cid-tyElMjt3kY .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tyElMjt3kY .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #ffffff !important;
  opacity: 0.1;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tyElMjt3kY .mbr-gallery-item > div > span {
  color: #232323;
  text-align: left;
}
.cid-tA5BzV3fOh {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tA5BzV3fOh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tA5BzV3fOh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tA5BsAnmXh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tA5BsAnmXh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tA5BsAnmXh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tA5BsAnmXh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tA5BsAnmXh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tA5BsAnmXh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tA5BsAnmXh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tA5BsAnmXh .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-tA5BsAnmXh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tA5BsAnmXh .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #ffffff !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tA5BsAnmXh .mbr-gallery-item > div > span {
  color: #232323;
  text-align: center;
}
.cid-tA5BuXS9bT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tA5BuXS9bT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tA5BuXS9bT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tA5BuXS9bT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tA5BuXS9bT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tA5BuXS9bT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tA5BuXS9bT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tA5BuXS9bT .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-tA5BuXS9bT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tA5BuXS9bT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #ffffff !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tA5BuXS9bT .mbr-gallery-item > div > span {
  color: #232323;
  text-align: center;
}
.cid-tA5BtOV1DB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tA5BtOV1DB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tA5BtOV1DB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tA5BtOV1DB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tA5BtOV1DB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tA5BtOV1DB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tA5BtOV1DB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tA5BtOV1DB .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-tA5BtOV1DB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tA5BtOV1DB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #ffffff !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tA5BtOV1DB .mbr-gallery-item > div > span {
  color: #232323;
  text-align: center;
}
.cid-tA5CUhqDD0 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tA5CUhqDD0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tA5CUhqDD0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tA5CRZcRIG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tA5CRZcRIG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tA5CRZcRIG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tA5CRZcRIG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tA5CRZcRIG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tA5CRZcRIG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tA5CRZcRIG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tA5CRZcRIG .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-tA5CRZcRIG .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tA5CRZcRIG .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #ffffff !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tA5CRZcRIG .mbr-gallery-item > div > span {
  color: #232323;
  text-align: center;
}
.cid-tyEe7s7nmz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/closeup-shot-tall-trees-middle-green-forest-2000x1334.jpg");
}
.cid-tyEe7s7nmz .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tyEe7s7nmz .text-wrapper {
    padding: 2rem;
  }
}
.cid-tyEe7s7nmz .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .cid-tyEe7s7nmz .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tyEe7s7nmz .name {
  color: #ffffff;
}
.cid-tyEe7s7nmz .mbr-text {
  padding: 0;
  margin: 0;
  padding-top: 25px;
  color: #ffffff;
}
.cid-tyKzV0ZAEV {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tyKzV0ZAEV .content {
    text-align: center;
  }
  .cid-tyKzV0ZAEV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tyKzV0ZAEV .logo-subtitle {
  color: #8d97ad;
}
.cid-tyKzV0ZAEV .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tyKzV0ZAEV .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tyKzV0ZAEV .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tyKzV0ZAEV .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tyKzV0ZAEV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tyKzV0ZAEV .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tyKzV0ZAEV .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tyKzV0ZAEV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tyKzV0ZAEV .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tyKzV0ZAEV .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tyKzV0ZAEV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tyKzV0ZAEV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tyKzV0ZAEV .list-item {
  display: flex;
}
.cid-tyKzV0ZAEV .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tyKzV0ZAEV ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tyKzV0ZAEV ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tyKzV0ZAEV ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tyKzV0ZAEV .copyright > p {
  color: #000000;
  text-align: left;
}
.cid-tyKzV0ZAEV .column-title {
  color: #232323;
  text-align: left;
}
.cid-tyKzV0ZAEV .mbr-text {
  color: #575757;
}
.cid-tyKzV0ZAEV P {
  color: #575757;
  text-align: left;
}
.cid-tyKzV0ZAEV .logo-subtitle,
.cid-tyKzV0ZAEV .media-wrap {
  color: #575757;
}
.cid-tA0HWYhsyd {
  z-index: 1000;
  width: 100%;
}
.cid-tA0HWYhsyd nav.navbar {
  position: fixed;
}
.cid-tA0HWYhsyd .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-tA0HWYhsyd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tA0HWYhsyd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tA0HWYhsyd .dropdown-item:hover,
.cid-tA0HWYhsyd .dropdown-item:focus {
  background: #de2561 !important;
  color: white !important;
}
.cid-tA0HWYhsyd .dropdown-item:hover span {
  color: white;
}
.cid-tA0HWYhsyd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tA0HWYhsyd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tA0HWYhsyd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tA0HWYhsyd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tA0HWYhsyd .nav-link {
  position: relative;
}
.cid-tA0HWYhsyd .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .container {
    flex-wrap: nowrap;
  }
}
.cid-tA0HWYhsyd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tA0HWYhsyd .dropdown-menu,
.cid-tA0HWYhsyd .navbar.opened {
  background: #ffffff !important;
}
.cid-tA0HWYhsyd .nav-item:focus,
.cid-tA0HWYhsyd .nav-link:focus {
  outline: none;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tA0HWYhsyd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tA0HWYhsyd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tA0HWYhsyd .navbar {
  min-height: 71px;
  transition: all 0.4s ease-out;
  position: absolute;
  padding: 35px 40px !important;
  background-color: transparent;
  box-sizing: content-box;
  box-shadow: none !important;
}
.cid-tA0HWYhsyd .navbar.opened {
  transition: all 0.3s;
}
.cid-tA0HWYhsyd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tA0HWYhsyd .navbar .navbar-logo img {
  width: auto;
}
.cid-tA0HWYhsyd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tA0HWYhsyd .navbar.collapsed {
  justify-content: center;
}
.cid-tA0HWYhsyd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tA0HWYhsyd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-tA0HWYhsyd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tA0HWYhsyd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tA0HWYhsyd .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-tA0HWYhsyd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tA0HWYhsyd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tA0HWYhsyd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tA0HWYhsyd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tA0HWYhsyd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tA0HWYhsyd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tA0HWYhsyd .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-tA0HWYhsyd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tA0HWYhsyd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tA0HWYhsyd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tA0HWYhsyd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tA0HWYhsyd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tA0HWYhsyd .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tA0HWYhsyd .navbar.navbar-short {
  min-height: 60px;
}
.cid-tA0HWYhsyd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tA0HWYhsyd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tA0HWYhsyd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tA0HWYhsyd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tA0HWYhsyd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tA0HWYhsyd .dropdown-item.active,
.cid-tA0HWYhsyd .dropdown-item:active {
  background-color: transparent;
}
.cid-tA0HWYhsyd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tA0HWYhsyd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tA0HWYhsyd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tA0HWYhsyd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tA0HWYhsyd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tA0HWYhsyd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tA0HWYhsyd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tA0HWYhsyd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-tA0HWYhsyd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tA0HWYhsyd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tA0HWYhsyd .navbar {
    height: 70px;
  }
  .cid-tA0HWYhsyd .navbar.opened {
    height: auto;
  }
  .cid-tA0HWYhsyd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tA0HWYhsyd .navbar-short {
  padding: 5px 40px !important;
  background-color: #ffffff;
  box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.1);
}
.cid-tA0HWYhsyd .container-fluid {
  padding: 0 !important;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .container-fluid .show {
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .navbar-nav {
    margin-right: auto;
    margin-left: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .cid-tA0HWYhsyd .navbar-nav {
    margin-left: 40px;
  }
}
@media (min-width: 1400px) {
  .cid-tA0HWYhsyd .navbar-nav {
    margin-left: 145px;
  }
}
.cid-tA0HWYhsyd .nav-item a:hover {
  color: #ffffff !important;
}
.cid-tA0HWYhsyd .nav-item .nav-link {
  position: relative !important;
}
.cid-tA0HWYhsyd .nav-item .nav-link:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #de2561;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: 0 100%;
  opacity: 0;
  transition: transform 0.3s ease-in-out;
}
.cid-tA0HWYhsyd .nav-item .nav-link:hover {
  color: #de2561 !important;
}
.cid-tA0HWYhsyd .nav-item .nav-link:hover:before {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .nav-item .show {
    padding-bottom: 0;
  }
}
.cid-tA0HWYhsyd .tel-menu {
  transition: 0s all !important;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .tel-menu {
    margin-right: 48px;
    margin-left: auto;
    order: 49;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-tA0HWYhsyd .tel-menu {
    display: none;
  }
}
.cid-tA0HWYhsyd .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-bottom: 0;
  word-break: normal;
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .mbr-text {
    text-align: center !important;
  }
}
.cid-tA0HWYhsyd .mbr-text a {
  opacity: 1;
  text-decoration: underline;
}
.cid-tA0HWYhsyd .mbr-section-btn {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .mbr-section-btn {
    justify-content: center;
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .mbr-section-btn {
    max-width: 35%;
    margin-left: -0.6rem !important;
    margin-right: -0.6rem !important;
    order: 50;
  }
}
.cid-tA0HWYhsyd .mbr-section-btn .btn {
  max-width: 200px;
  width: 200px;
  min-height: 55px;
  padding: 5px 10px;
  border-radius: 9px;
}
.cid-tA0HWYhsyd .mbr-section-btn .btn:hover:before {
  display: none;
}
.cid-tA0HWYhsyd .navbar-toggler:before {
  content: '';
  position: absolute;
  right: -7px;
  top: -10px;
  width: 44px;
  height: 38px;
  background-color: #de2561;
  border-radius: 0.25rem;
}
.cid-tyEnMxeeUj {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/celebration-concept-close-up-portrait-happy-young-beautiful-african-woman-black-t-shirt-smiling-with-colorful-party-balloon-yellow-pastel-studio-background-1-min-3-2000x1333.jpeg");
}
.cid-tyEnMxeeUj .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tyEnMxeeUj .mbr-text,
.cid-tyEnMxeeUj .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tyEnMxeeUj .mbr-section-subtitle {
  color: #000000;
}
.cid-tyKrr0F0Kv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tyKrr0F0Kv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyKrr0F0Kv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tyKrr0F0Kv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tyKrr0F0Kv img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tyKrr0F0Kv .text-wrapper {
    padding: 2rem;
  }
}
.cid-tyEBiIjHy2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tyEBiIjHy2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyEBiIjHy2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tyEBiIjHy2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tyEBiIjHy2 .row {
  flex-direction: row-reverse;
}
.cid-tyEBiIjHy2 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tyEBiIjHy2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tyEnMAFOmL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/closeup-shot-tall-trees-middle-green-forest-2000x1334.jpg");
}
.cid-tyEnMAFOmL .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tyEnMAFOmL .text-wrapper {
    padding: 2rem;
  }
}
.cid-tyEnMAFOmL .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .cid-tyEnMAFOmL .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tyEnMAFOmL .name {
  color: #ffffff;
}
.cid-tyEnMAFOmL .mbr-text {
  padding: 0;
  margin: 0;
  padding-top: 25px;
  color: #ffffff;
}
.cid-tyKzV0ZAEV {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tyKzV0ZAEV .content {
    text-align: center;
  }
  .cid-tyKzV0ZAEV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tyKzV0ZAEV .logo-subtitle {
  color: #8d97ad;
}
.cid-tyKzV0ZAEV .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tyKzV0ZAEV .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tyKzV0ZAEV .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tyKzV0ZAEV .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tyKzV0ZAEV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tyKzV0ZAEV .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tyKzV0ZAEV .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tyKzV0ZAEV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tyKzV0ZAEV .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tyKzV0ZAEV .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tyKzV0ZAEV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tyKzV0ZAEV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tyKzV0ZAEV .list-item {
  display: flex;
}
.cid-tyKzV0ZAEV .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tyKzV0ZAEV ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tyKzV0ZAEV ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tyKzV0ZAEV ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tyKzV0ZAEV .copyright > p {
  color: #000000;
  text-align: left;
}
.cid-tyKzV0ZAEV .column-title {
  color: #232323;
  text-align: left;
}
.cid-tyKzV0ZAEV .mbr-text {
  color: #575757;
}
.cid-tyKzV0ZAEV P {
  color: #575757;
  text-align: left;
}
.cid-tyKzV0ZAEV .logo-subtitle,
.cid-tyKzV0ZAEV .media-wrap {
  color: #575757;
}
.cid-tA0HWYhsyd {
  z-index: 1000;
  width: 100%;
}
.cid-tA0HWYhsyd nav.navbar {
  position: fixed;
}
.cid-tA0HWYhsyd .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-tA0HWYhsyd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tA0HWYhsyd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tA0HWYhsyd .dropdown-item:hover,
.cid-tA0HWYhsyd .dropdown-item:focus {
  background: #de2561 !important;
  color: white !important;
}
.cid-tA0HWYhsyd .dropdown-item:hover span {
  color: white;
}
.cid-tA0HWYhsyd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tA0HWYhsyd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tA0HWYhsyd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tA0HWYhsyd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tA0HWYhsyd .nav-link {
  position: relative;
}
.cid-tA0HWYhsyd .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .container {
    flex-wrap: nowrap;
  }
}
.cid-tA0HWYhsyd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tA0HWYhsyd .dropdown-menu,
.cid-tA0HWYhsyd .navbar.opened {
  background: #ffffff !important;
}
.cid-tA0HWYhsyd .nav-item:focus,
.cid-tA0HWYhsyd .nav-link:focus {
  outline: none;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tA0HWYhsyd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tA0HWYhsyd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tA0HWYhsyd .navbar {
  min-height: 71px;
  transition: all 0.4s ease-out;
  position: absolute;
  padding: 35px 40px !important;
  background-color: transparent;
  box-sizing: content-box;
  box-shadow: none !important;
}
.cid-tA0HWYhsyd .navbar.opened {
  transition: all 0.3s;
}
.cid-tA0HWYhsyd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tA0HWYhsyd .navbar .navbar-logo img {
  width: auto;
}
.cid-tA0HWYhsyd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tA0HWYhsyd .navbar.collapsed {
  justify-content: center;
}
.cid-tA0HWYhsyd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tA0HWYhsyd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-tA0HWYhsyd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tA0HWYhsyd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tA0HWYhsyd .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-tA0HWYhsyd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tA0HWYhsyd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tA0HWYhsyd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tA0HWYhsyd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tA0HWYhsyd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tA0HWYhsyd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tA0HWYhsyd .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-tA0HWYhsyd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tA0HWYhsyd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tA0HWYhsyd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tA0HWYhsyd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tA0HWYhsyd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tA0HWYhsyd .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tA0HWYhsyd .navbar.navbar-short {
  min-height: 60px;
}
.cid-tA0HWYhsyd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tA0HWYhsyd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tA0HWYhsyd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tA0HWYhsyd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tA0HWYhsyd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tA0HWYhsyd .dropdown-item.active,
.cid-tA0HWYhsyd .dropdown-item:active {
  background-color: transparent;
}
.cid-tA0HWYhsyd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tA0HWYhsyd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tA0HWYhsyd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tA0HWYhsyd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tA0HWYhsyd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tA0HWYhsyd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tA0HWYhsyd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tA0HWYhsyd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-tA0HWYhsyd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tA0HWYhsyd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tA0HWYhsyd .navbar {
    height: 70px;
  }
  .cid-tA0HWYhsyd .navbar.opened {
    height: auto;
  }
  .cid-tA0HWYhsyd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tA0HWYhsyd .navbar-short {
  padding: 5px 40px !important;
  background-color: #ffffff;
  box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.1);
}
.cid-tA0HWYhsyd .container-fluid {
  padding: 0 !important;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .container-fluid .show {
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .navbar-nav {
    margin-right: auto;
    margin-left: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .cid-tA0HWYhsyd .navbar-nav {
    margin-left: 40px;
  }
}
@media (min-width: 1400px) {
  .cid-tA0HWYhsyd .navbar-nav {
    margin-left: 145px;
  }
}
.cid-tA0HWYhsyd .nav-item a:hover {
  color: #ffffff !important;
}
.cid-tA0HWYhsyd .nav-item .nav-link {
  position: relative !important;
}
.cid-tA0HWYhsyd .nav-item .nav-link:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #de2561;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: 0 100%;
  opacity: 0;
  transition: transform 0.3s ease-in-out;
}
.cid-tA0HWYhsyd .nav-item .nav-link:hover {
  color: #de2561 !important;
}
.cid-tA0HWYhsyd .nav-item .nav-link:hover:before {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .nav-item .show {
    padding-bottom: 0;
  }
}
.cid-tA0HWYhsyd .tel-menu {
  transition: 0s all !important;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .tel-menu {
    margin-right: 48px;
    margin-left: auto;
    order: 49;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-tA0HWYhsyd .tel-menu {
    display: none;
  }
}
.cid-tA0HWYhsyd .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-bottom: 0;
  word-break: normal;
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .mbr-text {
    text-align: center !important;
  }
}
.cid-tA0HWYhsyd .mbr-text a {
  opacity: 1;
  text-decoration: underline;
}
.cid-tA0HWYhsyd .mbr-section-btn {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .mbr-section-btn {
    justify-content: center;
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .mbr-section-btn {
    max-width: 35%;
    margin-left: -0.6rem !important;
    margin-right: -0.6rem !important;
    order: 50;
  }
}
.cid-tA0HWYhsyd .mbr-section-btn .btn {
  max-width: 200px;
  width: 200px;
  min-height: 55px;
  padding: 5px 10px;
  border-radius: 9px;
}
.cid-tA0HWYhsyd .mbr-section-btn .btn:hover:before {
  display: none;
}
.cid-tA0HWYhsyd .navbar-toggler:before {
  content: '';
  position: absolute;
  right: -7px;
  top: -10px;
  width: 44px;
  height: 38px;
  background-color: #de2561;
  border-radius: 0.25rem;
}
.cid-tyEQTKUJ3J {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/daniel-huniewicz-iqafcjumtfo-unsplash-2000x1455.jpg");
}
.cid-tyEQTKUJ3J .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tyEQTKUJ3J .mbr-text,
.cid-tyEQTKUJ3J .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tyEQTKUJ3J .mbr-section-subtitle {
  color: #000000;
}
.cid-tyEQTMleux {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tyEQTMleux .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyEQTMleux .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tyEQTMleux .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tyEQTMleux .row {
  flex-direction: row-reverse;
}
.cid-tyEQTMleux img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tyEQTMleux .text-wrapper {
    padding: 2rem;
  }
}
.cid-tyEQTMleux .mbr-section-title {
  text-align: center;
}
.cid-tyF0rYL2WD {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tyF0rYL2WD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyF0rYL2WD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tyF0rYL2WD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tyF0rYL2WD img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tyF0rYL2WD .text-wrapper {
    padding: 2rem;
  }
}
.cid-tyF0rYL2WD .mbr-section-title {
  text-align: center;
}
.cid-tyF0YdygbW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tyF0YdygbW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyF0YdygbW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tyF0YdygbW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tyF0YdygbW .row {
  flex-direction: row-reverse;
}
.cid-tyF0YdygbW img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tyF0YdygbW .text-wrapper {
    padding: 2rem;
  }
}
.cid-tyF0YdygbW .mbr-section-title {
  text-align: center;
}
.cid-tyF560x0QP {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tyF560x0QP img,
.cid-tyF560x0QP .item-img {
  width: 100%;
}
.cid-tyF560x0QP .item:focus,
.cid-tyF560x0QP span:focus {
  outline: none;
}
.cid-tyF560x0QP .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tyF560x0QP .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tyF560x0QP .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tyF560x0QP .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tyF560x0QP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tyF560x0QP .mbr-section-title {
  color: #232323;
}
.cid-tyF560x0QP .mbr-text,
.cid-tyF560x0QP .mbr-section-btn {
  text-align: left;
}
.cid-tyF560x0QP .item-title {
  text-align: left;
}
.cid-tyF560x0QP .item-subtitle {
  text-align: left;
}
.cid-tyEQTMRGo0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/closeup-shot-tall-trees-middle-green-forest-2000x1334.jpg");
}
.cid-tyEQTMRGo0 .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tyEQTMRGo0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tyEQTMRGo0 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .cid-tyEQTMRGo0 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tyEQTMRGo0 .name {
  color: #ffffff;
}
.cid-tyEQTMRGo0 .mbr-text {
  padding: 0;
  margin: 0;
  padding-top: 25px;
  color: #ffffff;
}
.cid-tyKzV0ZAEV {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tyKzV0ZAEV .content {
    text-align: center;
  }
  .cid-tyKzV0ZAEV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tyKzV0ZAEV .logo-subtitle {
  color: #8d97ad;
}
.cid-tyKzV0ZAEV .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tyKzV0ZAEV .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tyKzV0ZAEV .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tyKzV0ZAEV .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tyKzV0ZAEV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tyKzV0ZAEV .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tyKzV0ZAEV .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tyKzV0ZAEV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tyKzV0ZAEV .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tyKzV0ZAEV .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tyKzV0ZAEV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tyKzV0ZAEV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tyKzV0ZAEV .list-item {
  display: flex;
}
.cid-tyKzV0ZAEV .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tyKzV0ZAEV ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tyKzV0ZAEV ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tyKzV0ZAEV ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tyKzV0ZAEV .copyright > p {
  color: #000000;
  text-align: left;
}
.cid-tyKzV0ZAEV .column-title {
  color: #232323;
  text-align: left;
}
.cid-tyKzV0ZAEV .mbr-text {
  color: #575757;
}
.cid-tyKzV0ZAEV P {
  color: #575757;
  text-align: left;
}
.cid-tyKzV0ZAEV .logo-subtitle,
.cid-tyKzV0ZAEV .media-wrap {
  color: #575757;
}
.cid-tA0HWYhsyd {
  z-index: 1000;
  width: 100%;
}
.cid-tA0HWYhsyd nav.navbar {
  position: fixed;
}
.cid-tA0HWYhsyd .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-tA0HWYhsyd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tA0HWYhsyd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tA0HWYhsyd .dropdown-item:hover,
.cid-tA0HWYhsyd .dropdown-item:focus {
  background: #de2561 !important;
  color: white !important;
}
.cid-tA0HWYhsyd .dropdown-item:hover span {
  color: white;
}
.cid-tA0HWYhsyd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tA0HWYhsyd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tA0HWYhsyd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tA0HWYhsyd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tA0HWYhsyd .nav-link {
  position: relative;
}
.cid-tA0HWYhsyd .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .container {
    flex-wrap: nowrap;
  }
}
.cid-tA0HWYhsyd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tA0HWYhsyd .dropdown-menu,
.cid-tA0HWYhsyd .navbar.opened {
  background: #ffffff !important;
}
.cid-tA0HWYhsyd .nav-item:focus,
.cid-tA0HWYhsyd .nav-link:focus {
  outline: none;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tA0HWYhsyd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tA0HWYhsyd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tA0HWYhsyd .navbar {
  min-height: 71px;
  transition: all 0.4s ease-out;
  position: absolute;
  padding: 35px 40px !important;
  background-color: transparent;
  box-sizing: content-box;
  box-shadow: none !important;
}
.cid-tA0HWYhsyd .navbar.opened {
  transition: all 0.3s;
}
.cid-tA0HWYhsyd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tA0HWYhsyd .navbar .navbar-logo img {
  width: auto;
}
.cid-tA0HWYhsyd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tA0HWYhsyd .navbar.collapsed {
  justify-content: center;
}
.cid-tA0HWYhsyd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tA0HWYhsyd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-tA0HWYhsyd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tA0HWYhsyd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tA0HWYhsyd .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-tA0HWYhsyd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tA0HWYhsyd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tA0HWYhsyd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tA0HWYhsyd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tA0HWYhsyd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tA0HWYhsyd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tA0HWYhsyd .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-tA0HWYhsyd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tA0HWYhsyd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tA0HWYhsyd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tA0HWYhsyd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tA0HWYhsyd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tA0HWYhsyd .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tA0HWYhsyd .navbar.navbar-short {
  min-height: 60px;
}
.cid-tA0HWYhsyd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tA0HWYhsyd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tA0HWYhsyd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tA0HWYhsyd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tA0HWYhsyd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tA0HWYhsyd .dropdown-item.active,
.cid-tA0HWYhsyd .dropdown-item:active {
  background-color: transparent;
}
.cid-tA0HWYhsyd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tA0HWYhsyd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tA0HWYhsyd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tA0HWYhsyd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tA0HWYhsyd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tA0HWYhsyd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tA0HWYhsyd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tA0HWYhsyd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-tA0HWYhsyd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tA0HWYhsyd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tA0HWYhsyd .navbar {
    height: 70px;
  }
  .cid-tA0HWYhsyd .navbar.opened {
    height: auto;
  }
  .cid-tA0HWYhsyd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tA0HWYhsyd .navbar-short {
  padding: 5px 40px !important;
  background-color: #ffffff;
  box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.1);
}
.cid-tA0HWYhsyd .container-fluid {
  padding: 0 !important;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .container-fluid .show {
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .navbar-nav {
    margin-right: auto;
    margin-left: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .cid-tA0HWYhsyd .navbar-nav {
    margin-left: 40px;
  }
}
@media (min-width: 1400px) {
  .cid-tA0HWYhsyd .navbar-nav {
    margin-left: 145px;
  }
}
.cid-tA0HWYhsyd .nav-item a:hover {
  color: #ffffff !important;
}
.cid-tA0HWYhsyd .nav-item .nav-link {
  position: relative !important;
}
.cid-tA0HWYhsyd .nav-item .nav-link:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #de2561;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: 0 100%;
  opacity: 0;
  transition: transform 0.3s ease-in-out;
}
.cid-tA0HWYhsyd .nav-item .nav-link:hover {
  color: #de2561 !important;
}
.cid-tA0HWYhsyd .nav-item .nav-link:hover:before {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .nav-item .show {
    padding-bottom: 0;
  }
}
.cid-tA0HWYhsyd .tel-menu {
  transition: 0s all !important;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .tel-menu {
    margin-right: 48px;
    margin-left: auto;
    order: 49;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-tA0HWYhsyd .tel-menu {
    display: none;
  }
}
.cid-tA0HWYhsyd .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-bottom: 0;
  word-break: normal;
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .mbr-text {
    text-align: center !important;
  }
}
.cid-tA0HWYhsyd .mbr-text a {
  opacity: 1;
  text-decoration: underline;
}
.cid-tA0HWYhsyd .mbr-section-btn {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .mbr-section-btn {
    justify-content: center;
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .mbr-section-btn {
    max-width: 35%;
    margin-left: -0.6rem !important;
    margin-right: -0.6rem !important;
    order: 50;
  }
}
.cid-tA0HWYhsyd .mbr-section-btn .btn {
  max-width: 200px;
  width: 200px;
  min-height: 55px;
  padding: 5px 10px;
  border-radius: 9px;
}
.cid-tA0HWYhsyd .mbr-section-btn .btn:hover:before {
  display: none;
}
.cid-tA0HWYhsyd .navbar-toggler:before {
  content: '';
  position: absolute;
  right: -7px;
  top: -10px;
  width: 44px;
  height: 38px;
  background-color: #de2561;
  border-radius: 0.25rem;
}
.cid-tyKNwukdlR {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/young-beautiful-woman-with-curly-hair-isolated.jpeg");
}
.cid-tyKNwukdlR .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tyKNwukdlR .mbr-text,
.cid-tyKNwukdlR .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tyKNwukdlR .mbr-section-subtitle {
  color: #000000;
}
.cid-tyKNwuZrA6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tyKNwuZrA6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyKNwuZrA6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tyKNwuZrA6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tyKNwuZrA6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tyKNwuZrA6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tyKNwvnbzc {
  padding-top: 0px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tyKNwvnbzc .mbr-section-subtitle {
  color: #767676;
}
.cid-tyKNwvnbzc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tyKNwvnbzc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tyKNwvnbzc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tyKNwvnbzc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tyKNwvnbzc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tyKNwvnbzc .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tyKNwvnbzc .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tyKNwvnbzc .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tyKNwvnbzc .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tyKNwvnbzc .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tyKNwvnbzc ul {
  font-size: 0;
}
.cid-tyKNwvnbzc .mbr-gallery-filter ul {
  text-align: center;
}
.cid-tyKNwvnbzc .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tyKNwvnbzc .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tyKNwvnbzc .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tyKNwvnbzc .mbr-gallery-filter ul li:first-child,
.cid-tyKNwvnbzc .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tyKNwvnbzc .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tyKNwvnbzc .mbr-gallery-item > div:hover:before {
  opacity: 0.5 !important;
}
.cid-tyKNwvnbzc .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tyKNwvnbzc .btn.active:after {
  animation: none;
}
.cid-tyKNwvnbzc .btn:active {
  box-shadow: none !important;
}
.cid-tyKNwvnbzc .btn:hover {
  background: transparent !important;
}
.cid-tyKNwvnbzc .btn:hover:before {
  background: transparent !important;
}
.cid-tyKNwvnbzc .btn:before {
  background-color: transparent !important;
}
.cid-tyKNwvnbzc .btn:focus {
  box-shadow: none !important;
}
.cid-tyKNww2sb0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/closeup-shot-tall-trees-middle-green-forest-2000x1334.jpg");
}
.cid-tyKNww2sb0 .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tyKNww2sb0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tyKNww2sb0 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .cid-tyKNww2sb0 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tyKNww2sb0 .name {
  color: #ffffff;
}
.cid-tyKNww2sb0 .mbr-text {
  padding: 0;
  margin: 0;
  padding-top: 25px;
  color: #ffffff;
}
.cid-tyKNwwssEy {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tyKNwwssEy .content {
    text-align: center;
  }
  .cid-tyKNwwssEy .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tyKNwwssEy .logo-subtitle {
  color: #8d97ad;
}
.cid-tyKNwwssEy .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tyKNwwssEy .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tyKNwwssEy .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tyKNwwssEy .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tyKNwwssEy .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tyKNwwssEy .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tyKNwwssEy .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tyKNwwssEy .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tyKNwwssEy .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tyKNwwssEy .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tyKNwwssEy .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tyKNwwssEy .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tyKNwwssEy .list-item {
  display: flex;
}
.cid-tyKNwwssEy .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tyKNwwssEy ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tyKNwwssEy ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tyKNwwssEy ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tyKNwwssEy .copyright > p {
  color: #000000;
  text-align: left;
}
.cid-tyKNwwssEy .column-title {
  color: #232323;
  text-align: left;
}
.cid-tyKNwwssEy .mbr-text {
  color: #575757;
}
.cid-tyKNwwssEy P {
  color: #575757;
  text-align: left;
}
.cid-tyKNwwssEy .logo-subtitle,
.cid-tyKNwwssEy .media-wrap {
  color: #575757;
}
.cid-tA0HWYhsyd {
  z-index: 1000;
  width: 100%;
}
.cid-tA0HWYhsyd nav.navbar {
  position: fixed;
}
.cid-tA0HWYhsyd .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-tA0HWYhsyd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tA0HWYhsyd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tA0HWYhsyd .dropdown-item:hover,
.cid-tA0HWYhsyd .dropdown-item:focus {
  background: #de2561 !important;
  color: white !important;
}
.cid-tA0HWYhsyd .dropdown-item:hover span {
  color: white;
}
.cid-tA0HWYhsyd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tA0HWYhsyd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tA0HWYhsyd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tA0HWYhsyd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tA0HWYhsyd .nav-link {
  position: relative;
}
.cid-tA0HWYhsyd .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .container {
    flex-wrap: nowrap;
  }
}
.cid-tA0HWYhsyd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tA0HWYhsyd .dropdown-menu,
.cid-tA0HWYhsyd .navbar.opened {
  background: #ffffff !important;
}
.cid-tA0HWYhsyd .nav-item:focus,
.cid-tA0HWYhsyd .nav-link:focus {
  outline: none;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tA0HWYhsyd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tA0HWYhsyd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tA0HWYhsyd .navbar {
  min-height: 71px;
  transition: all 0.4s ease-out;
  position: absolute;
  padding: 35px 40px !important;
  background-color: transparent;
  box-sizing: content-box;
  box-shadow: none !important;
}
.cid-tA0HWYhsyd .navbar.opened {
  transition: all 0.3s;
}
.cid-tA0HWYhsyd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tA0HWYhsyd .navbar .navbar-logo img {
  width: auto;
}
.cid-tA0HWYhsyd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tA0HWYhsyd .navbar.collapsed {
  justify-content: center;
}
.cid-tA0HWYhsyd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tA0HWYhsyd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-tA0HWYhsyd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tA0HWYhsyd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tA0HWYhsyd .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-tA0HWYhsyd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tA0HWYhsyd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tA0HWYhsyd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tA0HWYhsyd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tA0HWYhsyd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tA0HWYhsyd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tA0HWYhsyd .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-tA0HWYhsyd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tA0HWYhsyd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tA0HWYhsyd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tA0HWYhsyd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tA0HWYhsyd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tA0HWYhsyd .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tA0HWYhsyd .navbar.navbar-short {
  min-height: 60px;
}
.cid-tA0HWYhsyd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tA0HWYhsyd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tA0HWYhsyd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tA0HWYhsyd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tA0HWYhsyd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tA0HWYhsyd .dropdown-item.active,
.cid-tA0HWYhsyd .dropdown-item:active {
  background-color: transparent;
}
.cid-tA0HWYhsyd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tA0HWYhsyd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tA0HWYhsyd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tA0HWYhsyd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tA0HWYhsyd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tA0HWYhsyd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tA0HWYhsyd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tA0HWYhsyd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-tA0HWYhsyd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tA0HWYhsyd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tA0HWYhsyd .navbar {
    height: 70px;
  }
  .cid-tA0HWYhsyd .navbar.opened {
    height: auto;
  }
  .cid-tA0HWYhsyd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tA0HWYhsyd .navbar-short {
  padding: 5px 40px !important;
  background-color: #ffffff;
  box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.1);
}
.cid-tA0HWYhsyd .container-fluid {
  padding: 0 !important;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .container-fluid .show {
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .navbar-nav {
    margin-right: auto;
    margin-left: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .cid-tA0HWYhsyd .navbar-nav {
    margin-left: 40px;
  }
}
@media (min-width: 1400px) {
  .cid-tA0HWYhsyd .navbar-nav {
    margin-left: 145px;
  }
}
.cid-tA0HWYhsyd .nav-item a:hover {
  color: #ffffff !important;
}
.cid-tA0HWYhsyd .nav-item .nav-link {
  position: relative !important;
}
.cid-tA0HWYhsyd .nav-item .nav-link:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #de2561;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: 0 100%;
  opacity: 0;
  transition: transform 0.3s ease-in-out;
}
.cid-tA0HWYhsyd .nav-item .nav-link:hover {
  color: #de2561 !important;
}
.cid-tA0HWYhsyd .nav-item .nav-link:hover:before {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .nav-item .show {
    padding-bottom: 0;
  }
}
.cid-tA0HWYhsyd .tel-menu {
  transition: 0s all !important;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .tel-menu {
    margin-right: 48px;
    margin-left: auto;
    order: 49;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-tA0HWYhsyd .tel-menu {
    display: none;
  }
}
.cid-tA0HWYhsyd .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-bottom: 0;
  word-break: normal;
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .mbr-text {
    text-align: center !important;
  }
}
.cid-tA0HWYhsyd .mbr-text a {
  opacity: 1;
  text-decoration: underline;
}
.cid-tA0HWYhsyd .mbr-section-btn {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .mbr-section-btn {
    justify-content: center;
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .mbr-section-btn {
    max-width: 35%;
    margin-left: -0.6rem !important;
    margin-right: -0.6rem !important;
    order: 50;
  }
}
.cid-tA0HWYhsyd .mbr-section-btn .btn {
  max-width: 200px;
  width: 200px;
  min-height: 55px;
  padding: 5px 10px;
  border-radius: 9px;
}
.cid-tA0HWYhsyd .mbr-section-btn .btn:hover:before {
  display: none;
}
.cid-tA0HWYhsyd .navbar-toggler:before {
  content: '';
  position: absolute;
  right: -7px;
  top: -10px;
  width: 44px;
  height: 38px;
  background-color: #de2561;
  border-radius: 0.25rem;
}
.cid-tyKPwc1Ysj {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/woman-squeezing-antistress-ball-while-working-computer-office-closeup.jpeg");
}
.cid-tyKPwc1Ysj .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tyKPwc1Ysj .mbr-text,
.cid-tyKPwc1Ysj .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tyKPwc1Ysj .mbr-section-subtitle {
  color: #000000;
}
.cid-tyKSKRtM1B {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tyKSKRtM1B .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyKSKRtM1B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tyKSKRtM1B .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tyKSKRtM1B img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tyKSKRtM1B .text-wrapper {
    padding: 2rem;
  }
}
.cid-tyKSKvbiHt {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tyKSKvbiHt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyKSKvbiHt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tyKSKvbiHt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tyKSKvbiHt .row {
  flex-direction: row-reverse;
}
.cid-tyKSKvbiHt img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tyKSKvbiHt .text-wrapper {
    padding: 2rem;
  }
}
.cid-tyKPwdMUPC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/closeup-shot-tall-trees-middle-green-forest-2000x1334.jpg");
}
.cid-tyKPwdMUPC .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tyKPwdMUPC .text-wrapper {
    padding: 2rem;
  }
}
.cid-tyKPwdMUPC .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .cid-tyKPwdMUPC .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tyKPwdMUPC .name {
  color: #ffffff;
}
.cid-tyKPwdMUPC .mbr-text {
  padding: 0;
  margin: 0;
  padding-top: 25px;
  color: #ffffff;
}
.cid-tyKPweeRQC {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tyKPweeRQC .content {
    text-align: center;
  }
  .cid-tyKPweeRQC .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tyKPweeRQC .logo-subtitle {
  color: #8d97ad;
}
.cid-tyKPweeRQC .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tyKPweeRQC .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tyKPweeRQC .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tyKPweeRQC .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tyKPweeRQC .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tyKPweeRQC .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tyKPweeRQC .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tyKPweeRQC .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tyKPweeRQC .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tyKPweeRQC .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tyKPweeRQC .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tyKPweeRQC .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tyKPweeRQC .list-item {
  display: flex;
}
.cid-tyKPweeRQC .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tyKPweeRQC ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tyKPweeRQC ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tyKPweeRQC ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tyKPweeRQC .copyright > p {
  color: #000000;
  text-align: left;
}
.cid-tyKPweeRQC .column-title {
  color: #232323;
  text-align: left;
}
.cid-tyKPweeRQC .mbr-text {
  color: #575757;
}
.cid-tyKPweeRQC P {
  color: #575757;
  text-align: left;
}
.cid-tyKPweeRQC .logo-subtitle,
.cid-tyKPweeRQC .media-wrap {
  color: #575757;
}
.cid-tA0HWYhsyd {
  z-index: 1000;
  width: 100%;
}
.cid-tA0HWYhsyd nav.navbar {
  position: fixed;
}
.cid-tA0HWYhsyd .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-tA0HWYhsyd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tA0HWYhsyd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tA0HWYhsyd .dropdown-item:hover,
.cid-tA0HWYhsyd .dropdown-item:focus {
  background: #de2561 !important;
  color: white !important;
}
.cid-tA0HWYhsyd .dropdown-item:hover span {
  color: white;
}
.cid-tA0HWYhsyd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tA0HWYhsyd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tA0HWYhsyd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tA0HWYhsyd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tA0HWYhsyd .nav-link {
  position: relative;
}
.cid-tA0HWYhsyd .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .container {
    flex-wrap: nowrap;
  }
}
.cid-tA0HWYhsyd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tA0HWYhsyd .dropdown-menu,
.cid-tA0HWYhsyd .navbar.opened {
  background: #ffffff !important;
}
.cid-tA0HWYhsyd .nav-item:focus,
.cid-tA0HWYhsyd .nav-link:focus {
  outline: none;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tA0HWYhsyd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tA0HWYhsyd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tA0HWYhsyd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tA0HWYhsyd .navbar {
  min-height: 71px;
  transition: all 0.4s ease-out;
  position: absolute;
  padding: 35px 40px !important;
  background-color: transparent;
  box-sizing: content-box;
  box-shadow: none !important;
}
.cid-tA0HWYhsyd .navbar.opened {
  transition: all 0.3s;
}
.cid-tA0HWYhsyd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tA0HWYhsyd .navbar .navbar-logo img {
  width: auto;
}
.cid-tA0HWYhsyd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tA0HWYhsyd .navbar.collapsed {
  justify-content: center;
}
.cid-tA0HWYhsyd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tA0HWYhsyd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-tA0HWYhsyd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tA0HWYhsyd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tA0HWYhsyd .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-tA0HWYhsyd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tA0HWYhsyd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tA0HWYhsyd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tA0HWYhsyd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tA0HWYhsyd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tA0HWYhsyd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tA0HWYhsyd .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-tA0HWYhsyd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tA0HWYhsyd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tA0HWYhsyd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tA0HWYhsyd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tA0HWYhsyd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tA0HWYhsyd .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tA0HWYhsyd .navbar.navbar-short {
  min-height: 60px;
}
.cid-tA0HWYhsyd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tA0HWYhsyd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tA0HWYhsyd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tA0HWYhsyd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tA0HWYhsyd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tA0HWYhsyd .dropdown-item.active,
.cid-tA0HWYhsyd .dropdown-item:active {
  background-color: transparent;
}
.cid-tA0HWYhsyd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tA0HWYhsyd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tA0HWYhsyd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tA0HWYhsyd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tA0HWYhsyd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tA0HWYhsyd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tA0HWYhsyd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tA0HWYhsyd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tA0HWYhsyd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tA0HWYhsyd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tA0HWYhsyd .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-tA0HWYhsyd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tA0HWYhsyd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tA0HWYhsyd .navbar {
    height: 70px;
  }
  .cid-tA0HWYhsyd .navbar.opened {
    height: auto;
  }
  .cid-tA0HWYhsyd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tA0HWYhsyd .navbar-short {
  padding: 5px 40px !important;
  background-color: #ffffff;
  box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.1);
}
.cid-tA0HWYhsyd .container-fluid {
  padding: 0 !important;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .container-fluid .show {
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .navbar-nav {
    margin-right: auto;
    margin-left: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .cid-tA0HWYhsyd .navbar-nav {
    margin-left: 40px;
  }
}
@media (min-width: 1400px) {
  .cid-tA0HWYhsyd .navbar-nav {
    margin-left: 145px;
  }
}
.cid-tA0HWYhsyd .nav-item a:hover {
  color: #ffffff !important;
}
.cid-tA0HWYhsyd .nav-item .nav-link {
  position: relative !important;
}
.cid-tA0HWYhsyd .nav-item .nav-link:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #de2561;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: 0 100%;
  opacity: 0;
  transition: transform 0.3s ease-in-out;
}
.cid-tA0HWYhsyd .nav-item .nav-link:hover {
  color: #de2561 !important;
}
.cid-tA0HWYhsyd .nav-item .nav-link:hover:before {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .nav-item .show {
    padding-bottom: 0;
  }
}
.cid-tA0HWYhsyd .tel-menu {
  transition: 0s all !important;
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .tel-menu {
    margin-right: 48px;
    margin-left: auto;
    order: 49;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-tA0HWYhsyd .tel-menu {
    display: none;
  }
}
.cid-tA0HWYhsyd .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-bottom: 0;
  word-break: normal;
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .mbr-text {
    text-align: center !important;
  }
}
.cid-tA0HWYhsyd .mbr-text a {
  opacity: 1;
  text-decoration: underline;
}
.cid-tA0HWYhsyd .mbr-section-btn {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tA0HWYhsyd .mbr-section-btn {
    justify-content: center;
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .cid-tA0HWYhsyd .mbr-section-btn {
    max-width: 35%;
    margin-left: -0.6rem !important;
    margin-right: -0.6rem !important;
    order: 50;
  }
}
.cid-tA0HWYhsyd .mbr-section-btn .btn {
  max-width: 200px;
  width: 200px;
  min-height: 55px;
  padding: 5px 10px;
  border-radius: 9px;
}
.cid-tA0HWYhsyd .mbr-section-btn .btn:hover:before {
  display: none;
}
.cid-tA0HWYhsyd .navbar-toggler:before {
  content: '';
  position: absolute;
  right: -7px;
  top: -10px;
  width: 44px;
  height: 38px;
  background-color: #de2561;
  border-radius: 0.25rem;
}
.cid-tA3ZObG6LQ {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/balloon-frame-arch-birthday-baby-shower-party-celebration-holiday.jpg");
}
.cid-tA3ZObG6LQ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tA3ZObG6LQ .mbr-text,
.cid-tA3ZObG6LQ .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tA3ZObG6LQ .mbr-section-subtitle {
  color: #000000;
}
.cid-tA3ZOcLdlo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tA3ZOcLdlo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tA3ZOcLdlo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tA3ZOcLdlo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tA3ZOcLdlo img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tA3ZOcLdlo .text-wrapper {
    padding: 2rem;
  }
}
.cid-tA5ldLFKKa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tA5ldLFKKa .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tA5ldLFKKa .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-tA5ldLFKKa .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-tA5ldLFKKa .btn-primary-outline:active {
  color: gray;
}
.cid-tA5ldLFKKa .btn-primary-outline:hover {
  color: white;
}
.cid-tA5ldLFKKa .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-tA5ldLFKKa div {
  overflow: hidden;
}
.cid-tA5ldLFKKa li.active .btn-primary-outline {
  color: white;
}
.cid-tA5ldLFKKa .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tA5ldLFKKa .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tA5ldLFKKa .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tA5ldLFKKa .mbr-gallery-item {
  overflow: hidden;
}
.cid-tA5ldLFKKa .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-tA5ldLFKKa .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-tA5ldLFKKa .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tA5ldLFKKa .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tA5ldLFKKa .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-tA5ldLFKKa .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tA5ldLFKKa .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tA3ZOdqnI5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/closeup-shot-tall-trees-middle-green-forest-2000x1334.jpg");
}
.cid-tA3ZOdqnI5 .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tA3ZOdqnI5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tA3ZOdqnI5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .cid-tA3ZOdqnI5 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tA3ZOdqnI5 .name {
  color: #ffffff;
}
.cid-tA3ZOdqnI5 .mbr-text {
  padding: 0;
  margin: 0;
  padding-top: 25px;
  color: #ffffff;
}
.cid-tA3ZOdHdh2 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tA3ZOdHdh2 .content {
    text-align: center;
  }
  .cid-tA3ZOdHdh2 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tA3ZOdHdh2 .logo-subtitle {
  color: #8d97ad;
}
.cid-tA3ZOdHdh2 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tA3ZOdHdh2 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tA3ZOdHdh2 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tA3ZOdHdh2 .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tA3ZOdHdh2 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tA3ZOdHdh2 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tA3ZOdHdh2 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tA3ZOdHdh2 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tA3ZOdHdh2 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tA3ZOdHdh2 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tA3ZOdHdh2 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tA3ZOdHdh2 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tA3ZOdHdh2 .list-item {
  display: flex;
}
.cid-tA3ZOdHdh2 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tA3ZOdHdh2 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tA3ZOdHdh2 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tA3ZOdHdh2 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tA3ZOdHdh2 .copyright > p {
  color: #000000;
  text-align: left;
}
.cid-tA3ZOdHdh2 .column-title {
  color: #232323;
  text-align: left;
}
.cid-tA3ZOdHdh2 .mbr-text {
  color: #575757;
}
.cid-tA3ZOdHdh2 P {
  color: #575757;
  text-align: left;
}
.cid-tA3ZOdHdh2 .logo-subtitle,
.cid-tA3ZOdHdh2 .media-wrap {
  color: #575757;
}
.cid-tA3ZOelIhN {
  z-index: 1000;
  width: 100%;
}
.cid-tA3ZOelIhN nav.navbar {
  position: fixed;
}
.cid-tA3ZOelIhN .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-tA3ZOelIhN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tA3ZOelIhN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tA3ZOelIhN .dropdown-item:hover,
.cid-tA3ZOelIhN .dropdown-item:focus {
  background: #de2561 !important;
  color: white !important;
}
.cid-tA3ZOelIhN .dropdown-item:hover span {
  color: white;
}
.cid-tA3ZOelIhN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tA3ZOelIhN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tA3ZOelIhN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tA3ZOelIhN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tA3ZOelIhN .nav-link {
  position: relative;
}
.cid-tA3ZOelIhN .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tA3ZOelIhN .container {
    flex-wrap: nowrap;
  }
}
.cid-tA3ZOelIhN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tA3ZOelIhN .dropdown-menu,
.cid-tA3ZOelIhN .navbar.opened {
  background: #ffffff !important;
}
.cid-tA3ZOelIhN .nav-item:focus,
.cid-tA3ZOelIhN .nav-link:focus {
  outline: none;
}
.cid-tA3ZOelIhN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tA3ZOelIhN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tA3ZOelIhN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tA3ZOelIhN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tA3ZOelIhN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tA3ZOelIhN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tA3ZOelIhN .navbar {
  min-height: 71px;
  transition: all 0.4s ease-out;
  position: absolute;
  padding: 35px 40px !important;
  background-color: transparent;
  box-sizing: content-box;
  box-shadow: none !important;
}
.cid-tA3ZOelIhN .navbar.opened {
  transition: all 0.3s;
}
.cid-tA3ZOelIhN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tA3ZOelIhN .navbar .navbar-logo img {
  width: auto;
}
.cid-tA3ZOelIhN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tA3ZOelIhN .navbar.collapsed {
  justify-content: center;
}
.cid-tA3ZOelIhN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tA3ZOelIhN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tA3ZOelIhN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-tA3ZOelIhN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tA3ZOelIhN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tA3ZOelIhN .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-tA3ZOelIhN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tA3ZOelIhN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tA3ZOelIhN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tA3ZOelIhN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tA3ZOelIhN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tA3ZOelIhN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tA3ZOelIhN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tA3ZOelIhN .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-tA3ZOelIhN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tA3ZOelIhN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tA3ZOelIhN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tA3ZOelIhN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tA3ZOelIhN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tA3ZOelIhN .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tA3ZOelIhN .navbar.navbar-short {
  min-height: 60px;
}
.cid-tA3ZOelIhN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tA3ZOelIhN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tA3ZOelIhN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tA3ZOelIhN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tA3ZOelIhN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tA3ZOelIhN .dropdown-item.active,
.cid-tA3ZOelIhN .dropdown-item:active {
  background-color: transparent;
}
.cid-tA3ZOelIhN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tA3ZOelIhN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tA3ZOelIhN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tA3ZOelIhN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tA3ZOelIhN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tA3ZOelIhN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tA3ZOelIhN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tA3ZOelIhN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tA3ZOelIhN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tA3ZOelIhN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tA3ZOelIhN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tA3ZOelIhN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tA3ZOelIhN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tA3ZOelIhN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tA3ZOelIhN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tA3ZOelIhN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tA3ZOelIhN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tA3ZOelIhN .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-tA3ZOelIhN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tA3ZOelIhN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tA3ZOelIhN .navbar {
    height: 70px;
  }
  .cid-tA3ZOelIhN .navbar.opened {
    height: auto;
  }
  .cid-tA3ZOelIhN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tA3ZOelIhN .navbar-short {
  padding: 5px 40px !important;
  background-color: #ffffff;
  box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.1);
}
.cid-tA3ZOelIhN .container-fluid {
  padding: 0 !important;
}
@media (min-width: 992px) {
  .cid-tA3ZOelIhN .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-tA3ZOelIhN .container-fluid .show {
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tA3ZOelIhN .navbar-nav {
    margin-right: auto;
    margin-left: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .cid-tA3ZOelIhN .navbar-nav {
    margin-left: 40px;
  }
}
@media (min-width: 1400px) {
  .cid-tA3ZOelIhN .navbar-nav {
    margin-left: 145px;
  }
}
.cid-tA3ZOelIhN .nav-item a:hover {
  color: #ffffff !important;
}
.cid-tA3ZOelIhN .nav-item .nav-link {
  position: relative !important;
}
.cid-tA3ZOelIhN .nav-item .nav-link:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #de2561;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: 0 100%;
  opacity: 0;
  transition: transform 0.3s ease-in-out;
}
.cid-tA3ZOelIhN .nav-item .nav-link:hover {
  color: #de2561 !important;
}
.cid-tA3ZOelIhN .nav-item .nav-link:hover:before {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 991px) {
  .cid-tA3ZOelIhN .nav-item .show {
    padding-bottom: 0;
  }
}
.cid-tA3ZOelIhN .tel-menu {
  transition: 0s all !important;
}
@media (min-width: 992px) {
  .cid-tA3ZOelIhN .tel-menu {
    margin-right: 48px;
    margin-left: auto;
    order: 49;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-tA3ZOelIhN .tel-menu {
    display: none;
  }
}
.cid-tA3ZOelIhN .mbr-text {
  color: #00284E;
  opacity: 0.8;
  margin-bottom: 0;
  word-break: normal;
}
@media (max-width: 991px) {
  .cid-tA3ZOelIhN .mbr-text {
    text-align: center !important;
  }
}
.cid-tA3ZOelIhN .mbr-text a {
  opacity: 1;
  text-decoration: underline;
}
.cid-tA3ZOelIhN .mbr-section-btn {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tA3ZOelIhN .mbr-section-btn {
    justify-content: center;
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .cid-tA3ZOelIhN .mbr-section-btn {
    max-width: 35%;
    margin-left: -0.6rem !important;
    margin-right: -0.6rem !important;
    order: 50;
  }
}
.cid-tA3ZOelIhN .mbr-section-btn .btn {
  max-width: 200px;
  width: 200px;
  min-height: 55px;
  padding: 5px 10px;
  border-radius: 9px;
}
.cid-tA3ZOelIhN .mbr-section-btn .btn:hover:before {
  display: none;
}
.cid-tA3ZOelIhN .navbar-toggler:before {
  content: '';
  position: absolute;
  right: -7px;
  top: -10px;
  width: 44px;
  height: 38px;
  background-color: #de2561;
  border-radius: 0.25rem;
}
