body {
  font-family: Jost;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 4.375rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.9375rem;
}
.display-4 > .mbr-iconfont {
  font-size: 0.9375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.875rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.375rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.375rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.18125rem + (4.375 - 2.18125) * ((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.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.75rem;
    font-size: calc( 0.978125rem + (0.9375 - 0.978125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.978125rem + (0.9375 - 0.978125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.5rem;
    font-size: calc( 1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 10px 15px;
  border-radius: 6px;
}
.btn-sm {
  padding: 18px 38px;
  border-radius: 6px;
}
.btn-md {
  padding: 18px 42px;
  border-radius: 6px;
}
.btn-lg {
  padding: 20px 47px;
  border-radius: 6px;
}
.bg-primary {
  background-color: #374550 !important;
}
.bg-success {
  background-color: #ffc600 !important;
}
.bg-info {
  background-color: #83868c !important;
}
.bg-warning {
  background-color: #eff2f7 !important;
}
.bg-danger {
  background-color: #0a1126 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #374550 !important;
  border-color: #374550 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #181e23 !important;
  border-color: #181e23 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #181e23 !important;
  border-color: #181e23 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #f2b620 !important;
  border-color: #f2b620 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #bb880b !important;
  border-color: #bb880b !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #bb880b !important;
  border-color: #bb880b !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #83868c !important;
  border-color: #83868c !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #5e6065 !important;
  border-color: #5e6065 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #5e6065 !important;
  border-color: #5e6065 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #ffc600 !important;
  border-color: #ffc600 !important;
  color: #000000 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #000000 !important;
  background-color: #b38b00 !important;
  border-color: #b38b00 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #b38b00 !important;
  border-color: #b38b00 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #eff2f7 !important;
  border-color: #eff2f7 !important;
  color: #4d6a9a !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #4d6a9a !important;
  background-color: #bcc9de !important;
  border-color: #bcc9de !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #4d6a9a !important;
  background-color: #bcc9de !important;
  border-color: #bcc9de !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #0a1126 !important;
  border-color: #0a1126 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #0d1114;
  color: #0d1114;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  background-color: #374550;
  border-color: #374550;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #374550 !important;
  border-color: #374550 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #a37709;
  color: #a37709;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  background-color: #f2b620;
  border-color: #f2b620;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f2b620 !important;
  border-color: #f2b620 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #515358;
  color: #515358;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  background-color: #83868c;
  border-color: #83868c;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #83868c !important;
  border-color: #83868c !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #997700;
  color: #997700;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #000000;
  background-color: #ffc600;
  border-color: #ffc600;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #ffc600 !important;
  border-color: #ffc600 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #abbbd5;
  color: #abbbd5;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #4d6a9a;
  background-color: #eff2f7;
  border-color: #eff2f7;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #4d6a9a !important;
  background-color: #eff2f7 !important;
  border-color: #eff2f7 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff;
  background-color: #0a1126;
  border-color: #0a1126;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #0a1126 !important;
  border-color: #0a1126 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #374550 !important;
}
.text-secondary {
  color: #f2b620 !important;
}
.text-success {
  color: #ffc600 !important;
}
.text-info {
  color: #83868c !important;
}
.text-warning {
  color: #eff2f7 !important;
}
.text-danger {
  color: #0a1126 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #0d1114 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #a37709 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #997700 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #515358 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #abbbd5 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #83868c;
}
.alert-warning {
  background-color: #eff2f7;
}
.alert-danger {
  background-color: #0a1126;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #374550;
  border-color: #374550;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #374550;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a9b8c4;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fff4cc;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c5c7c9;
}
.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: #acbbe9;
}
.scrollToTop_wraper {
  display: none !important;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.375rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #374550;
}
/* Forms */
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
.btn-primary:hover {
  color: #374550 !important;
  background: white !important;
  border-color: white !important;
}
.form-control,
.jq-number__spin {
  background-color: #ffffff;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #374550;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #374550;
  border-bottom-color: #374550;
}
.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: #374550 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #f2b620 !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%;
}
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='%23374550' %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;
}
.cid-tR1nCANriT {
  z-index: 1000;
  width: 100%;
}
.cid-tR1nCANriT nav.navbar {
  position: fixed;
}
.cid-tR1nCANriT .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-tR1nCANriT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tR1nCANriT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tR1nCANriT .dropdown-item:hover,
.cid-tR1nCANriT .dropdown-item:focus {
  background: #374550 !important;
  color: white !important;
}
.cid-tR1nCANriT .dropdown-item:hover span {
  color: white;
}
.cid-tR1nCANriT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tR1nCANriT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tR1nCANriT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tR1nCANriT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tR1nCANriT .nav-link {
  position: relative;
}
.cid-tR1nCANriT .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tR1nCANriT .container {
    flex-wrap: nowrap;
  }
}
.cid-tR1nCANriT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tR1nCANriT .dropdown-menu,
.cid-tR1nCANriT .navbar.opened {
  background: #ffffff !important;
}
.cid-tR1nCANriT .nav-item:focus,
.cid-tR1nCANriT .nav-link:focus {
  outline: none;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tR1nCANriT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tR1nCANriT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tR1nCANriT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
  backdrop-filter: blur(5px);
}
.cid-tR1nCANriT .navbar.opened {
  transition: all 0.3s;
}
.cid-tR1nCANriT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tR1nCANriT .navbar .navbar-logo img {
  width: auto;
}
.cid-tR1nCANriT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tR1nCANriT .navbar.collapsed {
  justify-content: center;
}
.cid-tR1nCANriT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tR1nCANriT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tR1nCANriT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tR1nCANriT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tR1nCANriT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tR1nCANriT .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-tR1nCANriT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tR1nCANriT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tR1nCANriT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tR1nCANriT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tR1nCANriT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tR1nCANriT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tR1nCANriT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tR1nCANriT .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-tR1nCANriT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tR1nCANriT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tR1nCANriT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tR1nCANriT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tR1nCANriT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tR1nCANriT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tR1nCANriT .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tR1nCANriT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tR1nCANriT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tR1nCANriT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tR1nCANriT .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-tR1nCANriT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tR1nCANriT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tR1nCANriT .dropdown-item.active,
.cid-tR1nCANriT .dropdown-item:active {
  background-color: transparent;
}
.cid-tR1nCANriT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tR1nCANriT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tR1nCANriT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tR1nCANriT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tR1nCANriT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tR1nCANriT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tR1nCANriT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tR1nCANriT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tR1nCANriT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tR1nCANriT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tR1nCANriT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tR1nCANriT .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-tR1nCANriT .navbar {
    height: 70px;
  }
  .cid-tR1nCANriT .navbar.opened {
    height: auto;
  }
  .cid-tR1nCANriT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tQQyCfLRXF {
  padding-top: 165px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/techs-on-demand-home-page-image-1920-1700-px-1920x1700.png");
}
.cid-tQQyCfLRXF .img-wrap {
  -webkit-animation: jump 2s ease-in-out alternate;
  animation: jump 2s ease-in-out alternate;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
  position: relative;
}
.cid-tQQyCfLRXF .img-wrap img {
  width: 100%;
}
.cid-tQQyCfLRXF .mbr-section-subtitle {
  color: #ffc600;
}
.cid-tQQyCfLRXF .mbr-section-title {
  color: #ffffff;
}
.cid-tQQyCfLRXF .mbr-text {
  color: #b0b6d4;
  font-weight: 500;
}
.cid-tQQyCfLRXF .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-tQQyCfLRXF .mbr-section-btn .btn:first-child {
  margin-left: 0 !important;
}
@media (max-width: 768px) {
  .cid-tQQyCfLRXF .mbr-section-btn {
    justify-content: center !important;
  }
}
@-webkit-keyframes jump {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes jump {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tQQyCfLRXF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQQyCfLRXF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQQyCfLRXF .mbr-text,
.cid-tQQyCfLRXF .mbr-section-btn {
  color: #ffffff;
}
.cid-s2V9SVDk5H {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-s2V9SVDk5H .wrap-block {
  padding-right: 30px;
}
.cid-s2V9SVDk5H .cards {
  padding-left: 30px;
}
.cid-s2V9SVDk5H .image-wrap img {
  max-width: 100%;
  max-height: 800px;
  z-index: 9;
  position: relative;
}
.cid-s2V9SVDk5H .wrap-block .contents {
  margin-bottom: 40px;
}
.cid-s2V9SVDk5H .wrap-block .contents .mbr-subtitle {
  color: #f2b620;
  margin-bottom: 14px;
}
.cid-s2V9SVDk5H .wrap-block .contents .mbr-section-title {
  margin-bottom: 5px;
  color: #374550;
}
.cid-s2V9SVDk5H .wrap-block .contents .mbr-text {
  margin-top: 17px;
}
.cid-s2V9SVDk5H .wrap-block .contents h3 {
  color: #83868c;
}
.cid-s2V9SVDk5H .wrap-block .contents h4 {
  color: #83868c;
}
.cid-s2V9SVDk5H .wrap-block .contents .mbr-section-btn .btn {
  margin-left: 0 !important;
}
.cid-s2V9SVDk5H .cards-wrap {
  flex-direction: column;
}
.cid-s2V9SVDk5H .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
}
.cid-s2V9SVDk5H .wrapper .img {
  margin-bottom: 20px;
}
.cid-s2V9SVDk5H .wrapper .img .mbr-iconfont {
  font-size: 50px;
  top: 0;
  color: #f2b620;
  border-radius: 50%;
}
.cid-s2V9SVDk5H .wrapper .mbr-card-title {
  color: #374550;
  padding-bottom: 14px;
  margin-bottom: 10px;
}
.cid-s2V9SVDk5H .wrapper .mbr-text {
  margin-bottom: 19px;
  color: #83868c;
}
@media (max-width: 767px) {
  .cid-s2V9SVDk5H * {
    text-align: left;
  }
}
.cid-tGmpoQIQu5 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f2b620;
}
.cid-tGmpoQIQu5 .content-inner .left-content {
  display: block;
}
.cid-tGmpoQIQu5 .content-inner .left-content .mbr-section-title {
  color: #ffffff;
  margin-bottom: 11px;
}
.cid-tGmpoQIQu5 .content-inner .left-content .mbr-text {
  color: #ffffff;
}
.cid-tGmpoQIQu5 .content-inner .right-content {
  display: block;
}
.cid-tGmpoQIQu5 .content-inner .right-content .mbr-text {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 17px;
  letter-spacing: .02em;
}
.cid-tGmpoQIQu5 .content-inner .right-content .mbr-section-btn .btn {
  border-radius: 30px;
  padding: 18px 42px !important;
}
.cid-tGmpoQIQu5 .content-inner .right-content .mbr-section-btn .btn-white {
  color: #000000 !important;
}
.cid-tGmpoQIQu5 .content-inner .right-content .mbr-section-btn .btn-white:hover {
  background-color: #ffc600 !important;
  border-color: #ffc600 !important;
}
@media (max-width: 991px) {
  .cid-tGmpoQIQu5 .content-inner {
    justify-content: center !important;
  }
  .cid-tGmpoQIQu5 * {
    text-align: center;
  }
}
.cid-s2V9TywmmC {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #eff2f7;
}
.cid-s2V9TywmmC .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-s2V9TywmmC .contents .mbr-subtitle {
  color: #f2b620;
  margin-bottom: 10px;
}
.cid-s2V9TywmmC .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #374550;
}
.cid-s2V9TywmmC .contents .mbr-text {
  color: #83868c;
}
.cid-s2V9TywmmC .card-wrapper {
  height: 100%;
  border-radius: 5px;
  border: 1px solid #dcdfe2;
  padding: 55px 50px 41px 45px;
  transition: all 0.3s;
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-s2V9TywmmC .card-wrapper .card-box .card-title {
  color: #374550;
}
.cid-s2V9TywmmC .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  color: #83868c;
}
.cid-s2V9TywmmC .card-wrapper .card-box .mbr-iconfont {
  padding-left: 0.2rem;
  display: inline-block;
}
.cid-s2V9TywmmC .card-wrapper .card-img {
  margin-bottom: 40px;
  transition: all .9s;
}
.cid-s2V9TywmmC .card-wrapper .card-img .mbr-iconfont {
  font-size: 77px;
  color: #f2b620;
}
.cid-s2V9TywmmC .card-wrapper .mbr-link-btn {
  transition: all 0.3s;
}
.cid-s2V9TywmmC .card-wrapper .mbr-link-btn .btn {
  transition: all 0.3s;
  color: #374550;
  font-weight: 700;
}
.cid-s2V9TywmmC .card-wrapper .mbr-link-btn .btn .mbr-iconfont {
  font-weight: 700;
  padding-left: 40px !important;
  display: inline;
  transition: transform .3s linear 0s !important;
}
.cid-s2V9TywmmC .card-wrapper .mbr-link-btn:hover .mbr-iconfont {
  transform: translateX(-10px);
}
.cid-s2V9TywmmC .card-wrapper:hover {
  background-color: #f2b620;
  border-color: #f2b620;
}
.cid-s2V9TywmmC .card-wrapper:hover .card-box .card-title {
  color: #ffffff;
}
.cid-s2V9TywmmC .card-wrapper:hover .card-box .mbr-text {
  color: #ffffff;
}
.cid-s2V9TywmmC .card-wrapper:hover .card-img {
  transform: rotateY(360deg);
}
.cid-s2V9TywmmC .card-wrapper:hover .card-img .mbr-iconfont {
  color: #ffffff;
}
.cid-s2V9TywmmC .card-wrapper:hover .mbr-link-btn .btn {
  color: #ffffff;
}
.cid-s2V9TywmmC .btn[class*="-outline"] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
}
.cid-s2V9TywmmC .btn[class*="-outline"] span {
  order: 2;
  font-size: 0.8rem;
  transition: padding 0.3s !important;
}
.cid-s2V9TywmmC .btn[class*="-outline"]:hover span {
  padding-left: 10px;
}
.cid-s2V9TywmmC .btn[class*="-outline"]:hover {
  background-color: transparent !important;
  color: #374550 !important;
  box-shadow: none !important;
}
.cid-s2V9TywmmC .btn[class*="-outline"]:active,
.cid-s2V9TywmmC .btn[class*="-outline"]:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
@media (max-width: 991px) {
  .cid-s2V9TywmmC .card {
    margin-bottom: 15px;
  }
}
.cid-s2V9TywmmC .card-wrapper .card-box .mbr-text {
  text-align: left;
}
.cid-s2V9U6S5wm {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f2b620;
}
.cid-s2V9U6S5wm .content-inner .left-content {
  display: block;
}
.cid-s2V9U6S5wm .content-inner .left-content .mbr-section-title {
  color: #ffffff;
  margin-bottom: 11px;
}
.cid-s2V9U6S5wm .content-inner .left-content .mbr-text {
  color: #ffffff;
}
.cid-s2V9U6S5wm .content-inner .right-content {
  display: block;
}
.cid-s2V9U6S5wm .content-inner .right-content .mbr-text {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 17px;
  letter-spacing: .02em;
}
.cid-s2V9U6S5wm .content-inner .right-content .mbr-section-btn .btn {
  border-radius: 30px;
  padding: 18px 42px !important;
}
.cid-s2V9U6S5wm .content-inner .right-content .mbr-section-btn .btn-white {
  color: #000000 !important;
}
.cid-s2V9U6S5wm .content-inner .right-content .mbr-section-btn .btn-white:hover {
  background-color: #ffc600 !important;
  border-color: #ffc600 !important;
}
@media (max-width: 991px) {
  .cid-s2V9U6S5wm .content-inner {
    justify-content: center !important;
  }
  .cid-s2V9U6S5wm * {
    text-align: center;
  }
}
.cid-tG08KhWuEz {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #eeeff2;
}
.cid-tG08KhWuEz .mbr-section-subtitle {
  color: #f2b620;
}
.cid-tG08KhWuEz .mbr-section-title {
  color: #374550;
}
.cid-tG08KhWuEz img {
  width: 100%;
}
.cid-tG08KhWuEz .mbr-text {
  color: #83868c;
}
.cid-tG08KhWuEz .mbr-section-btn {
  margin-top: 40px;
}
.cid-tG08KhWuEz .mbr-section-btn .btn {
  margin-left: 0 !important;
}
@media (max-width: 768px) {
  .cid-tG08KhWuEz * {
    text-align: left;
  }
}
.cid-tG08KhWuEz .cards-wrap {
  flex-direction: column;
}
.cid-tG08KhWuEz .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
  display: flex;
}
.cid-tG08KhWuEz .wrapper .img {
  margin-bottom: 20px;
  margin-right: 25px;
  background-color: #374550;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-tG08KhWuEz .wrapper .img:hover {
  -webkit-animation-name: animation-wobble-vertical;
  animation-name: animation-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.cid-tG08KhWuEz .wrapper .img .mbr-iconfont {
  font-size: 1.875rem;
  top: 0;
  color: #ffffff;
  border-radius: 50%;
}
.cid-tG08KhWuEz .wrapper .content .mbr-card-title {
  color: #374550;
  margin-bottom: 10px;
}
.cid-tG08KhWuEz .wrapper .content .mbr-text {
  margin-bottom: 19px;
  color: #83868c;
}
@-webkit-keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tG08KhWuEz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG08KhWuEz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG0dumLmVd {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f2b620;
}
.cid-tG0dumLmVd .content-inner .left-content {
  display: block;
}
.cid-tG0dumLmVd .content-inner .left-content .mbr-section-title {
  color: #ffffff;
  margin-bottom: 11px;
}
.cid-tG0dumLmVd .content-inner .left-content .mbr-text {
  color: #ffffff;
}
.cid-tG0dumLmVd .content-inner .right-content {
  display: block;
}
.cid-tG0dumLmVd .content-inner .right-content .mbr-text {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 17px;
  letter-spacing: .02em;
}
.cid-tG0dumLmVd .content-inner .right-content .mbr-section-btn .btn {
  border-radius: 30px;
  padding: 18px 42px !important;
}
.cid-tG0dumLmVd .content-inner .right-content .mbr-section-btn .btn-white {
  color: #000000 !important;
}
.cid-tG0dumLmVd .content-inner .right-content .mbr-section-btn .btn-white:hover {
  background-color: #ffc600 !important;
  border-color: #ffc600 !important;
}
@media (max-width: 991px) {
  .cid-tG0dumLmVd .content-inner {
    justify-content: center !important;
  }
  .cid-tG0dumLmVd * {
    text-align: center;
  }
}
.cid-s2V9XX7U5V {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #eff2f7;
}
.cid-s2V9XX7U5V .head_info {
  text-align: left;
  margin-bottom: 61px;
}
.cid-s2V9XX7U5V .head_info .mbr-section-title {
  margin-bottom: 20px;
  color: #374550;
}
.cid-s2V9XX7U5V .head_info .mbr-subtitle {
  color: #f2b620;
  margin-bottom: 10px;
}
.cid-s2V9XX7U5V .head_info .mbr-text {
  margin-top: 20px;
  margin-bottom: 0;
  color: #83868c;
}
.cid-s2V9XX7U5V .head_info .mbr-section-btn {
  margin-top: 17.5px;
  margin-bottom: 42px;
}
.cid-s2V9XX7U5V .head_info .mbr-section-btn .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
}
.cid-s2V9XX7U5V .head_info .mbr-section-btn .btn::after {
  background-color: #656565;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-s2V9XX7U5V .head_info .mbr-section-btn .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-s2V9XX7U5V .head_info .mbr-section-btn .btn-primary:hover {
  background-color: #f2b620 !important;
  border-color: #f2b620 !important;
  color: #ffffff !important;
}
.cid-s2V9XX7U5V .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  background-color: #ffffff;
  text-align: center;
  border-radius: 8px;
  padding: 42px 15px 55px;
}
.cid-s2V9XX7U5V .plan .plan-title {
  color: #374550;
  margin-bottom: 32px;
}
.cid-s2V9XX7U5V .plan .icon_box {
  display: block;
  text-align: center;
  padding-bottom: 17.5px;
}
.cid-s2V9XX7U5V .plan .icon_box .ico1 {
  font-size: 79.5px;
  display: block;
  position: relative;
  color: #f2b620;
}
.cid-s2V9XX7U5V .plan .plan-price .mbr-text {
  color: #374550;
  margin-bottom: 0;
}
.cid-s2V9XX7U5V .plan .plan-list {
  margin-bottom: 15px;
}
.cid-s2V9XX7U5V .plan .plan-list .list-group {
  color: #83868c;
}
.cid-s2V9XX7U5V .plan .plan-list .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 5px 0;
}
.cid-s2V9XX7U5V .plan .plan-list .list-group-item:before {
  color: #f2b620;
  display: inline-block;
  content: "✓";
  text-align: center;
  transition: all 0.2s;
  width: 25px;
  height: 25px;
}
.cid-s2V9XX7U5V .plan .plan-list .list-group-item:last-child {
  border-radius: 8px;
}
.cid-s2V9XX7U5V .plan .mbr-section-btn {
  margin-top: 17.5px;
  margin-bottom: 42px;
}
.cid-s2V9XX7U5V .plan .mbr-section-btn .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
}
.cid-s2V9XX7U5V .plan .mbr-section-btn .btn::after {
  background-color: #656565;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-s2V9XX7U5V .plan .mbr-section-btn .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-s2V9XX7U5V .plan .mbr-section-btn .btn-primary:hover {
  background-color: #28303f !important;
  color: #ffc600 !important;
}
.cid-s2V9XX7U5V .plan:hover .mbr-iconfont {
  -webkit-animation-name: pulse-shrink;
  animation-name: pulse-shrink;
  -webkit-animation-duration: .35s;
  animation-duration: .35s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
@-webkit-keyframes pulse-shrink {
  to {
    transform: scale(0.9);
  }
}
@keyframes pulse-shrink {
  to {
    transform: scale(0.9);
  }
}
@media (max-width: 768px) {
  .cid-s2V9XX7U5V * {
    text-align: center;
  }
}
.cid-s2V9XX7U5V .plan .plan-list .list-group,
.cid-s2V9XX7U5V .mbr-section-btn {
  color: #374550;
  text-align: center;
}
.cid-s2V9WTln5D {
  padding-top: 90px;
  padding-bottom: 75px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 70px;
}
.cid-s2V9WTln5D .content {
  padding-left: 30px;
}
.cid-s2V9WTln5D .mbr-section-subtitle {
  color: #f2b620;
}
.cid-s2V9WTln5D .mbr-section-title {
  color: #374550;
}
.cid-s2V9WTln5D .mbr-text {
  color: #83868c;
}
.cid-s2V9WTln5D .mbr-iconfont {
  font-family: "Moririse2" !important;
  display: inline-flex;
  transform-origin: ;
  transform: rotate(45deg);
  transition: all 0.3s;
  padding: 0 !important;
  font-size: 1.4rem !important;
  color: #374550;
}
.cid-s2V9WTln5D .mbr-iconfont:before {
  transform: scaleY(0) !important;
  transition: all 0.4s;
}
.cid-s2V9WTln5D .p-4 {
  padding: 1rem 0 !important;
}
.cid-s2V9WTln5D .accordion .card .card-header {
  margin-bottom: 0px;
}
.cid-s2V9WTln5D .mbri-arrow-down:before {
  content: "\e960";
}
.cid-s2V9WTln5D .mbri-arrow-up:before {
  content: "\e960";
}
.cid-s2V9WTln5D .card {
  border-radius: 0px;
  border-bottom: 2px solid #efefef !important;
}
.cid-s2V9WTln5D .card:last-child {
  border-bottom: none !important;
}
.cid-s2V9WTln5D .card .card-header {
  border-radius: 0px;
  border: 0px;
  background-color: transparent;
  padding: 0;
}
.cid-s2V9WTln5D .card .card-header h4 {
  justify-content: flex-start;
  width: 100%;
}
.cid-s2V9WTln5D .card .card-header a.panel-title {
  margin-bottom: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.cid-s2V9WTln5D .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-s2V9WTln5D .card .card-header a.panel-title h4 {
  padding: 1.2rem 0rem;
  margin-bottom: 0;
  color: #374550;
  padding-right: 50px;
}
.cid-s2V9WTln5D .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-s2V9WTln5D .card .card-header a.panel-title .toggle-icon {
  right: 20px;
  position: absolute;
  top: 17px;
  transform: translate(-50%, 0) !important;
  display: inline-block;
  margin-left: 0;
  width: 46px;
  height: 46px;
  background-color: #f2b620;
  transition: all .3s ease 0s;
  box-shadow: 0 14px 40px 0 #f2b620;
}
.cid-s2V9WTln5D .card .card-header a.panel-title .toggle-icon:before,
.cid-s2V9WTln5D .card .card-header a.panel-title .toggle-icon:after {
  background: #ffffff;
  border: 0;
  box-sizing: border-box;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-s2V9WTln5D .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: #ffffff;
  border: 0;
  transform: none;
}
.cid-s2V9WTln5D .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-s2V9WTln5D .card .panel-body {
  padding: 14px 20px;
}
.cid-s2V9WTln5D .card .panel-body p {
  color: #83868c;
}
.cid-s2V9WTln5D .collapsed .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-s2V9WTln5D .collapsed .mbr-iconfont:before {
  transform: scaleY(1) !important;
  transition: all 0.3s;
}
.cid-s2V9WTln5D .collapsed .toggle-icon {
  background-color: transparent !important;
  transform: translate(0, 0);
  right: 7px !important;
  box-shadow: none !important;
}
.cid-s2V9WTln5D .collapsed .toggle-icon:before,
.cid-s2V9WTln5D .collapsed .toggle-icon:after {
  background: #374550 !important;
}
.cid-s2V9WTln5D .collapsed .toggle-icon:before {
  background-color: #374550 !important;
}
.cid-s2V9WTln5D .img-wrap img {
  width: 100%;
}
@media (max-width: 768px) {
  .cid-s2V9WTln5D * {
    text-align: left;
  }
}
.cid-tGmxdm0BoE {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f2b620;
}
.cid-tGmxdm0BoE .content-inner .left-content {
  display: block;
}
.cid-tGmxdm0BoE .content-inner .left-content .mbr-section-title {
  color: #ffffff;
  margin-bottom: 11px;
}
.cid-tGmxdm0BoE .content-inner .left-content .mbr-text {
  color: #ffffff;
}
.cid-tGmxdm0BoE .content-inner .right-content {
  display: block;
}
.cid-tGmxdm0BoE .content-inner .right-content .mbr-text {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 17px;
  letter-spacing: .02em;
}
.cid-tGmxdm0BoE .content-inner .right-content .mbr-section-btn .btn {
  border-radius: 30px;
  padding: 18px 42px !important;
}
.cid-tGmxdm0BoE .content-inner .right-content .mbr-section-btn .btn-white {
  color: #000000 !important;
}
.cid-tGmxdm0BoE .content-inner .right-content .mbr-section-btn .btn-white:hover {
  background-color: #ffc600 !important;
  border-color: #ffc600 !important;
}
@media (max-width: 991px) {
  .cid-tGmxdm0BoE .content-inner {
    justify-content: center !important;
  }
  .cid-tGmxdm0BoE * {
    text-align: center;
  }
}
.cid-tGmrDlTFCZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #374550;
}
.cid-tGmrDlTFCZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGmrDlTFCZ .wrapper {
  max-width: 350px;
}
.cid-tGmrDlTFCZ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tGmrDlTFCZ .row {
    text-align: center;
  }
  .cid-tGmrDlTFCZ .social-row {
    justify-content: center;
  }
}
.cid-tGmrDlTFCZ .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tGmrDlTFCZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tGmrDlTFCZ .list {
    margin-bottom: 0rem;
  }
}
.cid-tGmrDlTFCZ .mbr-text {
  color: #ffffff;
}
.cid-tGmrDlTFCZ .mbr-iconfont {
  color: black;
}
.cid-tGmrDlTFCZ img {
  max-width: 250px;
  height: auto;
  margin-bottom: 40px;
}
.cid-tGmrDlTFCZ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tGmrDlTFCZ .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  padding: 0.6rem;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-tGmrDlTFCZ .social-list .soc-item {
  margin-right: 1rem;
  background-color: #ffc600;
}
.cid-tGmrDlTFCZ .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 767px) {
  .cid-tGmrDlTFCZ .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tGmrDlTFCZ .item-wrap {
  margin-bottom: 16px;
}
.cid-tGmrDlTFCZ .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tGmrDlTFCZ .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #ffffff;
}
.cid-tGmrDlTFCZ .text {
  margin-bottom: 36px;
  color: #ffffff;
}
.cid-tGmrDlTFCZ a {
  font-weight: 400 !important;
}
.cid-tGmrDlTFCZ a.text-danger:hover {
  color: #EABB80 !important;
}
@media (max-width: 768px) {
  .cid-tGmrDlTFCZ img {
    display: inline;
  }
  .cid-tGmrDlTFCZ .b:nth-child(3) {
    padding-top: 30px;
  }
  .cid-tGmrDlTFCZ .b:nth-child(4) {
    padding-top: 30px;
  }
}
.cid-tGmrDlTFCZ .text1 {
  color: #ffffff;
}
.cid-tIguaKx1gn {
  padding-top: 300px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/screen-shot-2023-05-19-at-3.49.51-pm.png");
}
.cid-tIguaKx1gn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tIguaKx1gn .mbr-section-title {
  color: #ffffff;
}
.cid-tIguaKx1gn .mbr-text {
  color: #ffffff;
  font-weight: 500;
}
.cid-tIguaKx1gn .content-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  margin-left: 0.6rem;
}
.cid-tIguaKx1gn .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #374550;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tIguaKx1gn .mbr-section-btn {
  display: flex;
}
.cid-tIguaKx1gn .mbr-section-btn .btn {
  font-weight: 700 !important;
}
.cid-tIguaKx1gn .video-wrap {
  cursor: pointer;
  margin-left: 30px;
}
.cid-tIguaKx1gn .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-tIguaKx1gn .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.25s;
  color: #279e64;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cid-tIguaKx1gn .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-tIguaKx1gn .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-tIguaKx1gn .video-wrap .icon-wrap .line-video-1,
