body {
  font-family: Nunito;
}
.display-1 {
  font-family: 'Nunito', sans-serif;
  font-size: 3.125rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.375rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 2.2rem;
}
.display-7 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.25rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 2rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1875rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.1rem;
    font-size: calc( 1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 8px;
}
.btn-lg {
  padding: 20px 30px;
  border-radius: 8px;
}
.bg-primary {
  background-color: #848abd !important;
}
.bg-success {
  background-color: #9ccd7e !important;
}
.bg-info {
  background-color: #999999 !important;
}
.bg-warning {
  background-color: #b97ecd !important;
}
.bg-danger {
  background-color: #f5c463 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #848abd !important;
  border-color: #848abd !important;
  color: #ffffff !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #555d9f !important;
  border-color: #555d9f !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #3c71d3 !important;
  border-color: #3c71d3 !important;
  color: #ffffff !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #244f9f !important;
  border-color: #244f9f !important;
}
.btn-info,
.btn-info:active {
  background-color: #999999 !important;
  border-color: #999999 !important;
  color: #ffffff !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #737373 !important;
  border-color: #737373 !important;
}
.btn-success,
.btn-success:active {
  background-color: #9ccd7e !important;
  border-color: #9ccd7e !important;
  color: #ffffff !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #72b747 !important;
  border-color: #72b747 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #b97ecd !important;
  border-color: #b97ecd !important;
  color: #ffffff !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b47b7 !important;
  border-color: #9b47b7 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #f5c463 !important;
  border-color: #f5c463 !important;
  color: #ffffff !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #f0a91b !important;
  border-color: #f0a91b !important;
}
.btn-white {
  color: #404040 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !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 {
  background: none;
  border-color: #848abd;
  color: #848abd;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #848abd;
  border-color: #848abd;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #848abd !important;
  border-color: #848abd !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #3c71d3;
  color: #3c71d3;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #3c71d3;
  border-color: #3c71d3;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3c71d3 !important;
  border-color: #3c71d3 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #999999;
  color: #999999;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #999999;
  border-color: #999999;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #999999 !important;
  border-color: #999999 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #9ccd7e;
  color: #9ccd7e;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #9ccd7e;
  border-color: #9ccd7e;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #9ccd7e !important;
  border-color: #9ccd7e !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #b97ecd;
  color: #b97ecd;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #b97ecd;
  border-color: #b97ecd;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #b97ecd !important;
  border-color: #b97ecd !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #f5c463;
  color: #f5c463;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #f5c463;
  border-color: #f5c463;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #f5c463 !important;
  border-color: #f5c463 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  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: #848abd !important;
}
.text-secondary {
  color: #3c71d3 !important;
}
.text-success {
  color: #9ccd7e !important;
}
.text-info {
  color: #999999 !important;
}
.text-warning {
  color: #b97ecd !important;
}
.text-danger {
  color: #f5c463 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #c6c9e1 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #8faee6 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d4e9c8 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #e1c8e9 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #fbe8c3 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #999999;
}
.alert-warning {
  background-color: #b97ecd;
}
.alert-danger {
  background-color: #f5c463;
}
.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: 0 0 0 5px rgba(132, 138, 189, 0.5) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.5) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #848abd;
  border-color: #848abd;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #848abd;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d7d9ea;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d9d9d9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #848abd;
}
/* Forms */
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.5);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.5);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #848abd;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #848abd;
  border-bottom-color: #848abd;
}
.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: #848abd !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #3c71d3 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23848abd' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-t5hgBprG9C {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #1e2228;
}
.cid-t5hgBprG9C .mbr-text {
  color: #767676;
}
.cid-t5hgBprG9C .icon-1 {
  color: #ffe161;
  font-size: 3.5rem;
}
.cid-t5hgBprG9C .icon-arrow {
  color: #12566a;
  font-size: 1.8rem !important;
}
.cid-t5hgBprG9C .link {
  margin: 0;
  transition: 400ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
@media (min-width: 767px) {
  .cid-t5hgBprG9C .card {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .cid-t5hgBprG9C .row {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-t5hgBprG9C .link a:after {
    right: 0;
    margin: auto;
  }
}
.cid-t5hgBprG9C .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-t5hgBprG9C .card {
    margin-bottom: 2rem;
  }
}
.cid-t5hgBprG9C .text-link {
  font-weight: 800 !important;
}
.cid-t5hgBprG9C .card-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f3f3f3;
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
}
.cid-t5hgBprG9C .card-img {
  opacity: 0;
  left: -40px;
  top: 20%;
  position: absolute;
  transition: 400ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-t5hgBprG9C .card-icon {
  display: flex;
  transition: 400ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-t5hgBprG9C .card:hover .card-inner {
  background-color: #f5c463;
}
.cid-t5hgBprG9C .card:hover .icon-arrow {
  color: #fff;
}
.cid-t5hgBprG9C .card:hover .text-link {
  color: #fff !important;
}
.cid-t5hgBprG9C .card:hover .card-img {
  opacity: 1;
  left: -10px;
}
.cid-t5hgBprG9C .card:hover .link {
  transform: translateX(42px);
}
.cid-t5hgBprG9C .card:hover .card-icon {
  transform: translateX(10px);
}
.cid-t5hgBprG9C h5 {
  color: #101010;
  font-weight: 800;
}
.cid-sLADlgmtYY .nav-item:focus,
.cid-sLADlgmtYY .nav-link:focus {
  outline: none;
}
.cid-sLADlgmtYY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sLADlgmtYY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLADlgmtYY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLADlgmtYY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sLADlgmtYY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLADlgmtYY .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-sLADlgmtYY .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-sLADlgmtYY .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-sLADlgmtYY .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sLADlgmtYY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sLADlgmtYY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-sLADlgmtYY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sLADlgmtYY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sLADlgmtYY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sLADlgmtYY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sLADlgmtYY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sLADlgmtYY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sLADlgmtYY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sLADlgmtYY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sLADlgmtYY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sLADlgmtYY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sLADlgmtYY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sLADlgmtYY .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sLADlgmtYY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sLADlgmtYY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sLADlgmtYY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sLADlgmtYY .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sLADlgmtYY .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sLADlgmtYY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sLADlgmtYY .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sLADlgmtYY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sLADlgmtYY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sLADlgmtYY .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sLADlgmtYY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sLADlgmtYY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sLADlgmtYY .dropdown-item.active,
.cid-sLADlgmtYY .dropdown-item:active {
  background-color: transparent;
}
.cid-sLADlgmtYY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sLADlgmtYY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sLADlgmtYY .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sLADlgmtYY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sLADlgmtYY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sLADlgmtYY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLADlgmtYY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sLADlgmtYY .navbar-buttons {
  text-align: center;
}
.cid-sLADlgmtYY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLADlgmtYY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sLADlgmtYY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLADlgmtYY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLADlgmtYY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLADlgmtYY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLADlgmtYY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLADlgmtYY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLADlgmtYY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLADlgmtYY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLADlgmtYY .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sLADlgmtYY a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sLADlgmtYY .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sLADlgmtYY .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sLADlgmtYY .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-sLADlgmtYY .nav-link:hover,
.cid-sLADlgmtYY .dropdown-item:hover,
.cid-sLADlgmtYY .icons-menu .mbr-iconfont:hover {
  color: #000000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sLADlgmtYY .navbar {
    height: 77px;
  }
  .cid-sLADlgmtYY .navbar.opened {
    height: auto;
  }
}
.cid-sLACjePJ3E {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #1e2228;
}
.cid-sLACjePJ3E .item-wrapper {
  width: 100%;
}
.cid-sLACjePJ3E .left-side {
  text-align: left;
  padding: 0 100px 20px;
}
.cid-sLACjePJ3E .row.big {
  align-items: center;
}
.cid-sLACjePJ3E .mbr-section-title {
  margin: 26px 0 37px;
  color: #ffffff;
  font-weight: 700;
}
.cid-sLACjePJ3E .mbr-iconfont {
  font-size: 60px;
  color: #b2b2b2;
  margin-right: 5px;
}
.cid-sLACjePJ3E .desc1 {
  padding-bottom: 14px;
  margin-top: 14px;
  font-weight: 700;
}
.cid-sLACjePJ3E .desc2 {
  color: #b2b2b2;
  font-weight: 500;
}
.cid-sLACjePJ3E .desc1,
.cid-sLACjePJ3E .iconfont-wrapper {
  color: #ffffff;
}
.cid-sLACjePJ3E .right-side {
  padding: 0;
}
.cid-sLACjePJ3E .justify-content-center {
  padding: 0;
  margin: 0;
}
.cid-sLACjePJ3E .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-sLACjePJ3E .bottom {
  margin-bottom: 42px;
}
@media (max-width: 990px) {
  .cid-sLACjePJ3E .left-side {
    padding: 0 30px 20px;
  }
}
@media (max-width: 690px) {
  .cid-sLACjePJ3E .left-side {
    padding: 0 15px 20px;
  }
  .cid-sLACjePJ3E .align-left {
    flex-direction: column;
  }
  .cid-sLACjePJ3E .mbr-iconfont {
    margin-right: 0px;
  }
}
.cid-sLGUsySYX0 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sLGUsySYX0 .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sLGUsySYX0 .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-sLGUsySYX0 .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-sLGUsySYX0 P {
  color: #000000;
  margin-bottom: 0px;
  margin-top: 5px;
}
.cid-sLGUsySYX0 img {
  margin-top: 15px;
}
@media (max-width: 990px) {
  .cid-sLGUsySYX0 .top {
    margin-top: 0;
  }
}
@media (min-width: 990px) {
  .cid-sLGUsySYX0 .top,
  .cid-sLGUsySYX0 .top-2 {
    margin-top: 0;
  }
}
.cid-sLGMIytPls {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLGN5k0TTV {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sLGN5k0TTV .mbr-text,
.cid-sLGN5k0TTV blockquote {
  color: #232323;
}
.cid-sLGPi0jFkr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLGPi0jFkr H1 {
  color: #000000;
}
.cid-sLGPi0jFkr .mbr-text,
.cid-sLGPi0jFkr .mbr-section-btn {
  color: #000000;
}
.cid-sLGPi0jFkr .mbr-subtitle {
  color: #000000;
}
.cid-sLGPi0jFkr .mbr-text {
  margin-top: 1.5rem;
}
.cid-sLGPi0jFkr .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sLGUclm7NY {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f8f8f8;
  overflow: hidden;
}
.cid-sLGUclm7NY .media-container-row .mbr-text {
  color: #000000;
}
.cid-sLGX24S2ZF .nav-item:focus,
.cid-sLGX24S2ZF .nav-link:focus {
  outline: none;
}
.cid-sLGX24S2ZF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sLGX24S2ZF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLGX24S2ZF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLGX24S2ZF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sLGX24S2ZF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLGX24S2ZF .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-sLGX24S2ZF .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-sLGX24S2ZF .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-sLGX24S2ZF .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sLGX24S2ZF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sLGX24S2ZF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-sLGX24S2ZF .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sLGX24S2ZF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sLGX24S2ZF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sLGX24S2ZF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sLGX24S2ZF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sLGX24S2ZF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sLGX24S2ZF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sLGX24S2ZF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sLGX24S2ZF .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sLGX24S2ZF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sLGX24S2ZF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sLGX24S2ZF .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sLGX24S2ZF .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sLGX24S2ZF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sLGX24S2ZF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sLGX24S2ZF .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sLGX24S2ZF .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sLGX24S2ZF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sLGX24S2ZF .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sLGX24S2ZF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sLGX24S2ZF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sLGX24S2ZF .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sLGX24S2ZF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sLGX24S2ZF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sLGX24S2ZF .dropdown-item.active,
.cid-sLGX24S2ZF .dropdown-item:active {
  background-color: transparent;
}
.cid-sLGX24S2ZF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sLGX24S2ZF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sLGX24S2ZF .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sLGX24S2ZF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sLGX24S2ZF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sLGX24S2ZF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLGX24S2ZF ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sLGX24S2ZF .navbar-buttons {
  text-align: center;
}
.cid-sLGX24S2ZF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLGX24S2ZF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sLGX24S2ZF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLGX24S2ZF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLGX24S2ZF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLGX24S2ZF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLGX24S2ZF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLGX24S2ZF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLGX24S2ZF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLGX24S2ZF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLGX24S2ZF .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sLGX24S2ZF a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sLGX24S2ZF .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sLGX24S2ZF .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sLGX24S2ZF .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-sLGX24S2ZF .nav-link:hover,
.cid-sLGX24S2ZF .dropdown-item:hover,
.cid-sLGX24S2ZF .icons-menu .mbr-iconfont:hover {
  color: #000000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sLGX24S2ZF .navbar {
    height: 77px;
  }
  .cid-sLGX24S2ZF .navbar.opened {
    height: auto;
  }
}
.cid-sLGXPa4lmW {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sLGXPa4lmW .lin {
  text-align: center;
  color: #ff4433;
  padding-bottom: 18px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 0;
}
.cid-sLGXPa4lmW .mbr-iconfont {
  font-size: 100px;
  color: #ff4433;
}
.cid-sLGXPa4lmW .iconfont-wrapper {
  text-align: center;
  margin-bottom: 30px;
}
.cid-sLGXPa4lmW .mbr-section-subtitle {
  padding: 0px;
  text-align: center;
  color: #000000;
  font-weight: 600;
  margin: 0;
}
.cid-sLHgUeFZmo {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sLHgUeFZmo .mbr-section-title {
  color: #4f5b5f;
}
.cid-sLGXhetv35 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sLGXhetv35 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sLGXhetv35 .row {
  flex-direction: row-reverse;
}
.cid-sLGXhetv35 img {
  width: 100%;
}
.cid-sLGXhetv35 .mbr-section-title {
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sLGX2eDimr {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f8f8f8;
  overflow: hidden;
}
.cid-sLGX2eDimr .media-container-row .mbr-text {
  color: #000000;
}
.cid-sNiHcsSLe9 .nav-item:focus,
.cid-sNiHcsSLe9 .nav-link:focus {
  outline: none;
}
.cid-sNiHcsSLe9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sNiHcsSLe9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sNiHcsSLe9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sNiHcsSLe9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sNiHcsSLe9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sNiHcsSLe9 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-sNiHcsSLe9 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-sNiHcsSLe9 .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-sNiHcsSLe9 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sNiHcsSLe9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sNiHcsSLe9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-sNiHcsSLe9 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sNiHcsSLe9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sNiHcsSLe9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sNiHcsSLe9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sNiHcsSLe9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sNiHcsSLe9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sNiHcsSLe9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sNiHcsSLe9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sNiHcsSLe9 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sNiHcsSLe9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sNiHcsSLe9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sNiHcsSLe9 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sNiHcsSLe9 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sNiHcsSLe9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sNiHcsSLe9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sNiHcsSLe9 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sNiHcsSLe9 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sNiHcsSLe9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sNiHcsSLe9 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sNiHcsSLe9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sNiHcsSLe9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sNiHcsSLe9 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sNiHcsSLe9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sNiHcsSLe9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sNiHcsSLe9 .dropdown-item.active,
.cid-sNiHcsSLe9 .dropdown-item:active {
  background-color: transparent;
}
.cid-sNiHcsSLe9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sNiHcsSLe9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sNiHcsSLe9 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sNiHcsSLe9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sNiHcsSLe9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sNiHcsSLe9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sNiHcsSLe9 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sNiHcsSLe9 .navbar-buttons {
  text-align: center;
}
.cid-sNiHcsSLe9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sNiHcsSLe9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sNiHcsSLe9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sNiHcsSLe9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sNiHcsSLe9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sNiHcsSLe9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sNiHcsSLe9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sNiHcsSLe9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sNiHcsSLe9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sNiHcsSLe9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sNiHcsSLe9 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sNiHcsSLe9 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sNiHcsSLe9 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sNiHcsSLe9 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sNiHcsSLe9 .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-sNiHcsSLe9 .nav-link:hover,
.cid-sNiHcsSLe9 .dropdown-item:hover,
.cid-sNiHcsSLe9 .icons-menu .mbr-iconfont:hover {
  color: #000000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sNiHcsSLe9 .navbar {
    height: 77px;
  }
  .cid-sNiHcsSLe9 .navbar.opened {
    height: auto;
  }
}
.cid-sNiOBm1T0q {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sNiOBm1T0q .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-sNiOBm1T0q .container {
    max-width: 1400px;
  }
}
.cid-sNiOBm1T0q .card {
  margin: auto;
}
.cid-sNiOBm1T0q .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #000000;
  margin-bottom: 2rem;
}
.cid-sNiOBm1T0q .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sNiOBm1T0q .row {
  justify-content: center;
}
.cid-t5hi0EUiaY {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t5hi0EUiaY .mbr-text {
  color: #767676;
}
.cid-t5hi0EUiaY .icon-1 {
  color: #ffe161;
  font-size: 3.5rem;
}
.cid-t5hi0EUiaY .icon-arrow {
  color: #7e7e7e;
  font-size: 1.8rem !important;
}
.cid-t5hi0EUiaY .link {
  margin: 0;
  transition: 400ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
@media (min-width: 767px) {
  .cid-t5hi0EUiaY .card {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .cid-t5hi0EUiaY .row {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-t5hi0EUiaY .link a:after {
    right: 0;
    margin: auto;
  }
}
.cid-t5hi0EUiaY .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-t5hi0EUiaY .card {
    margin-bottom: 2rem;
  }
}
.cid-t5hi0EUiaY .text-link {
  font-weight: 800 !important;
}
.cid-t5hi0EUiaY .card-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f3f3f3;
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
}
.cid-t5hi0EUiaY .card-img {
  opacity: 0;
  left: -40px;
  top: 20%;
  position: absolute;
  transition: 400ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-t5hi0EUiaY .card-icon {
  display: flex;
  transition: 400ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-t5hi0EUiaY .card:hover .card-inner {
  background-color: #f5c463;
}
.cid-t5hi0EUiaY .card:hover .icon-arrow {
  color: #fff;
}
.cid-t5hi0EUiaY .card:hover .text-link {
  color: #fff !important;
}
.cid-t5hi0EUiaY .card:hover .card-img {
  opacity: 1;
  left: -10px;
}
.cid-t5hi0EUiaY .card:hover .link {
  transform: translateX(42px);
}
.cid-t5hi0EUiaY .card:hover .card-icon {
  transform: translateX(10px);
}
.cid-t5hi0EUiaY h5 {
  color: #101010;
  font-weight: 800;
}
.cid-sNiHcvQced {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNiHcwpkIQ {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sNiHcwpkIQ .mbr-text,
.cid-sNiHcwpkIQ blockquote {
  color: #232323;
}
.cid-sNiHcxqJvD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNiHcxqJvD H1 {
  color: #000000;
}
.cid-sNiHcxqJvD .mbr-text,
.cid-sNiHcxqJvD .mbr-section-btn {
  color: #000000;
}
.cid-sNiHcxqJvD .mbr-subtitle {
  color: #000000;
}
.cid-sNiHcxqJvD .mbr-text {
  margin-top: 1.5rem;
}
.cid-sNiHcxqJvD .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sNiHcycEMk {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f8f8f8;
  overflow: hidden;
}
.cid-sNiHcycEMk .media-container-row .mbr-text {
  color: #000000;
}