.cid-tIguaKx1gn .video-wrap .icon-wrap .line-video-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: squares 2.4s linear 0s infinite;
  -webkit-animation: squares 2.4s linear 0s infinite;
  -ms-animation: squares 2.4s linear 0s infinite;
  -o-animation: squares 2.4s linear 0s infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  opacity: 0;
}
.cid-tIguaKx1gn .video-wrap .icon-wrap .line-video-2 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.cid-tIguaKx1gn .video-wrap .mbr-text {
  color: #ffffff;
  font-weight: 700;
}
.cid-tIguaKx1gn .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tIguaKx1gn .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tIguaKx1gn .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tIguaKx1gn a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffc600;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tIguaKx1gn a.close:hover {
  color: #ffc600;
}
@media (max-width: 991px) {
  .cid-tIguaKx1gn .separator,
  .cid-tIguaKx1gn .sep-holder,
  .cid-tIguaKx1gn .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tIguaKx1gn .buttons-wrap {
    flex-direction: column;
  }
  .cid-tIguaKx1gn .buttons-wrap .mbr-section-btn {
    justify-content: center;
  }
  .cid-tIguaKx1gn .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 25px;
    justify-content: center;
  }
}
@-webkit-keyframes squares {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    transform: scale(1.24);
    opacity: 1;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
@keyframes squares {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    transform: scale(1.24);
    opacity: 1;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
.cid-tIguaKx1gn .skew {
  background-image: url("../../../assets/images/bg-skew-1.png");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: -140px;
  margin-bottom: 0;
  z-index: 8;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
}
.cid-tIguaKx1gn .skew .inner {
  min-height: 150px;
  align-items: center;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.cid-tIgzbmSYwE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tIgzbmSYwE .mbr-section-subtitle {
  color: #f2b620;
}
.cid-tIgzbmSYwE .mbr-section-title {
  color: #374550;
}
.cid-tIgzbmSYwE img {
  width: 100%;
}
.cid-tIgzbmSYwE .mbr-text {
  color: #83868c;
  text-align: center;
}
.cid-tIgzbmSYwE .mbr-section-btn {
  margin-top: 40px;
}
.cid-tIgzbmSYwE .mbr-section-btn .btn {
  margin-left: 0 !important;
}
@media (max-width: 768px) {
  .cid-tIgzbmSYwE * {
    text-align: left;
  }
}
.cid-tIgzbmSYwE .cards-wrap {
  flex-direction: column;
}
.cid-tIgzbmSYwE .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
  display: flex;
}
.cid-tIgzbmSYwE .wrapper .img {
  margin-bottom: 20px;
  margin-right: 25px;
  background-color: #f2b620;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-tIgzbmSYwE .wrapper .img:hover {
  -webkit-animation-name: animation-wobble-vertical;
  animation-name: animation-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.cid-tIgzbmSYwE .wrapper .img .mbr-iconfont {
  font-size: 1.875rem;
  top: 0;
  color: #000000;
  border-radius: 50%;
}
.cid-tIgzbmSYwE .wrapper .content .mbr-card-title {
  color: #374550;
  margin-bottom: 10px;
}
.cid-tIgzbmSYwE .wrapper .content .mbr-text {
  margin-bottom: 19px;
  color: #83868c;
}
@-webkit-keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tIgzbmSYwE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIgzbmSYwE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIgzbmSYwE .wrapper .content .mbr-text,
.cid-tIgzbmSYwE .img {
  text-align: left;
}
.cid-tIkNQgDfPF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tIkNQgDfPF .mbr-section-subtitle {
  color: #f2b620;
}
.cid-tIkNQgDfPF .mbr-section-title {
  color: #374550;
}
.cid-tIkNQgDfPF img {
  width: 100%;
}
.cid-tIkNQgDfPF .mbr-text {
  color: #83868c;
  text-align: center;
}
.cid-tIkNQgDfPF .mbr-section-btn {
  margin-top: 40px;
}
.cid-tIkNQgDfPF .mbr-section-btn .btn {
  margin-left: 0 !important;
}
@media (max-width: 768px) {
  .cid-tIkNQgDfPF * {
    text-align: left;
  }
}
.cid-tIkNQgDfPF .cards-wrap {
  flex-direction: column;
}
.cid-tIkNQgDfPF .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
  display: flex;
}
.cid-tIkNQgDfPF .wrapper .img {
  margin-bottom: 20px;
  margin-right: 25px;
  background-color: #f2b620;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-tIkNQgDfPF .wrapper .img:hover {
  -webkit-animation-name: animation-wobble-vertical;
  animation-name: animation-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.cid-tIkNQgDfPF .wrapper .img .mbr-iconfont {
  font-size: 1.875rem;
  top: 0;
  color: #000000;
  border-radius: 50%;
}
.cid-tIkNQgDfPF .wrapper .content .mbr-card-title {
  color: #374550;
  margin-bottom: 10px;
}
.cid-tIkNQgDfPF .wrapper .content .mbr-text {
  margin-bottom: 19px;
  color: #83868c;
}
@-webkit-keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tIkNQgDfPF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIkNQgDfPF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIkNQgDfPF .wrapper .content .mbr-text,
.cid-tIkNQgDfPF .img {
  text-align: left;
}
.cid-tIgEj0jKTk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tIgEj0jKTk .mbr-section-subtitle {
  color: #f2b620;
}
.cid-tIgEj0jKTk .mbr-section-title {
  color: #374550;
}
.cid-tIgEj0jKTk img {
  width: 100%;
}
.cid-tIgEj0jKTk .mbr-text {
  color: #83868c;
  text-align: center;
}
.cid-tIgEj0jKTk .mbr-section-btn {
  margin-top: 40px;
}
.cid-tIgEj0jKTk .mbr-section-btn .btn {
  margin-left: 0 !important;
}
@media (max-width: 768px) {
  .cid-tIgEj0jKTk * {
    text-align: left;
  }
}
.cid-tIgEj0jKTk .cards-wrap {
  flex-direction: column;
}
.cid-tIgEj0jKTk .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
  display: flex;
}
.cid-tIgEj0jKTk .wrapper .img {
  margin-bottom: 20px;
  margin-right: 25px;
  background-color: #f2b620;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-tIgEj0jKTk .wrapper .img:hover {
  -webkit-animation-name: animation-wobble-vertical;
  animation-name: animation-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.cid-tIgEj0jKTk .wrapper .img .mbr-iconfont {
  font-size: 1.875rem;
  top: 0;
  color: #000000;
  border-radius: 50%;
}
.cid-tIgEj0jKTk .wrapper .content .mbr-card-title {
  color: #374550;
  margin-bottom: 10px;
}
.cid-tIgEj0jKTk .wrapper .content .mbr-text {
  margin-bottom: 19px;
  color: #83868c;
}
@-webkit-keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tIgEj0jKTk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIgEj0jKTk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIgEj0jKTk .wrapper .content .mbr-text,
.cid-tIgEj0jKTk .img {
  text-align: left;
}
.cid-tIkL8gBxLu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tIkL8gBxLu .mbr-section-subtitle {
  color: #f2b620;
}
.cid-tIkL8gBxLu .mbr-section-title {
  color: #374550;
}
.cid-tIkL8gBxLu img {
  width: 100%;
}
.cid-tIkL8gBxLu .mbr-text {
  color: #83868c;
  text-align: center;
}
.cid-tIkL8gBxLu .mbr-section-btn {
  margin-top: 40px;
}
.cid-tIkL8gBxLu .mbr-section-btn .btn {
  margin-left: 0 !important;
}
@media (max-width: 768px) {
  .cid-tIkL8gBxLu * {
    text-align: left;
  }
}
.cid-tIkL8gBxLu .cards-wrap {
  flex-direction: column;
}
.cid-tIkL8gBxLu .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
  display: flex;
}
.cid-tIkL8gBxLu .wrapper .img {
  margin-bottom: 20px;
  margin-right: 25px;
  background-color: #f2b620;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-tIkL8gBxLu .wrapper .img:hover {
  -webkit-animation-name: animation-wobble-vertical;
  animation-name: animation-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.cid-tIkL8gBxLu .wrapper .img .mbr-iconfont {
  font-size: 1.875rem;
  top: 0;
  color: #000000;
  border-radius: 50%;
}
.cid-tIkL8gBxLu .wrapper .content .mbr-card-title {
  color: #374550;
  margin-bottom: 10px;
}
.cid-tIkL8gBxLu .wrapper .content .mbr-text {
  margin-bottom: 19px;
  color: #83868c;
}
@-webkit-keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tIkL8gBxLu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIkL8gBxLu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIkL8gBxLu .wrapper .content .mbr-text,
.cid-tIkL8gBxLu .img {
  text-align: left;
}
.cid-tIgth8mknW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tIgth8mknW .mbr-section-subtitle {
  color: #f2b620;
}
.cid-tIgth8mknW .mbr-section-title {
  color: #374550;
}
.cid-tIgth8mknW img {
  width: 100%;
}
.cid-tIgth8mknW .mbr-text {
  color: #83868c;
}
.cid-tIgth8mknW .mbr-section-btn {
  margin-top: 40px;
}
.cid-tIgth8mknW .mbr-section-btn .btn {
  margin-left: 0 !important;
}
@media (max-width: 768px) {
  .cid-tIgth8mknW * {
    text-align: left;
  }
}
.cid-tIgth8mknW .cards-wrap {
  flex-direction: column;
}
.cid-tIgth8mknW .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
  display: flex;
}
.cid-tIgth8mknW .wrapper .img {
  margin-bottom: 20px;
  margin-right: 25px;
  background-color: #f2b620;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-tIgth8mknW .wrapper .img:hover {
  -webkit-animation-name: animation-wobble-vertical;
  animation-name: animation-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.cid-tIgth8mknW .wrapper .img .mbr-iconfont {
  font-size: 1.875rem;
  top: 0;
  color: #000000;
  border-radius: 50%;
}
.cid-tIgth8mknW .wrapper .content .mbr-card-title {
  color: #374550;
  margin-bottom: 10px;
}
.cid-tIgth8mknW .wrapper .content .mbr-text {
  margin-bottom: 19px;
  color: #83868c;
}
@-webkit-keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tIgth8mknW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIgth8mknW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIgG1DVgyS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tIgG1DVgyS .mbr-section-subtitle {
  color: #f2b620;
}
.cid-tIgG1DVgyS .mbr-section-title {
  color: #374550;
}
.cid-tIgG1DVgyS img {
  width: 100%;
}
.cid-tIgG1DVgyS .mbr-text {
  color: #83868c;
  text-align: center;
}
.cid-tIgG1DVgyS .mbr-section-btn {
  margin-top: 40px;
}
.cid-tIgG1DVgyS .mbr-section-btn .btn {
  margin-left: 0 !important;
}
@media (max-width: 768px) {
  .cid-tIgG1DVgyS * {
    text-align: left;
  }
}
.cid-tIgG1DVgyS .cards-wrap {
  flex-direction: column;
}
.cid-tIgG1DVgyS .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
  display: flex;
}
.cid-tIgG1DVgyS .wrapper .img {
  margin-bottom: 20px;
  margin-right: 25px;
  background-color: #f2b620;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-tIgG1DVgyS .wrapper .img:hover {
  -webkit-animation-name: animation-wobble-vertical;
  animation-name: animation-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.cid-tIgG1DVgyS .wrapper .img .mbr-iconfont {
  font-size: 1.875rem;
  top: 0;
  color: #000000;
  border-radius: 50%;
}
.cid-tIgG1DVgyS .wrapper .content .mbr-card-title {
  color: #374550;
  margin-bottom: 10px;
}
.cid-tIgG1DVgyS .wrapper .content .mbr-text {
  margin-bottom: 19px;
  color: #83868c;
}
@-webkit-keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tIgG1DVgyS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIgG1DVgyS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIgG1DVgyS .wrapper .content .mbr-text,
.cid-tIgG1DVgyS .img {
  text-align: left;
}
.cid-tIkNa8bLDT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tIkNa8bLDT .mbr-section-subtitle {
  color: #f2b620;
}
.cid-tIkNa8bLDT .mbr-section-title {
  color: #374550;
}
.cid-tIkNa8bLDT img {
  width: 100%;
}
.cid-tIkNa8bLDT .mbr-text {
  color: #83868c;
  text-align: center;
}
.cid-tIkNa8bLDT .mbr-section-btn {
  margin-top: 40px;
}
.cid-tIkNa8bLDT .mbr-section-btn .btn {
  margin-left: 0 !important;
}
@media (max-width: 768px) {
  .cid-tIkNa8bLDT * {
    text-align: left;
  }
}
.cid-tIkNa8bLDT .cards-wrap {
  flex-direction: column;
}
.cid-tIkNa8bLDT .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
  display: flex;
}
.cid-tIkNa8bLDT .wrapper .img {
  margin-bottom: 20px;
  margin-right: 25px;
  background-color: #f2b620;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-tIkNa8bLDT .wrapper .img:hover {
  -webkit-animation-name: animation-wobble-vertical;
  animation-name: animation-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.cid-tIkNa8bLDT .wrapper .img .mbr-iconfont {
  font-size: 1.875rem;
  top: 0;
  color: #000000;
  border-radius: 50%;
}
.cid-tIkNa8bLDT .wrapper .content .mbr-card-title {
  color: #374550;
  margin-bottom: 10px;
}
.cid-tIkNa8bLDT .wrapper .content .mbr-text {
  margin-bottom: 19px;
  color: #83868c;
}
@-webkit-keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tIkNa8bLDT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIkNa8bLDT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIkNa8bLDT .wrapper .content .mbr-text,
.cid-tIkNa8bLDT .img {
  text-align: left;
}
.cid-tIkKMFQDCG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tIkKMFQDCG .mbr-section-subtitle {
  color: #f2b620;
}
.cid-tIkKMFQDCG .mbr-section-title {
  color: #374550;
}
.cid-tIkKMFQDCG img {
  width: 100%;
}
.cid-tIkKMFQDCG .mbr-text {
  color: #83868c;
  text-align: center;
}
.cid-tIkKMFQDCG .mbr-section-btn {
  margin-top: 40px;
}
.cid-tIkKMFQDCG .mbr-section-btn .btn {
  margin-left: 0 !important;
}
@media (max-width: 768px) {
  .cid-tIkKMFQDCG * {
    text-align: left;
  }
}
.cid-tIkKMFQDCG .cards-wrap {
  flex-direction: column;
}
.cid-tIkKMFQDCG .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
  display: flex;
}
.cid-tIkKMFQDCG .wrapper .img {
  margin-bottom: 20px;
  margin-right: 25px;
  background-color: #f2b620;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-tIkKMFQDCG .wrapper .img:hover {
  -webkit-animation-name: animation-wobble-vertical;
  animation-name: animation-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.cid-tIkKMFQDCG .wrapper .img .mbr-iconfont {
  font-size: 1.875rem;
  top: 0;
  color: #000000;
  border-radius: 50%;
}
.cid-tIkKMFQDCG .wrapper .content .mbr-card-title {
  color: #374550;
  margin-bottom: 10px;
}
.cid-tIkKMFQDCG .wrapper .content .mbr-text {
  margin-bottom: 19px;
  color: #83868c;
}
@-webkit-keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tIkKMFQDCG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIkKMFQDCG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIkKMFQDCG .wrapper .content .mbr-text,
.cid-tIkKMFQDCG .img {
  text-align: left;
}
.cid-tIkSPgFN0H {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f2b620;
}
.cid-tIkSPgFN0H .content-inner .left-content {
  display: block;
}
.cid-tIkSPgFN0H .content-inner .left-content .mbr-section-title {
  color: #ffffff;
  margin-bottom: 11px;
}
.cid-tIkSPgFN0H .content-inner .left-content .mbr-text {
  color: #ffffff;
}
.cid-tIkSPgFN0H .content-inner .right-content {
  display: block;
}
.cid-tIkSPgFN0H .content-inner .right-content .mbr-text {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 17px;
  letter-spacing: .02em;
}
.cid-tIkSPgFN0H .content-inner .right-content .mbr-section-btn .btn {
  border-radius: 30px;
  padding: 18px 42px !important;
}
.cid-tIkSPgFN0H .content-inner .right-content .mbr-section-btn .btn-white {
  color: #000000 !important;
}
.cid-tIkSPgFN0H .content-inner .right-content .mbr-section-btn .btn-white:hover {
  background-color: #ffc600 !important;
  border-color: #ffc600 !important;
}
@media (max-width: 991px) {
  .cid-tIkSPgFN0H .content-inner {
    justify-content: center !important;
  }
  .cid-tIkSPgFN0H * {
    text-align: center;
  }
}
.cid-tIkSWtLoFp {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 45px;
}
.cid-tIkSWtLoFp .image-block {
  margin: auto;
}
.cid-tIkSWtLoFp .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tIkSWtLoFp .image-block {
    width: 100% !important;
  }
}
.cid-tIkSWtLoFp .container-fluid {
  padding: 0;
}
.cid-tIgrOp88Kf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #374550;
}
.cid-tIgrOp88Kf .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tIgrOp88Kf .wrapper {
  max-width: 350px;
}
.cid-tIgrOp88Kf .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tIgrOp88Kf .row {
    text-align: center;
  }
  .cid-tIgrOp88Kf .social-row {
    justify-content: center;
  }
}
.cid-tIgrOp88Kf .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tIgrOp88Kf .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tIgrOp88Kf .list {
    margin-bottom: 0rem;
  }
}
.cid-tIgrOp88Kf .mbr-text {
  color: #ffffff;
}
.cid-tIgrOp88Kf .mbr-iconfont {
  color: black;
}
.cid-tIgrOp88Kf img {
  max-width: 250px;
  height: auto;
  margin-bottom: 40px;
}
.cid-tIgrOp88Kf .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tIgrOp88Kf .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  padding: 0.6rem;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-tIgrOp88Kf .social-list .soc-item {
  margin-right: 1rem;
  background-color: #ffc600;
}
.cid-tIgrOp88Kf .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 767px) {
  .cid-tIgrOp88Kf .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIgrOp88Kf .item-wrap {
  margin-bottom: 16px;
}
.cid-tIgrOp88Kf .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tIgrOp88Kf .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #ffffff;
}
.cid-tIgrOp88Kf .text {
  margin-bottom: 36px;
  color: #ffffff;
}
.cid-tIgrOp88Kf a {
  font-weight: 400 !important;
}
.cid-tIgrOp88Kf a.text-danger:hover {
  color: #EABB80 !important;
}
@media (max-width: 768px) {
  .cid-tIgrOp88Kf img {
    display: inline;
  }
  .cid-tIgrOp88Kf .b:nth-child(3) {
    padding-top: 30px;
  }
  .cid-tIgrOp88Kf .b:nth-child(4) {
    padding-top: 30px;
  }
}
.cid-tIgrOp88Kf .text1 {
  color: #ffffff;
}
.cid-tR1nCANriT {
  z-index: 1000;
  width: 100%;
}
.cid-tR1nCANriT nav.navbar {
  position: fixed;
}
.cid-tR1nCANriT .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-tR1nCANriT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tR1nCANriT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tR1nCANriT .dropdown-item:hover,
.cid-tR1nCANriT .dropdown-item:focus {
  background: #374550 !important;
  color: white !important;
}
.cid-tR1nCANriT .dropdown-item:hover span {
  color: white;
}
.cid-tR1nCANriT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tR1nCANriT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tR1nCANriT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tR1nCANriT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tR1nCANriT .nav-link {
  position: relative;
}
.cid-tR1nCANriT .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tR1nCANriT .container {
    flex-wrap: nowrap;
  }
}
.cid-tR1nCANriT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tR1nCANriT .dropdown-menu,
.cid-tR1nCANriT .navbar.opened {
  background: #ffffff !important;
}
.cid-tR1nCANriT .nav-item:focus,
.cid-tR1nCANriT .nav-link:focus {
  outline: none;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tR1nCANriT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tR1nCANriT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tR1nCANriT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
  backdrop-filter: blur(5px);
}
.cid-tR1nCANriT .navbar.opened {
  transition: all 0.3s;
}
.cid-tR1nCANriT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tR1nCANriT .navbar .navbar-logo img {
  width: auto;
}
.cid-tR1nCANriT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tR1nCANriT .navbar.collapsed {
  justify-content: center;
}
.cid-tR1nCANriT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tR1nCANriT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tR1nCANriT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tR1nCANriT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tR1nCANriT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tR1nCANriT .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-tR1nCANriT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tR1nCANriT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tR1nCANriT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tR1nCANriT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tR1nCANriT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tR1nCANriT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tR1nCANriT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tR1nCANriT .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-tR1nCANriT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tR1nCANriT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tR1nCANriT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tR1nCANriT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tR1nCANriT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tR1nCANriT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tR1nCANriT .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tR1nCANriT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tR1nCANriT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tR1nCANriT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tR1nCANriT .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-tR1nCANriT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tR1nCANriT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tR1nCANriT .dropdown-item.active,
.cid-tR1nCANriT .dropdown-item:active {
  background-color: transparent;
}
.cid-tR1nCANriT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tR1nCANriT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tR1nCANriT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tR1nCANriT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tR1nCANriT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tR1nCANriT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tR1nCANriT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tR1nCANriT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tR1nCANriT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tR1nCANriT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tR1nCANriT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tR1nCANriT .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-tR1nCANriT .navbar {
    height: 70px;
  }
  .cid-tR1nCANriT .navbar.opened {
    height: auto;
  }
  .cid-tR1nCANriT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIl46MRN92 {
  padding-top: 135px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tIl46MRN92 .mbr-section-subtitle {
  color: #f2b620;
}
.cid-tIl46MRN92 .mbr-section-title {
  color: #374550;
}
.cid-tIl46MRN92 img {
  width: 100%;
}
.cid-tIl46MRN92 .mbr-text {
  color: #83868c;
}
.cid-tIl46MRN92 .mbr-section-btn {
  margin-top: 40px;
}
.cid-tIl46MRN92 .mbr-section-btn .btn {
  margin-left: 0 !important;
}
@media (max-width: 768px) {
  .cid-tIl46MRN92 * {
    text-align: left;
  }
}
.cid-tIl46MRN92 .cards-wrap {
  flex-direction: column;
}
.cid-tIl46MRN92 .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
  display: flex;
}
.cid-tIl46MRN92 .wrapper .img {
  margin-bottom: 20px;
  margin-right: 25px;
  background-color: #279e64;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-tIl46MRN92 .wrapper .img:hover {
  -webkit-animation-name: animation-wobble-vertical;
  animation-name: animation-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.cid-tIl46MRN92 .wrapper .img .mbr-iconfont {
  font-size: 1.875rem;
  top: 0;
  color: #ffffff;
  border-radius: 50%;
}
.cid-tIl46MRN92 .wrapper .content .mbr-card-title {
  color: #374550;
  margin-bottom: 10px;
}
.cid-tIl46MRN92 .wrapper .content .mbr-text {
  margin-bottom: 19px;
  color: #83868c;
}
@-webkit-keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tIl46MRN92 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIl46MRN92 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIgrOp88Kf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #374550;
}
.cid-tIgrOp88Kf .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tIgrOp88Kf .wrapper {
  max-width: 350px;
}
.cid-tIgrOp88Kf .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tIgrOp88Kf .row {
    text-align: center;
  }
  .cid-tIgrOp88Kf .social-row {
    justify-content: center;
  }
}
.cid-tIgrOp88Kf .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tIgrOp88Kf .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tIgrOp88Kf .list {
    margin-bottom: 0rem;
  }
}
.cid-tIgrOp88Kf .mbr-text {
  color: #ffffff;
}
.cid-tIgrOp88Kf .mbr-iconfont {
  color: black;
}
.cid-tIgrOp88Kf img {
  max-width: 250px;
  height: auto;
  margin-bottom: 40px;
}
.cid-tIgrOp88Kf .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tIgrOp88Kf .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  padding: 0.6rem;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-tIgrOp88Kf .social-list .soc-item {
  margin-right: 1rem;
  background-color: #ffc600;
}
.cid-tIgrOp88Kf .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 767px) {
  .cid-tIgrOp88Kf .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIgrOp88Kf .item-wrap {
  margin-bottom: 16px;
}
.cid-tIgrOp88Kf .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tIgrOp88Kf .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #ffffff;
}
.cid-tIgrOp88Kf .text {
  margin-bottom: 36px;
  color: #ffffff;
}
.cid-tIgrOp88Kf a {
  font-weight: 400 !important;
}
.cid-tIgrOp88Kf a.text-danger:hover {
  color: #EABB80 !important;
}
@media (max-width: 768px) {
  .cid-tIgrOp88Kf img {
    display: inline;
  }
  .cid-tIgrOp88Kf .b:nth-child(3) {
    padding-top: 30px;
  }
  .cid-tIgrOp88Kf .b:nth-child(4) {
    padding-top: 30px;
  }
}
.cid-tIgrOp88Kf .text1 {
  color: #ffffff;
}
.cid-tR1nCANriT {
  z-index: 1000;
  width: 100%;
}
.cid-tR1nCANriT nav.navbar {
  position: fixed;
}
.cid-tR1nCANriT .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-tR1nCANriT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tR1nCANriT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tR1nCANriT .dropdown-item:hover,
.cid-tR1nCANriT .dropdown-item:focus {
  background: #374550 !important;
  color: white !important;
}
.cid-tR1nCANriT .dropdown-item:hover span {
  color: white;
}
.cid-tR1nCANriT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tR1nCANriT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tR1nCANriT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tR1nCANriT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tR1nCANriT .nav-link {
  position: relative;
}
.cid-tR1nCANriT .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tR1nCANriT .container {
    flex-wrap: nowrap;
  }
}
.cid-tR1nCANriT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tR1nCANriT .dropdown-menu,
.cid-tR1nCANriT .navbar.opened {
  background: #ffffff !important;
}
.cid-tR1nCANriT .nav-item:focus,
.cid-tR1nCANriT .nav-link:focus {
  outline: none;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tR1nCANriT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tR1nCANriT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tR1nCANriT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
  backdrop-filter: blur(5px);
}
.cid-tR1nCANriT .navbar.opened {
  transition: all 0.3s;
}
.cid-tR1nCANriT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tR1nCANriT .navbar .navbar-logo img {
  width: auto;
}
.cid-tR1nCANriT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tR1nCANriT .navbar.collapsed {
  justify-content: center;
}
.cid-tR1nCANriT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tR1nCANriT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tR1nCANriT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tR1nCANriT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tR1nCANriT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tR1nCANriT .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-tR1nCANriT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tR1nCANriT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tR1nCANriT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tR1nCANriT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tR1nCANriT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tR1nCANriT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tR1nCANriT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tR1nCANriT .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-tR1nCANriT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tR1nCANriT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tR1nCANriT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tR1nCANriT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tR1nCANriT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tR1nCANriT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tR1nCANriT .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tR1nCANriT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tR1nCANriT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tR1nCANriT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tR1nCANriT .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-tR1nCANriT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tR1nCANriT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tR1nCANriT .dropdown-item.active,
.cid-tR1nCANriT .dropdown-item:active {
  background-color: transparent;
}
.cid-tR1nCANriT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tR1nCANriT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tR1nCANriT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tR1nCANriT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tR1nCANriT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tR1nCANriT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tR1nCANriT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tR1nCANriT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tR1nCANriT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tR1nCANriT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tR1nCANriT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tR1nCANriT .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-tR1nCANriT .navbar {
    height: 70px;
  }
  .cid-tR1nCANriT .navbar.opened {
    height: auto;
  }
  .cid-tR1nCANriT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIlb7R0Gye {
  padding-top: 135px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tIlb7R0Gye .mbr-section-subtitle {
  color: #f2b620;
}
.cid-tIlb7R0Gye .mbr-section-title {
  color: #374550;
}
.cid-tIlb7R0Gye img {
  width: 100%;
}
.cid-tIlb7R0Gye .mbr-text {
  color: #83868c;
}
.cid-tIlb7R0Gye .mbr-section-btn {
  margin-top: 40px;
}
.cid-tIlb7R0Gye .mbr-section-btn .btn {
  margin-left: 0 !important;
}
@media (max-width: 768px) {
  .cid-tIlb7R0Gye * {
    text-align: left;
  }
}
.cid-tIlb7R0Gye .cards-wrap {
  flex-direction: column;
}
.cid-tIlb7R0Gye .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
  display: flex;
}
.cid-tIlb7R0Gye .wrapper .img {
  margin-bottom: 20px;
  margin-right: 25px;
  background-color: #279e64;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-tIlb7R0Gye .wrapper .img:hover {
  -webkit-animation-name: animation-wobble-vertical;
  animation-name: animation-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.cid-tIlb7R0Gye .wrapper .img .mbr-iconfont {
  font-size: 1.875rem;
  top: 0;
  color: #ffffff;
  border-radius: 50%;
}
.cid-tIlb7R0Gye .wrapper .content .mbr-card-title {
  color: #374550;
  margin-bottom: 10px;
}
.cid-tIlb7R0Gye .wrapper .content .mbr-text {
  margin-bottom: 19px;
  color: #83868c;
}
@-webkit-keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tIlb7R0Gye .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIlb7R0Gye .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIlb7SWnhi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #374550;
}
.cid-tIlb7SWnhi .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tIlb7SWnhi .wrapper {
  max-width: 350px;
}
.cid-tIlb7SWnhi .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tIlb7SWnhi .row {
    text-align: center;
  }
  .cid-tIlb7SWnhi .social-row {
    justify-content: center;
  }
}
.cid-tIlb7SWnhi .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tIlb7SWnhi .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tIlb7SWnhi .list {
    margin-bottom: 0rem;
  }
}
.cid-tIlb7SWnhi .mbr-text {
  color: #ffffff;
}
.cid-tIlb7SWnhi .mbr-iconfont {
  color: black;
}
.cid-tIlb7SWnhi img {
  max-width: 250px;
  height: auto;
  margin-bottom: 40px;
}
.cid-tIlb7SWnhi .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tIlb7SWnhi .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  padding: 0.6rem;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-tIlb7SWnhi .social-list .soc-item {
  margin-right: 1rem;
  background-color: #ffc600;
}
.cid-tIlb7SWnhi .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 767px) {
  .cid-tIlb7SWnhi .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIlb7SWnhi .item-wrap {
  margin-bottom: 16px;
}
.cid-tIlb7SWnhi .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tIlb7SWnhi .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #ffffff;
}
.cid-tIlb7SWnhi .text {
  margin-bottom: 36px;
  color: #ffffff;
}
.cid-tIlb7SWnhi a {
  font-weight: 400 !important;
}
.cid-tIlb7SWnhi a.text-danger:hover {
  color: #EABB80 !important;
}
@media (max-width: 768px) {
  .cid-tIlb7SWnhi img {
    display: inline;
  }
  .cid-tIlb7SWnhi .b:nth-child(3) {
    padding-top: 30px;
  }
  .cid-tIlb7SWnhi .b:nth-child(4) {
    padding-top: 30px;
  }
}
.cid-tIlb7SWnhi .text1 {
  color: #ffffff;
}
.cid-tR1nCANriT {
  z-index: 1000;
  width: 100%;
}
.cid-tR1nCANriT nav.navbar {
  position: fixed;
}
.cid-tR1nCANriT .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-tR1nCANriT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tR1nCANriT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tR1nCANriT .dropdown-item:hover,
.cid-tR1nCANriT .dropdown-item:focus {
  background: #374550 !important;
  color: white !important;
}
.cid-tR1nCANriT .dropdown-item:hover span {
  color: white;
}
.cid-tR1nCANriT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tR1nCANriT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tR1nCANriT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tR1nCANriT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tR1nCANriT .nav-link {
  position: relative;
}
.cid-tR1nCANriT .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tR1nCANriT .container {
    flex-wrap: nowrap;
  }
}
.cid-tR1nCANriT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tR1nCANriT .dropdown-menu,
.cid-tR1nCANriT .navbar.opened {
  background: #ffffff !important;
}
.cid-tR1nCANriT .nav-item:focus,
.cid-tR1nCANriT .nav-link:focus {
  outline: none;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tR1nCANriT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tR1nCANriT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tR1nCANriT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
  backdrop-filter: blur(5px);
}
.cid-tR1nCANriT .navbar.opened {
  transition: all 0.3s;
}
.cid-tR1nCANriT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tR1nCANriT .navbar .navbar-logo img {
  width: auto;
}
.cid-tR1nCANriT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tR1nCANriT .navbar.collapsed {
  justify-content: center;
}
.cid-tR1nCANriT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tR1nCANriT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tR1nCANriT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tR1nCANriT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tR1nCANriT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tR1nCANriT .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-tR1nCANriT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tR1nCANriT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tR1nCANriT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tR1nCANriT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tR1nCANriT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tR1nCANriT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tR1nCANriT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tR1nCANriT .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-tR1nCANriT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tR1nCANriT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tR1nCANriT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tR1nCANriT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tR1nCANriT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tR1nCANriT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tR1nCANriT .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tR1nCANriT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tR1nCANriT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tR1nCANriT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tR1nCANriT .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-tR1nCANriT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tR1nCANriT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tR1nCANriT .dropdown-item.active,
.cid-tR1nCANriT .dropdown-item:active {
  background-color: transparent;
}
.cid-tR1nCANriT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tR1nCANriT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tR1nCANriT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tR1nCANriT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tR1nCANriT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tR1nCANriT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tR1nCANriT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tR1nCANriT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tR1nCANriT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tR1nCANriT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tR1nCANriT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tR1nCANriT .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-tR1nCANriT .navbar {
    height: 70px;
  }
  .cid-tR1nCANriT .navbar.opened {
    height: auto;
  }
  .cid-tR1nCANriT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tQV8QoA8Pv {
  padding-top: 135px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tQV8QoA8Pv .mbr-section-subtitle {
  color: #f2b620;
}
.cid-tQV8QoA8Pv .mbr-section-title {
  color: #374550;
}
.cid-tQV8QoA8Pv img {
  width: 100%;
}
.cid-tQV8QoA8Pv .mbr-text {
  color: #83868c;
}
.cid-tQV8QoA8Pv .mbr-section-btn {
  margin-top: 40px;
}
.cid-tQV8QoA8Pv .mbr-section-btn .btn {
  margin-left: 0 !important;
}
@media (max-width: 768px) {
  .cid-tQV8QoA8Pv * {
    text-align: left;
  }
}
.cid-tQV8QoA8Pv .cards-wrap {
  flex-direction: column;
}
.cid-tQV8QoA8Pv .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
  display: flex;
}
.cid-tQV8QoA8Pv .wrapper .img {
  margin-bottom: 20px;
  margin-right: 25px;
  background-color: #279e64;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-tQV8QoA8Pv .wrapper .img:hover {
  -webkit-animation-name: animation-wobble-vertical;
  animation-name: animation-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.cid-tQV8QoA8Pv .wrapper .img .mbr-iconfont {
  font-size: 1.875rem;
  top: 0;
  color: #ffffff;
  border-radius: 50%;
}
.cid-tQV8QoA8Pv .wrapper .content .mbr-card-title {
  color: #374550;
  margin-bottom: 10px;
}
.cid-tQV8QoA8Pv .wrapper .content .mbr-text {
  margin-bottom: 19px;
  color: #83868c;
}
@-webkit-keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tQV8QoA8Pv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQV8QoA8Pv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQV8Qqadp2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #374550;
}
.cid-tQV8Qqadp2 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tQV8Qqadp2 .wrapper {
  max-width: 350px;
}
.cid-tQV8Qqadp2 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tQV8Qqadp2 .row {
    text-align: center;
  }
  .cid-tQV8Qqadp2 .social-row {
    justify-content: center;
  }
}
.cid-tQV8Qqadp2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tQV8Qqadp2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tQV8Qqadp2 .list {
    margin-bottom: 0rem;
  }
}
.cid-tQV8Qqadp2 .mbr-text {
  color: #ffffff;
}
.cid-tQV8Qqadp2 .mbr-iconfont {
  color: black;
}
.cid-tQV8Qqadp2 img {
  max-width: 250px;
  height: auto;
  margin-bottom: 40px;
}
.cid-tQV8Qqadp2 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tQV8Qqadp2 .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  padding: 0.6rem;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-tQV8Qqadp2 .social-list .soc-item {
  margin-right: 1rem;
  background-color: #ffc600;
}
.cid-tQV8Qqadp2 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 767px) {
  .cid-tQV8Qqadp2 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tQV8Qqadp2 .item-wrap {
  margin-bottom: 16px;
}
.cid-tQV8Qqadp2 .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tQV8Qqadp2 .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #ffffff;
}
.cid-tQV8Qqadp2 .text {
  margin-bottom: 36px;
  color: #ffffff;
}
.cid-tQV8Qqadp2 a {
  font-weight: 400 !important;
}
.cid-tQV8Qqadp2 a.text-danger:hover {
  color: #EABB80 !important;
}
@media (max-width: 768px) {
  .cid-tQV8Qqadp2 img {
    display: inline;
  }
  .cid-tQV8Qqadp2 .b:nth-child(3) {
    padding-top: 30px;
  }
  .cid-tQV8Qqadp2 .b:nth-child(4) {
    padding-top: 30px;
  }
}
.cid-tQV8Qqadp2 .text1 {
  color: #ffffff;
}
.cid-tR1nCANriT {
  z-index: 1000;
  width: 100%;
}
.cid-tR1nCANriT nav.navbar {
  position: fixed;
}
.cid-tR1nCANriT .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-tR1nCANriT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tR1nCANriT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tR1nCANriT .dropdown-item:hover,
.cid-tR1nCANriT .dropdown-item:focus {
  background: #374550 !important;
  color: white !important;
}
.cid-tR1nCANriT .dropdown-item:hover span {
  color: white;
}
.cid-tR1nCANriT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tR1nCANriT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tR1nCANriT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tR1nCANriT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tR1nCANriT .nav-link {
  position: relative;
}
.cid-tR1nCANriT .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tR1nCANriT .container {
    flex-wrap: nowrap;
  }
}
.cid-tR1nCANriT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tR1nCANriT .dropdown-menu,
.cid-tR1nCANriT .navbar.opened {
  background: #ffffff !important;
}
.cid-tR1nCANriT .nav-item:focus,
.cid-tR1nCANriT .nav-link:focus {
  outline: none;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tR1nCANriT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tR1nCANriT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tR1nCANriT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
  backdrop-filter: blur(5px);
}
.cid-tR1nCANriT .navbar.opened {
  transition: all 0.3s;
}
.cid-tR1nCANriT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tR1nCANriT .navbar .navbar-logo img {
  width: auto;
}
.cid-tR1nCANriT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tR1nCANriT .navbar.collapsed {
  justify-content: center;
}
.cid-tR1nCANriT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tR1nCANriT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tR1nCANriT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tR1nCANriT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tR1nCANriT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tR1nCANriT .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-tR1nCANriT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tR1nCANriT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tR1nCANriT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tR1nCANriT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tR1nCANriT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tR1nCANriT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tR1nCANriT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tR1nCANriT .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-tR1nCANriT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tR1nCANriT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tR1nCANriT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tR1nCANriT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tR1nCANriT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tR1nCANriT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tR1nCANriT .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tR1nCANriT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tR1nCANriT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tR1nCANriT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tR1nCANriT .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-tR1nCANriT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tR1nCANriT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tR1nCANriT .dropdown-item.active,
.cid-tR1nCANriT .dropdown-item:active {
  background-color: transparent;
}
.cid-tR1nCANriT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tR1nCANriT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tR1nCANriT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tR1nCANriT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tR1nCANriT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tR1nCANriT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tR1nCANriT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tR1nCANriT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tR1nCANriT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tR1nCANriT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tR1nCANriT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tR1nCANriT .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-tR1nCANriT .navbar {
    height: 70px;
  }
  .cid-tR1nCANriT .navbar.opened {
    height: auto;
  }
  .cid-tR1nCANriT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tQVfAjvNAr {
  padding-top: 225px;
  padding-bottom: 75px;
  background-color: #eff2f7;
}
.cid-tQVfAjvNAr .img-wrap {
  position: relative;
}
.cid-tQVfAjvNAr .img-wrap img {
  width: 100%;
}
.cid-tQVfAjvNAr .mbr-section-subtitle {
  color: #f2b620;
  margin-bottom: 14px;
}
.cid-tQVfAjvNAr .mbr-section-title {
  color: #374550;
}
.cid-tQVfAjvNAr .mbr-text {
  color: #83868c;
}
.cid-tQVfAjvNAr .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-tQVfAjvNAr .mbr-section-btn .btn:first-child {
  margin-left: 0 !important;
}
.cid-tQVfAjvNAr .cards-wrap {
  margin-top: 30px;
}
.cid-tQVfAjvNAr .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
  text-align: left;
}
.cid-tQVfAjvNAr .wrapper .icon {
  margin-bottom: 21px;
  border-radius: 50%;
  position: relative;
  padding: 16px;
  display: inline-block;
  transition: all .3s;
}
.cid-tQVfAjvNAr .wrapper .icon:hover {
  -webkit-animation-name: animation-wobble-vertical;
  animation-name: animation-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.cid-tQVfAjvNAr .wrapper .icon .mbr-iconfont {
  font-size: 38px;
  color: #f2b620;
  position: relative;
  display: block;
}
.cid-tQVfAjvNAr .wrapper .icon1 {
  background-color: #f2b620;
}
.cid-tQVfAjvNAr .wrapper .icon1 .mbr-iconfont {
  color: #374550;
}
.cid-tQVfAjvNAr .wrapper .icon2 {
  background-color: #f2b620;
}
.cid-tQVfAjvNAr .wrapper .icon2 .mbr-iconfont {
  color: #000000;
}
.cid-tQVfAjvNAr .wrapper .icon3 {
  background-color: #5a67a1;
}
.cid-tQVfAjvNAr .wrapper .icon3 .mbr-iconfont {
  color: #ffffff;
}
.cid-tQVfAjvNAr .wrapper .icon4 {
  background-color: #e3e5e6;
}
.cid-tQVfAjvNAr .wrapper .mbr-card-title {
  color: #374550;
  margin-bottom: 17px;
}
.cid-tQVfAjvNAr .wrapper .mbr-text {
  margin-bottom: 19px;
  color: #83868c;
}
@media (max-width: 768px) {
  .cid-tQVfAjvNAr .mbr-section-btn {
    justify-content: center;
  }
  .cid-tQVfAjvNAr * {
    text-align: left;
  }
}
@-webkit-keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tQVfAjvNAr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQVfAjvNAr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGmrDlTFCZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #374550;
}
.cid-tGmrDlTFCZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGmrDlTFCZ .wrapper {
  max-width: 350px;
}
.cid-tGmrDlTFCZ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tGmrDlTFCZ .row {
    text-align: center;
  }
  .cid-tGmrDlTFCZ .social-row {
    justify-content: center;
  }
}
.cid-tGmrDlTFCZ .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tGmrDlTFCZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tGmrDlTFCZ .list {
    margin-bottom: 0rem;
  }
}
.cid-tGmrDlTFCZ .mbr-text {
  color: #ffffff;
}
.cid-tGmrDlTFCZ .mbr-iconfont {
  color: black;
}
.cid-tGmrDlTFCZ img {
  max-width: 250px;
  height: auto;
  margin-bottom: 40px;
}
.cid-tGmrDlTFCZ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tGmrDlTFCZ .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  padding: 0.6rem;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-tGmrDlTFCZ .social-list .soc-item {
  margin-right: 1rem;
  background-color: #ffc600;
}
.cid-tGmrDlTFCZ .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 767px) {
  .cid-tGmrDlTFCZ .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tGmrDlTFCZ .item-wrap {
  margin-bottom: 16px;
}
.cid-tGmrDlTFCZ .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tGmrDlTFCZ .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #ffffff;
}
.cid-tGmrDlTFCZ .text {
  margin-bottom: 36px;
  color: #ffffff;
}
.cid-tGmrDlTFCZ a {
  font-weight: 400 !important;
}
.cid-tGmrDlTFCZ a.text-danger:hover {
  color: #EABB80 !important;
}
@media (max-width: 768px) {
  .cid-tGmrDlTFCZ img {
    display: inline;
  }
  .cid-tGmrDlTFCZ .b:nth-child(3) {
    padding-top: 30px;
  }
  .cid-tGmrDlTFCZ .b:nth-child(4) {
    padding-top: 30px;
  }
}
.cid-tGmrDlTFCZ .text1 {
  color: #ffffff;
}
.cid-tR1nCANriT {
  z-index: 1000;
  width: 100%;
}
.cid-tR1nCANriT nav.navbar {
  position: fixed;
}
.cid-tR1nCANriT .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-tR1nCANriT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tR1nCANriT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tR1nCANriT .dropdown-item:hover,
.cid-tR1nCANriT .dropdown-item:focus {
  background: #374550 !important;
  color: white !important;
}
.cid-tR1nCANriT .dropdown-item:hover span {
  color: white;
}
.cid-tR1nCANriT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tR1nCANriT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tR1nCANriT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tR1nCANriT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tR1nCANriT .nav-link {
  position: relative;
}
.cid-tR1nCANriT .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tR1nCANriT .container {
    flex-wrap: nowrap;
  }
}
.cid-tR1nCANriT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tR1nCANriT .dropdown-menu,
.cid-tR1nCANriT .navbar.opened {
  background: #ffffff !important;
}
.cid-tR1nCANriT .nav-item:focus,
.cid-tR1nCANriT .nav-link:focus {
  outline: none;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tR1nCANriT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tR1nCANriT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tR1nCANriT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
  backdrop-filter: blur(5px);
}
.cid-tR1nCANriT .navbar.opened {
  transition: all 0.3s;
}
.cid-tR1nCANriT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tR1nCANriT .navbar .navbar-logo img {
  width: auto;
}
.cid-tR1nCANriT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tR1nCANriT .navbar.collapsed {
  justify-content: center;
}
.cid-tR1nCANriT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tR1nCANriT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tR1nCANriT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tR1nCANriT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tR1nCANriT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tR1nCANriT .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-tR1nCANriT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tR1nCANriT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tR1nCANriT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tR1nCANriT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tR1nCANriT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tR1nCANriT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tR1nCANriT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tR1nCANriT .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-tR1nCANriT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tR1nCANriT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tR1nCANriT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tR1nCANriT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tR1nCANriT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tR1nCANriT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tR1nCANriT .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tR1nCANriT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tR1nCANriT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tR1nCANriT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tR1nCANriT .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-tR1nCANriT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tR1nCANriT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tR1nCANriT .dropdown-item.active,
.cid-tR1nCANriT .dropdown-item:active {
  background-color: transparent;
}
.cid-tR1nCANriT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tR1nCANriT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tR1nCANriT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tR1nCANriT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tR1nCANriT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tR1nCANriT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tR1nCANriT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tR1nCANriT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tR1nCANriT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tR1nCANriT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tR1nCANriT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tR1nCANriT .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-tR1nCANriT .navbar {
    height: 70px;
  }
  .cid-tR1nCANriT .navbar.opened {
    height: auto;
  }
  .cid-tR1nCANriT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tR1nCANriT {
  z-index: 1000;
  width: 100%;
}
.cid-tR1nCANriT nav.navbar {
  position: fixed;
}
.cid-tR1nCANriT .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-tR1nCANriT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tR1nCANriT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tR1nCANriT .dropdown-item:hover,
.cid-tR1nCANriT .dropdown-item:focus {
  background: #374550 !important;
  color: white !important;
}
.cid-tR1nCANriT .dropdown-item:hover span {
  color: white;
}
.cid-tR1nCANriT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tR1nCANriT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tR1nCANriT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tR1nCANriT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tR1nCANriT .nav-link {
  position: relative;
}
.cid-tR1nCANriT .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tR1nCANriT .container {
    flex-wrap: nowrap;
  }
}
.cid-tR1nCANriT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tR1nCANriT .dropdown-menu,
.cid-tR1nCANriT .navbar.opened {
  background: #ffffff !important;
}
.cid-tR1nCANriT .nav-item:focus,
.cid-tR1nCANriT .nav-link:focus {
  outline: none;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tR1nCANriT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tR1nCANriT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tR1nCANriT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
  backdrop-filter: blur(5px);
}
.cid-tR1nCANriT .navbar.opened {
  transition: all 0.3s;
}
.cid-tR1nCANriT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tR1nCANriT .navbar .navbar-logo img {
  width: auto;
}
.cid-tR1nCANriT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tR1nCANriT .navbar.collapsed {
  justify-content: center;
}
.cid-tR1nCANriT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tR1nCANriT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tR1nCANriT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tR1nCANriT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tR1nCANriT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tR1nCANriT .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-tR1nCANriT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tR1nCANriT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tR1nCANriT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tR1nCANriT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tR1nCANriT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tR1nCANriT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tR1nCANriT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tR1nCANriT .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-tR1nCANriT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tR1nCANriT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tR1nCANriT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tR1nCANriT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tR1nCANriT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tR1nCANriT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tR1nCANriT .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tR1nCANriT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tR1nCANriT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tR1nCANriT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tR1nCANriT .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-tR1nCANriT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tR1nCANriT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tR1nCANriT .dropdown-item.active,
.cid-tR1nCANriT .dropdown-item:active {
  background-color: transparent;
}
.cid-tR1nCANriT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tR1nCANriT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tR1nCANriT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tR1nCANriT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tR1nCANriT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tR1nCANriT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tR1nCANriT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tR1nCANriT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tR1nCANriT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tR1nCANriT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tR1nCANriT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tR1nCANriT .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-tR1nCANriT .navbar {
    height: 70px;
  }
  .cid-tR1nCANriT .navbar.opened {
    height: auto;
  }
  .cid-tR1nCANriT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tRQXReb1yI {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/screen-shot-2023-05-19-at-3.49.51-pm.png");
}
.cid-tRQXReb1yI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tRQXReb1yI .mbr-section-title {
  color: #ffffff;
}
.cid-tRQXReb1yI .mbr-text {
  color: #ffffff;
  font-weight: 500;
}
.cid-tRQXReb1yI .content-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  margin-left: 0.6rem;
}
.cid-tRQXReb1yI .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #374550;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tRQXReb1yI .mbr-section-btn {
  display: flex;
}
.cid-tRQXReb1yI .mbr-section-btn .btn {
  font-weight: 700 !important;
}
.cid-tRQXReb1yI .video-wrap {
  cursor: pointer;
  margin-left: 30px;
}
.cid-tRQXReb1yI .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-tRQXReb1yI .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.25s;
  color: #279e64;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cid-tRQXReb1yI .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-tRQXReb1yI .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-tRQXReb1yI .video-wrap .icon-wrap .line-video-1,
.cid-tRQXReb1yI .video-wrap .icon-wrap .line-video-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: squares 2.4s linear 0s infinite;
  -webkit-animation: squares 2.4s linear 0s infinite;
  -ms-animation: squares 2.4s linear 0s infinite;
  -o-animation: squares 2.4s linear 0s infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  opacity: 0;
}
.cid-tRQXReb1yI .video-wrap .icon-wrap .line-video-2 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.cid-tRQXReb1yI .video-wrap .mbr-text {
  color: #ffffff;
  font-weight: 700;
}
.cid-tRQXReb1yI .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tRQXReb1yI .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tRQXReb1yI .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tRQXReb1yI a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffc600;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tRQXReb1yI a.close:hover {
  color: #ffc600;
}
@media (max-width: 991px) {
  .cid-tRQXReb1yI .separator,
  .cid-tRQXReb1yI .sep-holder,
  .cid-tRQXReb1yI .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tRQXReb1yI .buttons-wrap {
    flex-direction: column;
  }
  .cid-tRQXReb1yI .buttons-wrap .mbr-section-btn {
    justify-content: center;
  }
  .cid-tRQXReb1yI .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 25px;
    justify-content: center;
  }
}
@-webkit-keyframes squares {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    transform: scale(1.24);
    opacity: 1;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
@keyframes squares {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    transform: scale(1.24);
    opacity: 1;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
.cid-tRQXReb1yI .skew {
  background-image: url("../../../assets/images/bg-skew.png");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: -140px;
  margin-bottom: 0;
  z-index: 8;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
}
.cid-tRQXReb1yI .skew .inner {
  min-height: 150px;
  align-items: center;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.cid-tRQXReb1yI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRQXReb1yI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRR10cof1w {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tRR10cof1w .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-tRR10cof1w .contents .mbr-subtitle {
  color: #f2b620;
  margin-bottom: 10px;
}
.cid-tRR10cof1w .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #374550;
}
.cid-tRR10cof1w .contents .mbr-text {
  color: #83868c;
}
.cid-tRR10cof1w .card.accentCard .card-wrapper {
  background-color: #f2b620;
}
.cid-tRR10cof1w .card.accentCard .card-wrapper .card-box .card-title {
  color: #ffffff;
}
.cid-tRR10cof1w .card.accentCard .card-wrapper .card-box .mbr-text {
  color: #ffffff;
}
.cid-tRR10cof1w .card.accentCard .card-wrapper .card-img {
  box-shadow: -10px -10px 0 0 #e3e5e6;
  background-color: #ffffff;
}
.cid-tRR10cof1w .card.accentCard .card-wrapper .card-img .mbr-iconfont {
  color: #f2b620 !important;
}
.cid-tRR10cof1w .card.accentCard .card-wrapper .btn.btn-primary-outline {
  color: #ffffff;
}
.cid-tRR10cof1w .card-wrapper {
  height: 100%;
  border-radius: 5px;
  border: 1px solid #dcdfe2;
  padding: 50px 35px 31px;
  transition: all 0.3s;
  margin-top: 15px;
  margin-bottom: 15px;
  text-align: center;
}
.cid-tRR10cof1w .card-wrapper .card-box .card-title {
  color: #374550;
}
.cid-tRR10cof1w .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  color: #83868c;
}
.cid-tRR10cof1w .card-wrapper .card-box .mbr-iconfont {
  padding-left: 0.2rem;
  display: inline-block;
}
.cid-tRR10cof1w .card-wrapper .card-img {
  margin-bottom: 40px;
  transition: all .3s linear 0s;
  display: inline-flex;
  width: 70px;
  height: 70px;
  border-radius: 5px;
  padding: 13px;
  box-shadow: -10px -10px 0 0 #eeeff2;
  align-items: center;
  justify-content: center;
  background-color: #f2b620;
  cursor: pointer;
  position: relative;
}
.cid-tRR10cof1w .card-wrapper .card-img .mbr-iconfont {
  font-size: 50px;
  color: #ffffff;
}
.cid-tRR10cof1w .card-wrapper .mbr-link-btn {
  transition: all 0.3s;
  margin-bottom: 20px;
}
.cid-tRR10cof1w .card-wrapper .mbr-link-btn .btn {
  transition: all 0.3s;
  font-weight: 700;
}
.cid-tRR10cof1w .card-wrapper .mbr-link-btn .btn.btn-primary-outline {
  color: #374550;
}
.cid-tRR10cof1w .card-wrapper .mbr-link-btn .btn .mbr-iconfont {
  font-weight: 700;
  padding-left: 40px !important;
  display: inline;
  transition: transform .3s linear 0s !important;
}
.cid-tRR10cof1w .card-wrapper .mbr-link-btn:hover .mbr-iconfont {
  transform: translateX(-10px);
}
.cid-tRR10cof1w .card-wrapper:hover .card-img {
  -webkit-animation: updown 0.45s ease-in-out 0.1s;
  animation: updown 0.45s ease-in-out 0.1s;
}
.cid-tRR10cof1w .btn[class*="-outline"] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
}
.cid-tRR10cof1w .btn[class*="-outline"] span {
  order: 2;
  font-size: 0.8rem;
  transition: padding 0.3s !important;
}
.cid-tRR10cof1w .btn[class*="-outline"]:hover span {
  padding-left: 10px;
}
.cid-tRR10cof1w .btn[class*="-outline"]:hover {
  background-color: transparent !important;
  color: #374550 !important;
  box-shadow: none !important;
}
.cid-tRR10cof1w .btn[class*="-outline"]:active,
.cid-tRR10cof1w .btn[class*="-outline"]:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
@media (max-width: 991px) {
  .cid-tRR10cof1w .card {
    margin-bottom: 15px;
  }
}
@-webkit-keyframes updown {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tRR10cof1w .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRR10cof1w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRR10cof1w .contents .mbr-section-title {
  color: #374550;
}
.cid-tRQYWDGf6S {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #eff2f7;
}
.cid-tRQYWDGf6S .head_info {
  text-align: left;
  margin-bottom: 61px;
}
.cid-tRQYWDGf6S .head_info .mbr-section-title {
  margin-bottom: 20px;
  color: #374550;
}
.cid-tRQYWDGf6S .head_info .mbr-subtitle {
  color: #f2b620;
  margin-bottom: 10px;
}
.cid-tRQYWDGf6S .head_info .mbr-text {
  margin-top: 20px;
  margin-bottom: 0;
  color: #83868c;
}
.cid-tRQYWDGf6S .head_info .mbr-section-btn {
  margin-top: 17.5px;
  margin-bottom: 42px;
}
.cid-tRQYWDGf6S .head_info .mbr-section-btn .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
}
.cid-tRQYWDGf6S .head_info .mbr-section-btn .btn::after {
  background-color: #656565;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-tRQYWDGf6S .head_info .mbr-section-btn .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-tRQYWDGf6S .head_info .mbr-section-btn .btn-primary:hover {
  background-color: #f2b620 !important;
  border-color: #f2b620 !important;
  color: #ffffff !important;
}
.cid-tRQYWDGf6S .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  background-color: #ffffff;
  text-align: center;
  border-radius: 8px;
  padding: 42px 15px 55px;
}
.cid-tRQYWDGf6S .plan .plan-title {
  color: #374550;
  margin-bottom: 32px;
}
.cid-tRQYWDGf6S .plan .icon_box {
  display: block;
  text-align: center;
  padding-bottom: 17.5px;
}
.cid-tRQYWDGf6S .plan .icon_box .ico1 {
  font-size: 79.5px;
  display: block;
  position: relative;
  color: #f2b620;
}
.cid-tRQYWDGf6S .plan .plan-price .mbr-text {
  color: #374550;
  margin-bottom: 0;
}
.cid-tRQYWDGf6S .plan .plan-list {
  margin-bottom: 15px;
}
.cid-tRQYWDGf6S .plan .plan-list .list-group {
  color: #83868c;
}
.cid-tRQYWDGf6S .plan .plan-list .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 5px 0;
}
.cid-tRQYWDGf6S .plan .plan-list .list-group-item:before {
  color: #ffc600;
  display: inline-block;
  content: "✓";
  text-align: center;
  transition: all 0.2s;
  width: 25px;
  height: 25px;
}
.cid-tRQYWDGf6S .plan .plan-list .list-group-item:last-child {
  border-radius: 8px;
}
.cid-tRQYWDGf6S .plan .mbr-section-btn {
  margin-top: 17.5px;
  margin-bottom: 42px;
}
.cid-tRQYWDGf6S .plan .mbr-section-btn .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
}
.cid-tRQYWDGf6S .plan .mbr-section-btn .btn::after {
  background-color: #656565;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-tRQYWDGf6S .plan .mbr-section-btn .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-tRQYWDGf6S .plan .mbr-section-btn .btn-primary:hover {
  background-color: #28303f !important;
  color: #ffc600 !important;
}
.cid-tRQYWDGf6S .plan:hover .mbr-iconfont {
  -webkit-animation-name: pulse-shrink;
  animation-name: pulse-shrink;
  -webkit-animation-duration: .35s;
  animation-duration: .35s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
@-webkit-keyframes pulse-shrink {
  to {
    transform: scale(0.9);
  }
}
@keyframes pulse-shrink {
  to {
    transform: scale(0.9);
  }
}
@media (max-width: 768px) {
  .cid-tRQYWDGf6S * {
    text-align: center;
  }
}
.cid-tRQYWDGf6S .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRQYWDGf6S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRQXSMd9RA {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f2b620;
}
.cid-tRQXSMd9RA .content-inner .left-content {
  display: block;
}
.cid-tRQXSMd9RA .content-inner .left-content .mbr-section-title {
  color: #ffffff;
  margin-bottom: 11px;
}
.cid-tRQXSMd9RA .content-inner .left-content .mbr-text {
  color: #ffffff;
}
.cid-tRQXSMd9RA .content-inner .right-content {
  display: block;
}
.cid-tRQXSMd9RA .content-inner .right-content .mbr-text {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 17px;
  letter-spacing: .02em;
}
.cid-tRQXSMd9RA .content-inner .right-content .mbr-section-btn .btn {
  border-radius: 30px;
  padding: 18px 42px !important;
}
.cid-tRQXSMd9RA .content-inner .right-content .mbr-section-btn .btn-white {
  color: #000000 !important;
}
.cid-tRQXSMd9RA .content-inner .right-content .mbr-section-btn .btn-white:hover {
  background-color: #ffc600 !important;
  border-color: #ffc600 !important;
}
@media (max-width: 991px) {
  .cid-tRQXSMd9RA .content-inner {
    justify-content: center !important;
  }
  .cid-tRQXSMd9RA * {
    text-align: center;
  }
}
.cid-tRQXSMd9RA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRQXSMd9RA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGmrDlTFCZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #374550;
}
.cid-tGmrDlTFCZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGmrDlTFCZ .wrapper {
  max-width: 350px;
}
.cid-tGmrDlTFCZ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tGmrDlTFCZ .row {
    text-align: center;
  }
  .cid-tGmrDlTFCZ .social-row {
    justify-content: center;
  }
}
.cid-tGmrDlTFCZ .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tGmrDlTFCZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tGmrDlTFCZ .list {
    margin-bottom: 0rem;
  }
}
.cid-tGmrDlTFCZ .mbr-text {
  color: #ffffff;
}
.cid-tGmrDlTFCZ .mbr-iconfont {
  color: black;
}
.cid-tGmrDlTFCZ img {
  max-width: 250px;
  height: auto;
  margin-bottom: 40px;
}
.cid-tGmrDlTFCZ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tGmrDlTFCZ .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  padding: 0.6rem;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-tGmrDlTFCZ .social-list .soc-item {
  margin-right: 1rem;
  background-color: #ffc600;
}
.cid-tGmrDlTFCZ .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 767px) {
  .cid-tGmrDlTFCZ .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tGmrDlTFCZ .item-wrap {
  margin-bottom: 16px;
}
.cid-tGmrDlTFCZ .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tGmrDlTFCZ .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #ffffff;
}
.cid-tGmrDlTFCZ .text {
  margin-bottom: 36px;
  color: #ffffff;
}
.cid-tGmrDlTFCZ a {
  font-weight: 400 !important;
}
.cid-tGmrDlTFCZ a.text-danger:hover {
  color: #EABB80 !important;
}
@media (max-width: 768px) {
  .cid-tGmrDlTFCZ img {
    display: inline;
  }
  .cid-tGmrDlTFCZ .b:nth-child(3) {
    padding-top: 30px;
  }
  .cid-tGmrDlTFCZ .b:nth-child(4) {
    padding-top: 30px;
  }
}
.cid-tGmrDlTFCZ .text1 {
  color: #ffffff;
}
.cid-tGmzbEVatU {
  padding-top: 280px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tGmzbEVatU .content {
  padding-left: 30px;
}
.cid-tGmzbEVatU img {
  width: 100%;
}
.cid-tGmzbEVatU .mbr-section-subtitle {
  color: #f2b620;
}
.cid-tGmzbEVatU .mbr-section-title {
  text-align: left;
  color: #374550;
}
.cid-tGmzbEVatU .mbr-text {
  color: #83868c;
}
.cid-tGmzbEVatU .left-part {
  color: #f2b620;
}
.cid-tGmzbEVatU .left-part .number {
  color: #279e64;
  display: inline;
}
.cid-tGmzbEVatU .left-part .mbr-text {
  color: #374550;
  display: inline;
}
.cid-tGmzbEVatU .mbr-section-btn {
  margin-top: 40px;
}
.cid-tGmzbEVatU .mbr-section-btn .btn {
  margin-left: 0 !important;
}
@media (max-width: 768px) {
  .cid-tGmzbEVatU * {
    text-align: left;
  }
}
.cid-tGmzbEVatU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGmzbEVatU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGmrDlTFCZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #374550;
}
.cid-tGmrDlTFCZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGmrDlTFCZ .wrapper {
  max-width: 350px;
}
.cid-tGmrDlTFCZ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tGmrDlTFCZ .row {
    text-align: center;
  }
  .cid-tGmrDlTFCZ .social-row {
    justify-content: center;
  }
}
.cid-tGmrDlTFCZ .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tGmrDlTFCZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tGmrDlTFCZ .list {
    margin-bottom: 0rem;
  }
}
.cid-tGmrDlTFCZ .mbr-text {
  color: #ffffff;
}
.cid-tGmrDlTFCZ .mbr-iconfont {
  color: black;
}
.cid-tGmrDlTFCZ img {
  max-width: 250px;
  height: auto;
  margin-bottom: 40px;
}
.cid-tGmrDlTFCZ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tGmrDlTFCZ .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  padding: 0.6rem;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-tGmrDlTFCZ .social-list .soc-item {
  margin-right: 1rem;
  background-color: #ffc600;
}
.cid-tGmrDlTFCZ .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 767px) {
  .cid-tGmrDlTFCZ .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tGmrDlTFCZ .item-wrap {
  margin-bottom: 16px;
}
.cid-tGmrDlTFCZ .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tGmrDlTFCZ .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #ffffff;
}
.cid-tGmrDlTFCZ .text {
  margin-bottom: 36px;
  color: #ffffff;
}
.cid-tGmrDlTFCZ a {
  font-weight: 400 !important;
}
.cid-tGmrDlTFCZ a.text-danger:hover {
  color: #EABB80 !important;
}
@media (max-width: 768px) {
  .cid-tGmrDlTFCZ img {
    display: inline;
  }
  .cid-tGmrDlTFCZ .b:nth-child(3) {
    padding-top: 30px;
  }
  .cid-tGmrDlTFCZ .b:nth-child(4) {
    padding-top: 30px;
  }
}
.cid-tGmrDlTFCZ .text1 {
  color: #ffffff;
}
.cid-tR1nCANriT {
  z-index: 1000;
  width: 100%;
}
.cid-tR1nCANriT nav.navbar {
  position: fixed;
}
.cid-tR1nCANriT .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-tR1nCANriT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tR1nCANriT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tR1nCANriT .dropdown-item:hover,
.cid-tR1nCANriT .dropdown-item:focus {
  background: #374550 !important;
  color: white !important;
}
.cid-tR1nCANriT .dropdown-item:hover span {
  color: white;
}
.cid-tR1nCANriT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tR1nCANriT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tR1nCANriT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tR1nCANriT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tR1nCANriT .nav-link {
  position: relative;
}
.cid-tR1nCANriT .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tR1nCANriT .container {
    flex-wrap: nowrap;
  }
}
.cid-tR1nCANriT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tR1nCANriT .dropdown-menu,
.cid-tR1nCANriT .navbar.opened {
  background: #ffffff !important;
}
.cid-tR1nCANriT .nav-item:focus,
.cid-tR1nCANriT .nav-link:focus {
  outline: none;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tR1nCANriT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tR1nCANriT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tR1nCANriT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tR1nCANriT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
  backdrop-filter: blur(5px);
}
.cid-tR1nCANriT .navbar.opened {
  transition: all 0.3s;
}
.cid-tR1nCANriT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tR1nCANriT .navbar .navbar-logo img {
  width: auto;
}
.cid-tR1nCANriT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tR1nCANriT .navbar.collapsed {
  justify-content: center;
}
.cid-tR1nCANriT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tR1nCANriT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tR1nCANriT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tR1nCANriT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tR1nCANriT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tR1nCANriT .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-tR1nCANriT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tR1nCANriT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tR1nCANriT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tR1nCANriT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tR1nCANriT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tR1nCANriT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tR1nCANriT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tR1nCANriT .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-tR1nCANriT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tR1nCANriT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tR1nCANriT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tR1nCANriT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tR1nCANriT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tR1nCANriT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tR1nCANriT .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tR1nCANriT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tR1nCANriT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tR1nCANriT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tR1nCANriT .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-tR1nCANriT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tR1nCANriT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tR1nCANriT .dropdown-item.active,
.cid-tR1nCANriT .dropdown-item:active {
  background-color: transparent;
}
.cid-tR1nCANriT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tR1nCANriT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tR1nCANriT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tR1nCANriT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tR1nCANriT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tR1nCANriT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tR1nCANriT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tR1nCANriT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tR1nCANriT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tR1nCANriT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tR1nCANriT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tR1nCANriT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tR1nCANriT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tR1nCANriT .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-tR1nCANriT .navbar {
    height: 70px;
  }
  .cid-tR1nCANriT .navbar.opened {
    height: auto;
  }
  .cid-tR1nCANriT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tSkO9RvOom {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tSkO9RvOom .mbr-section-subtitle {
  color: #f2b620;
}
.cid-tSkO9RvOom .mbr-section-title {
  color: #374550;
}
.cid-tSkO9RvOom img {
  width: 100%;
}
.cid-tSkO9RvOom .mbr-text {
  color: #374550;
  text-align: left;
}
.cid-tSkO9RvOom .mbr-section-btn {
  margin-top: 40px;
}
.cid-tSkO9RvOom .mbr-section-btn .btn {
  margin-left: 0 !important;
}
@media (max-width: 768px) {
  .cid-tSkO9RvOom * {
    text-align: left;
  }
}
.cid-tSkO9RvOom .cards-wrap {
  flex-direction: column;
}
.cid-tSkO9RvOom .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
  display: flex;
}
.cid-tSkO9RvOom .wrapper .img {
  margin-bottom: 20px;
  margin-right: 25px;
  background-color: #f2b620;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-tSkO9RvOom .wrapper .img:hover {
  -webkit-animation-name: animation-wobble-vertical;
  animation-name: animation-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.cid-tSkO9RvOom .wrapper .img .mbr-iconfont {
  font-size: 1.875rem;
  top: 0;
  color: #000000;
  border-radius: 50%;
}
.cid-tSkO9RvOom .wrapper .content .mbr-card-title {
  color: #374550;
  margin-bottom: 10px;
}
.cid-tSkO9RvOom .wrapper .content .mbr-text {
  margin-bottom: 19px;
  color: #83868c;
}
@-webkit-keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tSkO9RvOom .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSkO9RvOom .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSkMAhvgrc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #374550;
}
.cid-tSkMAhvgrc .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tSkMAhvgrc .wrapper {
  max-width: 350px;
}
.cid-tSkMAhvgrc .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tSkMAhvgrc .row {
    text-align: center;
  }
  .cid-tSkMAhvgrc .social-row {
    justify-content: center;
  }
}
.cid-tSkMAhvgrc .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tSkMAhvgrc .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tSkMAhvgrc .list {
    margin-bottom: 0rem;
  }
}
.cid-tSkMAhvgrc .mbr-text {
  color: #ffffff;
}
.cid-tSkMAhvgrc .mbr-iconfont {
  color: black;
}
.cid-tSkMAhvgrc img {
  max-width: 250px;
  height: auto;
  margin-bottom: 40px;
}
.cid-tSkMAhvgrc .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tSkMAhvgrc .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  padding: 0.6rem;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-tSkMAhvgrc .social-list .soc-item {
  margin-right: 1rem;
  background-color: #ffc600;
}
.cid-tSkMAhvgrc .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 767px) {
  .cid-tSkMAhvgrc .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tSkMAhvgrc .item-wrap {
  margin-bottom: 16px;
}
.cid-tSkMAhvgrc .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tSkMAhvgrc .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #ffffff;
}
.cid-tSkMAhvgrc .text {
  margin-bottom: 36px;
  color: #ffffff;
}
.cid-tSkMAhvgrc a {
  font-weight: 400 !important;
}
.cid-tSkMAhvgrc a.text-danger:hover {
  color: #EABB80 !important;
}
@media (max-width: 768px) {
  .cid-tSkMAhvgrc img {
    display: inline;
  }
  .cid-tSkMAhvgrc .b:nth-child(3) {
    padding-top: 30px;
  }
  .cid-tSkMAhvgrc .b:nth-child(4) {
    padding-top: 30px;
  }
}
.cid-tSkMAhvgrc .text1 {
  color: #ffffff;
}
.cid-tSkMAiU7JR {
  z-index: 1000;
  width: 100%;
}
.cid-tSkMAiU7JR nav.navbar {
  position: fixed;
}
.cid-tSkMAiU7JR .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-tSkMAiU7JR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tSkMAiU7JR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tSkMAiU7JR .dropdown-item:hover,
.cid-tSkMAiU7JR .dropdown-item:focus {
  background: #374550 !important;
  color: white !important;
}
.cid-tSkMAiU7JR .dropdown-item:hover span {
  color: white;
}
.cid-tSkMAiU7JR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tSkMAiU7JR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tSkMAiU7JR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tSkMAiU7JR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tSkMAiU7JR .nav-link {
  position: relative;
}
.cid-tSkMAiU7JR .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tSkMAiU7JR .container {
    flex-wrap: nowrap;
  }
}
.cid-tSkMAiU7JR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tSkMAiU7JR .dropdown-menu,
.cid-tSkMAiU7JR .navbar.opened {
  background: #ffffff !important;
}
.cid-tSkMAiU7JR .nav-item:focus,
.cid-tSkMAiU7JR .nav-link:focus {
  outline: none;
}
.cid-tSkMAiU7JR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tSkMAiU7JR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSkMAiU7JR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tSkMAiU7JR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tSkMAiU7JR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tSkMAiU7JR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tSkMAiU7JR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
  backdrop-filter: blur(5px);
}
.cid-tSkMAiU7JR .navbar.opened {
  transition: all 0.3s;
}
.cid-tSkMAiU7JR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tSkMAiU7JR .navbar .navbar-logo img {
  width: auto;
}
.cid-tSkMAiU7JR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tSkMAiU7JR .navbar.collapsed {
  justify-content: center;
}
.cid-tSkMAiU7JR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tSkMAiU7JR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tSkMAiU7JR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tSkMAiU7JR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tSkMAiU7JR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tSkMAiU7JR .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-tSkMAiU7JR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tSkMAiU7JR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tSkMAiU7JR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tSkMAiU7JR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tSkMAiU7JR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tSkMAiU7JR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tSkMAiU7JR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tSkMAiU7JR .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-tSkMAiU7JR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tSkMAiU7JR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tSkMAiU7JR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tSkMAiU7JR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tSkMAiU7JR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tSkMAiU7JR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tSkMAiU7JR .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tSkMAiU7JR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tSkMAiU7JR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tSkMAiU7JR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tSkMAiU7JR .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-tSkMAiU7JR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tSkMAiU7JR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tSkMAiU7JR .dropdown-item.active,
.cid-tSkMAiU7JR .dropdown-item:active {
  background-color: transparent;
}
.cid-tSkMAiU7JR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tSkMAiU7JR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tSkMAiU7JR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tSkMAiU7JR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tSkMAiU7JR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tSkMAiU7JR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tSkMAiU7JR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tSkMAiU7JR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tSkMAiU7JR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tSkMAiU7JR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-tSkMAiU7JR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tSkMAiU7JR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSkMAiU7JR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSkMAiU7JR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tSkMAiU7JR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSkMAiU7JR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tSkMAiU7JR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tSkMAiU7JR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSkMAiU7JR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tSkMAiU7JR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tSkMAiU7JR .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-tSkMAiU7JR .navbar {
    height: 70px;
  }
  .cid-tSkMAiU7JR .navbar.opened {
    height: auto;
  }
  .cid-tSkMAiU7JR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTQd11Ypa7 {
  z-index: 1000;
  width: 100%;
}
.cid-tTQd11Ypa7 nav.navbar {
  position: fixed;
}
.cid-tTQd11Ypa7 .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-tTQd11Ypa7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tTQd11Ypa7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tTQd11Ypa7 .dropdown-item:hover,
.cid-tTQd11Ypa7 .dropdown-item:focus {
  background: #374550 !important;
  color: white !important;
}
.cid-tTQd11Ypa7 .dropdown-item:hover span {
  color: white;
}
.cid-tTQd11Ypa7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tTQd11Ypa7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tTQd11Ypa7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tTQd11Ypa7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tTQd11Ypa7 .nav-link {
  position: relative;
}
.cid-tTQd11Ypa7 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tTQd11Ypa7 .container {
    flex-wrap: nowrap;
  }
}
.cid-tTQd11Ypa7 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tTQd11Ypa7 .dropdown-menu,
.cid-tTQd11Ypa7 .navbar.opened {
  background: #ffffff !important;
}
.cid-tTQd11Ypa7 .nav-item:focus,
.cid-tTQd11Ypa7 .nav-link:focus {
  outline: none;
}
.cid-tTQd11Ypa7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tTQd11Ypa7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tTQd11Ypa7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tTQd11Ypa7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tTQd11Ypa7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTQd11Ypa7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTQd11Ypa7 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
  backdrop-filter: blur(5px);
}
.cid-tTQd11Ypa7 .navbar.opened {
  transition: all 0.3s;
}
.cid-tTQd11Ypa7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tTQd11Ypa7 .navbar .navbar-logo img {
  width: auto;
}
.cid-tTQd11Ypa7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTQd11Ypa7 .navbar.collapsed {
  justify-content: center;
}
.cid-tTQd11Ypa7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTQd11Ypa7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tTQd11Ypa7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tTQd11Ypa7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTQd11Ypa7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tTQd11Ypa7 .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-tTQd11Ypa7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTQd11Ypa7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tTQd11Ypa7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tTQd11Ypa7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTQd11Ypa7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTQd11Ypa7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTQd11Ypa7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tTQd11Ypa7 .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-tTQd11Ypa7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tTQd11Ypa7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTQd11Ypa7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tTQd11Ypa7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tTQd11Ypa7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tTQd11Ypa7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tTQd11Ypa7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tTQd11Ypa7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tTQd11Ypa7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tTQd11Ypa7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tTQd11Ypa7 .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-tTQd11Ypa7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTQd11Ypa7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTQd11Ypa7 .dropdown-item.active,
.cid-tTQd11Ypa7 .dropdown-item:active {
  background-color: transparent;
}
.cid-tTQd11Ypa7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tTQd11Ypa7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTQd11Ypa7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTQd11Ypa7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tTQd11Ypa7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTQd11Ypa7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTQd11Ypa7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tTQd11Ypa7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tTQd11Ypa7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tTQd11Ypa7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #491414;
}
.cid-tTQd11Ypa7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tTQd11Ypa7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTQd11Ypa7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTQd11Ypa7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tTQd11Ypa7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTQd11Ypa7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tTQd11Ypa7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tTQd11Ypa7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTQd11Ypa7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tTQd11Ypa7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tTQd11Ypa7 .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-tTQd11Ypa7 .navbar {
    height: 70px;
  }
  .cid-tTQd11Ypa7 .navbar.opened {
    height: auto;
  }
  .cid-tTQd11Ypa7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTQdPsRH7n {
  padding-top: 150px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/screen-shot-2023-05-19-at-3.49.51-pm.png");
}
.cid-tTQdPsRH7n .mbr-iconfont {
  font-size: 50px;
  color: #ffffff;
}
.cid-tTQdPsRH7n .mbr-section-title {
  color: #ffffff;
  width: 100%;
  margin-bottom: 15px;
  margin-top: 20px;
}
.cid-tTQdPsRH7n .mbr-section-subtitle {
  color: #ffffff;
  width: 100%;
  position: relative;
  padding-top: 25px;
}
.cid-tTQdPsRH7n .mbr-section-subtitle::before {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 2px;
  background-color: #fff;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.cid-tTQdPsRH7n .mbr-text {
  color: #ffffff;
  width: 100;
}
.cid-tTQdPsRH7n .content-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #f2b620;
  margin-left: 0.6rem;
}
.cid-tTQdPsRH7n .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #ffffff;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tTQdPsRH7n .mbr-section-btn .btn {
  border-radius: 3px;
  padding: 12px 40px !important;
  margin-right: 20px;
}
@media (max-width: 991px) {
  .cid-tTQdPsRH7n .separator,
  .cid-tTQdPsRH7n .sep-holder,
  .cid-tTQdPsRH7n .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tTQdPsRH7n .buttons-wrap {
    flex-direction: column;
  }
}
.cid-tTQdPsRH7n .items {
  display: flex;
  flex-direction: row;
  position: relative;
  padding-top: 25px;
}
.cid-tTQdPsRH7n .items::before {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 2px;
  background-color: #ffffff;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.cid-tTQdPsRH7n .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
}
.cid-tTQdPsRH7n .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  padding-left: 1rem;
  font-size: 1rem;
  margin: auto;
  color: #ffffff;
}
.cid-tTQdPsRH7n .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-tTQdPsRH7n .items .list-item:last-child .listico {
  display: none;
}
.cid-tTQdPsRH7n .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTQdPsRH7n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTQdxyRzzz {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #eff2f7;
}
.cid-tTQdxyRzzz .head_info {
  text-align: left;
  margin-bottom: 61px;
}
.cid-tTQdxyRzzz .head_info .mbr-section-title {
  margin-bottom: 20px;
  color: #374550;
}
.cid-tTQdxyRzzz .head_info .mbr-subtitle {
  color: #f2b620;
  margin-bottom: 10px;
}
.cid-tTQdxyRzzz .head_info .mbr-text {
  margin-top: 20px;
  margin-bottom: 0;
  color: #83868c;
}
.cid-tTQdxyRzzz .head_info .mbr-section-btn {
  margin-top: 17.5px;
  margin-bottom: 42px;
}
.cid-tTQdxyRzzz .head_info .mbr-section-btn .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
}
.cid-tTQdxyRzzz .head_info .mbr-section-btn .btn::after {
  background-color: #656565;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-tTQdxyRzzz .head_info .mbr-section-btn .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-tTQdxyRzzz .head_info .mbr-section-btn .btn-primary:hover {
  background-color: #f2b620 !important;
  border-color: #f2b620 !important;
  color: #ffffff !important;
}
.cid-tTQdxyRzzz .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  background-color: #ffffff;
  text-align: center;
  border-radius: 8px;
  padding: 42px 15px 55px;
}
.cid-tTQdxyRzzz .plan .plan-title {
  color: #374550;
  margin-bottom: 32px;
}
.cid-tTQdxyRzzz .plan .icon_box {
  display: block;
  text-align: center;
  padding-bottom: 17.5px;
}
.cid-tTQdxyRzzz .plan .icon_box .ico1 {
  font-size: 79.5px;
  display: block;
  position: relative;
  color: #f2b620;
}
.cid-tTQdxyRzzz .plan .plan-price .mbr-text {
  color: #374550;
  margin-bottom: 0;
}
.cid-tTQdxyRzzz .plan .plan-list {
  margin-bottom: 15px;
}
.cid-tTQdxyRzzz .plan .plan-list .list-group {
  color: #83868c;
}
.cid-tTQdxyRzzz .plan .plan-list .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 5px 0;
}
.cid-tTQdxyRzzz .plan .plan-list .list-group-item:before {
  color: #f2b620;
  display: inline-block;
  content: "✓";
  text-align: center;
  transition: all 0.2s;
  width: 25px;
  height: 25px;
}
.cid-tTQdxyRzzz .plan .plan-list .list-group-item:last-child {
  border-radius: 8px;
}
.cid-tTQdxyRzzz .plan .mbr-section-btn {
  margin-top: 17.5px;
  margin-bottom: 42px;
}
.cid-tTQdxyRzzz .plan .mbr-section-btn .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
}
.cid-tTQdxyRzzz .plan .mbr-section-btn .btn::after {
  background-color: #656565;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-tTQdxyRzzz .plan .mbr-section-btn .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-tTQdxyRzzz .plan .mbr-section-btn .btn-primary:hover {
  background-color: #28303f !important;
  color: #ffc600 !important;
}
.cid-tTQdxyRzzz .plan:hover .mbr-iconfont {
  -webkit-animation-name: pulse-shrink;
  animation-name: pulse-shrink;
  -webkit-animation-duration: .35s;
  animation-duration: .35s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
@-webkit-keyframes pulse-shrink {
  to {
    transform: scale(0.9);
  }
}
@keyframes pulse-shrink {
  to {
    transform: scale(0.9);
  }
}
@media (max-width: 768px) {
  .cid-tTQdxyRzzz * {
    text-align: center;
  }
}
.cid-tTQdxyRzzz .plan .plan-list .list-group,
.cid-tTQdxyRzzz .mbr-section-btn {
  color: #374550;
  text-align: center;
}
.cid-tTQd15pOpo {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f2b620;
}
.cid-tTQd15pOpo .content-inner .left-content {
  display: block;
}
.cid-tTQd15pOpo .content-inner .left-content .mbr-section-title {
  color: #ffffff;
  margin-bottom: 11px;
}
.cid-tTQd15pOpo .content-inner .left-content .mbr-text {
  color: #ffffff;
}
.cid-tTQd15pOpo .content-inner .right-content {
  display: block;
}
.cid-tTQd15pOpo .content-inner .right-content .mbr-text {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 17px;
  letter-spacing: .02em;
}
.cid-tTQd15pOpo .content-inner .right-content .mbr-section-btn .btn {
  border-radius: 30px;
  padding: 18px 42px !important;
}
.cid-tTQd15pOpo .content-inner .right-content .mbr-section-btn .btn-white {
  color: #000000 !important;
}
.cid-tTQd15pOpo .content-inner .right-content .mbr-section-btn .btn-white:hover {
  background-color: #ffc600 !important;
  border-color: #ffc600 !important;
}
@media (max-width: 991px) {
  .cid-tTQd15pOpo .content-inner {
    justify-content: center !important;
  }
  .cid-tTQd15pOpo * {
    text-align: center;
  }
}
.cid-tTQd15pOpo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTQd15pOpo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTQd15RgkF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #374550;
}
.cid-tTQd15RgkF .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tTQd15RgkF .wrapper {
  max-width: 350px;
}
.cid-tTQd15RgkF .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tTQd15RgkF .row {
    text-align: center;
  }
  .cid-tTQd15RgkF .social-row {
    justify-content: center;
  }
}
.cid-tTQd15RgkF .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tTQd15RgkF .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tTQd15RgkF .list {
    margin-bottom: 0rem;
  }
}
.cid-tTQd15RgkF .mbr-text {
  color: #ffffff;
}
.cid-tTQd15RgkF .mbr-iconfont {
  color: black;
}
.cid-tTQd15RgkF img {
  max-width: 250px;
  height: auto;
  margin-bottom: 40px;
}
.cid-tTQd15RgkF .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tTQd15RgkF .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  padding: 0.6rem;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-tTQd15RgkF .social-list .soc-item {
  margin-right: 1rem;
  background-color: #ffc600;
}
.cid-tTQd15RgkF .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 767px) {
  .cid-tTQd15RgkF .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tTQd15RgkF .item-wrap {
  margin-bottom: 16px;
}
.cid-tTQd15RgkF .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tTQd15RgkF .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #ffffff;
}
.cid-tTQd15RgkF .text {
  margin-bottom: 36px;
  color: #ffffff;
}
.cid-tTQd15RgkF a {
  font-weight: 400 !important;
}
.cid-tTQd15RgkF a.text-danger:hover {
  color: #EABB80 !important;
}
@media (max-width: 768px) {
  .cid-tTQd15RgkF img {
    display: inline;
  }
  .cid-tTQd15RgkF .b:nth-child(3) {
    padding-top: 30px;
  }
  .cid-tTQd15RgkF .b:nth-child(4) {
    padding-top: 30px;
  }
}
.cid-tTQd15RgkF .text1 {
  color: #ffffff;
}
