body {
  font-family: Nunito;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3.125rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.375rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 2.2rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- 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: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 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: #e9a540 !important;
}
.bg-success {
  background-color: #6fbae4 !important;
}
.bg-info {
  background-color: #878787 !important;
}
.bg-warning {
  background-color: #3d31a0 !important;
}
.bg-danger {
  background-color: #f1c881 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e9a540 !important;
  border-color: #e9a540 !important;
  color: #ffffff !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #c67f17 !important;
  border-color: #c67f17 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #479ede !important;
  border-color: #479ede !important;
  color: #ffffff !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #2178b8 !important;
  border-color: #2178b8 !important;
}
.btn-info,
.btn-info:active {
  background-color: #878787 !important;
  border-color: #878787 !important;
  color: #ffffff !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #616161 !important;
  border-color: #616161 !important;
}
.btn-success,
.btn-success:active {
  background-color: #6fbae4 !important;
  border-color: #6fbae4 !important;
  color: #ffffff !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2f9bd8 !important;
  border-color: #2f9bd8 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #3d31a0 !important;
  border-color: #3d31a0 !important;
  color: #ffffff !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #271f65 !important;
  border-color: #271f65 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #f1c881 !important;
  border-color: #f1c881 !important;
  color: #67460c !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #67460c !important;
  background-color: #e9aa3c !important;
  border-color: #e9aa3c !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: #e9a540;
  color: #e9a540;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #e9a540;
  border-color: #e9a540;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #e9a540 !important;
  border-color: #e9a540 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #479ede;
  color: #479ede;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #479ede;
  border-color: #479ede;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #479ede !important;
  border-color: #479ede !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #878787;
  color: #878787;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #878787;
  border-color: #878787;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #878787 !important;
  border-color: #878787 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #6fbae4;
  color: #6fbae4;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #6fbae4;
  border-color: #6fbae4;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #6fbae4 !important;
  border-color: #6fbae4 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #3d31a0;
  color: #3d31a0;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #3d31a0;
  border-color: #3d31a0;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #3d31a0 !important;
  border-color: #3d31a0 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #f1c881;
  color: #f1c881;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #67460c;
  background-color: #f1c881;
  border-color: #f1c881;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #67460c !important;
  background-color: #f1c881 !important;
  border-color: #f1c881 !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: #e9a540 !important;
}
.text-secondary {
  color: #479ede !important;
}
.text-success {
  color: #6fbae4 !important;
}
.text-info {
  color: #878787 !important;
}
.text-warning {
  color: #3d31a0 !important;
}
.text-danger {
  color: #f1c881 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #f4d09b !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #9dccee !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #c5e3f4 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #bababa !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #7267d0 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #fbf0dd !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: #878787;
}
.alert-warning {
  background-color: #3d31a0;
}
.alert-danger {
  background-color: #f1c881;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e9a540;
  border-color: #e9a540;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e9a540;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fefbf7;
}
.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: #c7c7c7;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #847ad6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #e9a540;
}
/* Forms */
.mbr-form .btn {
  margin: 0.4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e9a540;
  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: #e9a540;
  border-bottom-color: #e9a540;
}
.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: #000000 !important;
  background-color: #e9a540 !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: #479ede !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='%23e9a540' %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-rVs1JRXiBo .dropdown-menu {
  padding: 12px 0;
}
.cid-rVs1JRXiBo .dropdown-item:hover,
.cid-rVs1JRXiBo .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-rVs1JRXiBo .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-rVs1JRXiBo .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-rVs1JRXiBo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-rVs1JRXiBo .nav-link {
  position: relative;
}
.cid-rVs1JRXiBo .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-rVs1JRXiBo .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-rVs1JRXiBo .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-rVs1JRXiBo .dropdown-menu,
.cid-rVs1JRXiBo .navbar.opened {
  background: #1e2228 !important;
}
.cid-rVs1JRXiBo .nav-item:focus,
.cid-rVs1JRXiBo .nav-link:focus {
  outline: none;
}
.cid-rVs1JRXiBo .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-rVs1JRXiBo .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-rVs1JRXiBo .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-rVs1JRXiBo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rVs1JRXiBo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rVs1JRXiBo .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-rVs1JRXiBo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rVs1JRXiBo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rVs1JRXiBo .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: none;
}
.cid-rVs1JRXiBo .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-rVs1JRXiBo .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-rVs1JRXiBo .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-rVs1JRXiBo .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-rVs1JRXiBo .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-rVs1JRXiBo .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-rVs1JRXiBo .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-rVs1JRXiBo .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-rVs1JRXiBo .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-rVs1JRXiBo .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-rVs1JRXiBo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rVs1JRXiBo .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-rVs1JRXiBo .navbar.collapsed.opened {
  position: fixed;
}
.cid-rVs1JRXiBo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-rVs1JRXiBo .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-rVs1JRXiBo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-rVs1JRXiBo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rVs1JRXiBo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rVs1JRXiBo .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: 55%;
}
.cid-rVs1JRXiBo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rVs1JRXiBo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-rVs1JRXiBo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-rVs1JRXiBo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rVs1JRXiBo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rVs1JRXiBo .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-rVs1JRXiBo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rVs1JRXiBo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rVs1JRXiBo .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: 41%;
  }
  .cid-rVs1JRXiBo .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-rVs1JRXiBo .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rVs1JRXiBo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rVs1JRXiBo .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-rVs1JRXiBo .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-rVs1JRXiBo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-rVs1JRXiBo .navbar.navbar-short {
  background: #E9A540 !important;
  min-height: 60px;
}
.cid-rVs1JRXiBo .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rVs1JRXiBo .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rVs1JRXiBo .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-rVs1JRXiBo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rVs1JRXiBo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rVs1JRXiBo .dropdown-item.active,
.cid-rVs1JRXiBo .dropdown-item:active {
  background-color: transparent;
}
.cid-rVs1JRXiBo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rVs1JRXiBo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rVs1JRXiBo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rVs1JRXiBo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none;
}
.cid-rVs1JRXiBo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rVs1JRXiBo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rVs1JRXiBo ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rVs1JRXiBo .navbar-buttons {
  text-align: center;
}
.cid-rVs1JRXiBo 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-rVs1JRXiBo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rVs1JRXiBo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-rVs1JRXiBo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-rVs1JRXiBo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-rVs1JRXiBo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-rVs1JRXiBo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-rVs1JRXiBo nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-rVs1JRXiBo nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-rVs1JRXiBo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-rVs1JRXiBo .navbar-dropdown {
  position: fixed;
}
.cid-rVs1JRXiBo a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rVs1JRXiBo .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-rVs1JRXiBo .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-rVs1JRXiBo .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rVs1JRXiBo .navbar {
    height: 77px;
  }
  .cid-rVs1JRXiBo .navbar.opened {
    height: auto;
  }
  .cid-rVs1JRXiBo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-thSwXQxNd2 {
  padding-top: 105px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/trnava-university-9xrhrmojeg-unsplash.jpg");
  overflow: hidden;
}
.cid-thSwXQxNd2 svg {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-thSwXQxNd2 #e2_shape {
  fill: #ffffff !important;
}
.cid-thSwXQxNd2 .mbr-text.display-5 {
  font-size: 26px;
}
.cid-thSwXQxNd2 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-thSwXQxNd2 img {
  margin-left: auto;
  margin-right: auto;
}
.cid-timmKmZTUm {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-timmKmZTUm .row {
  flex-direction: row-reverse;
}
.cid-timmKmZTUm .mbr-media span {
  font-size: 2rem;
  transition: all 0.2s;
  color: #e9a540;
  background: #ffffff;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 6px;
}
.cid-timmKmZTUm .mbr-media {
  position: relative;
}
.cid-timmKmZTUm .mbr-media img {
  min-height: 400px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-timmKmZTUm .mbr-media {
    margin-bottom: 2rem;
  }
}
.cid-timmKmZTUm .cards {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .cid-timmKmZTUm .cards {
    flex-direction: column;
    align-items: center;
  }
}
.cid-timmKmZTUm .card-title {
  padding: 0;
  margin: 0;
}
.cid-timmKmZTUm .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-timmKmZTUm .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-timmKmZTUm .card-wrapper {
    width: fit-content;
  }
}
.cid-timmKmZTUm .card-icon {
  font-size: 1.5rem;
  color: currentColor;
  padding-right: 0.8rem;
}
@media (max-width: 991px) {
  .cid-timmKmZTUm .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-timmKmZTUm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-timmKmZTUm .card-title,
.cid-timmKmZTUm .card-icon {
  color: #f19d38;
}
.cid-timmKmZTUm .mbr-section-title {
  color: #000000;
}
.cid-timmKmZTUm .mbr-text,
.cid-timmKmZTUm .mbr-section-btn {
  color: #000000;
}
.cid-timmKmZTUm .price-title {
  text-align: center;
  color: #103178;
}
.cid-timmKmZTUm .price {
  text-align: center;
  color: #103178;
}
.cid-timmKmZTUm .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-timmKmZTUm .mbr-media a:hover {
  background-image: none!important;
}
.cid-timmKmZTUm .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-timmKmZTUm .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-timmKmZTUm .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-timmKmZTUm .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-timmKmZTUm .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-rVs1MBHQrj {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #f9fafb;
}
.cid-rVs1MBHQrj .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #479ede;
  background-color: rgba(255, 255, 255, 0.15);
  margin-bottom: 26px;
}
.cid-rVs1MBHQrj .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-rVs1MBHQrj .mbr-section-subtitle {
  color: #000000;
}
.cid-rVs1MBHQrj img {
  width: 120px;
  margin: auto;
}
.cid-rVs1MBHQrj .card {
  transition: all 200ms ease-in-out;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.cid-rVs1MBHQrj .card:hover {
  opacity: 1;
}
@media (min-width: 992px) {
  .cid-rVs1MBHQrj .card {
    max-width: 14.28%;
  }
}
.cid-rVs1MBHQrj .badge,
.cid-rVs1MBHQrj .badge_wrap {
  color: #606060;
}
.cid-timAUtb8Gm {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #f9fafb;
}
.cid-timAUtb8Gm .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-timAUtb8Gm .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #e9a540;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-timAUtb8Gm .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-timAUtb8Gm .mbr-section-title {
  margin: 0;
  font-weight: 500;
  margin-bottom: 46px;
  color: #404040;
}
.cid-timAUtb8Gm .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-timAUtb8Gm .icon-main {
  margin: 1rem 0;
  display: flex;
  -webkit-box-align: left;
  align-items: left;
  text-align: left;
  padding: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.cid-timAUtb8Gm .icon-main .process-icon {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-timAUtb8Gm .icon-main .process-icon .wrapper {
  position: relative;
  margin-bottom: 20px;
  margin-right: 9px;
}
.cid-timAUtb8Gm .icon-main .process-icon .wrapper .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-timAUtb8Gm .icon-main .process-icon .wrapper .icon-container a {
  display: inherit;
}
.cid-timAUtb8Gm .icon-main .process-icon .wrapper .icon-container a .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 24px;
  height: 100%;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
  color: #ffffff;
  font-weight: normal;
}
.cid-timAUtb8Gm .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon1 {
  background-color: rgba(245, 163, 24, 0.3);
  color: #f5a318;
}
.cid-timAUtb8Gm .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon2 {
  background-color: rgba(0, 177, 230, 0.3);
  color: #00b1e6;
}
.cid-timAUtb8Gm .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon3 {
  background-color: rgba(18, 35, 114, 0.3);
  color: #122372;
}
.cid-timAUtb8Gm .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon4 {
  background-color: rgba(132, 138, 189, 0.3);
  color: #848abd;
}
.cid-timAUtb8Gm .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon5 {
  background-color: rgba(251, 157, 126, 0.3);
  color: #fb9d7e;
}
.cid-timAUtb8Gm .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon6 {
  background-color: rgba(185, 126, 205, 0.3);
  color: #b97ecd;
}
.cid-timAUtb8Gm .icon-main .process-icon .wrapper .icon-container .step {
  margin: 0;
  position: absolute;
  bottom: -3px;
  left: 11px;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  font-size: 11px;
  line-height: normal;
  font-weight: 500;
  z-index: 2;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  text-align: center;
  color: #ffffff;
}
.cid-timAUtb8Gm .icon-main .process-icon .wrapper .icon-container .step_1 {
  background: #f5a318;
}
.cid-timAUtb8Gm .icon-main .process-icon .wrapper .icon-container .step_2 {
  background: #00b1e6;
}
.cid-timAUtb8Gm .icon-main .process-icon .wrapper .icon-container .step_3 {
  background: #122372;
}
.cid-timAUtb8Gm .icon-main .process-icon .wrapper .icon-container .step_4 {
  background: #848abd;
}
.cid-timAUtb8Gm .icon-main .process-icon .wrapper .icon-container .step_5 {
  background: #fb9d7e;
}
.cid-timAUtb8Gm .icon-main .process-icon .wrapper .icon-container .step_6 {
  background: #b97ecd;
}
.cid-timAUtb8Gm .icon-main .process-icon .text-wrap .subicon-title {
  color: #404040;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.cid-timAUtb8Gm .icon-main .process-icon .text-wrap .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
  color: #606060;
  font-weight: 500;
}
@media (max-width: 767px) {
  .cid-timAUtb8Gm .wrapper::before {
    display: none;
  }
}
.cid-thSzVc6Reu {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-thSzVc6Reu .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-thSzVc6Reu .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-thSzVc6Reu .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-thSzVc6Reu p {
  line-height: 1.6;
}
.cid-thSzVc6Reu .rev,
.cid-thSzVc6Reu .mbr-iconfont {
  display: inline-block;
}
.cid-thSzVc6Reu .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #f5a318;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-thSzVc6Reu .card-title {
  color: #333333;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-thSzVc6Reu .card-box {
  padding: 1.5rem;
}
.cid-thSzVc6Reu .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-thSzVc6Reu .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-thSzVc6Reu .mbr-section-title,
.cid-thSzVc6Reu .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-thSzVc6Reu .rev {
  color: #0a1c44;
}
.cid-thSzVc6Reu .card-text,
.cid-thSzVc6Reu .mbr-section-btn,
.cid-thSzVc6Reu .ico-line {
  color: #767676;
}
.cid-thSzWyOmqi {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #f9fafb;
}
.cid-thSzWyOmqi .row {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-thSzWyOmqi .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-thSzWyOmqi .mbr-section-subtitle.display-4 {
  line-height: 1.375;
}
.cid-thSzWyOmqi .mbr-section-title {
  color: #404040;
}
.cid-thSzWyOmqi .mbr-section-title.display-2 {
  font-size: 30px;
  line-height: 1.2;
}
.cid-thSzWyOmqi .mbr-text {
  color: #606060;
}
.cid-thSzWyOmqi .mbr-text.display-4 {
  font-size: 15px;
  line-height: 1.8;
}
.cid-thSzWyOmqi .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #e9a540;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-thSzWyOmqi .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-thSzWyOmqi .card-wrapper {
  background-position: center;
  border-radius: 4px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center;
}
.cid-thSzWyOmqi .card-wrapper .card-count {
  height: 100%;
  margin-right: 25px;
}
.cid-thSzWyOmqi .card-wrapper .card-count .icon-count {
  background-color: rgba(245, 196, 99, 0.25);
  font-weight: 600;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #f5c463;
}
.cid-thSzWyOmqi .card-wrapper .card-box {
  height: 100%;
}
.cid-thSzWyOmqi .card-wrapper .card-box .card-title {
  color: #404040;
  margin-bottom: 12px;
  font-weight: 600;
}
.cid-thSzWyOmqi .card-wrapper .card-box .card-title.display-7 {
  line-height: 1.3;
}
.cid-thSzWyOmqi .card-wrapper .card-box .mbr-text {
  color: #606060;
}
.cid-thSzWyOmqi .card-wrapper .card-box .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-thSzWyOmqi .card-wrapper .card-box .link-wrap {
  width: 100%;
}
.cid-thSzWyOmqi .card-wrapper .card-box .link-wrap .link {
  display: inline-block;
}
.cid-thSzWyOmqi .card-wrapper .card-box .link-wrap .link a {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 0.6rem;
  font-weight: 600;
}
.cid-thSzWyOmqi .card-wrapper .card-box .link-wrap .link a:before {
  position: absolute;
  transition: all 0.3s;
  right: 0px;
  top: 55%;
  opacity: 0;
  transform: translateY(-50%);
  content: "\e909";
  font-family: 'Moririse2' !important;
  color: currentColor;
  font-size: 0.6rem;
}
.cid-thSzWyOmqi .card-wrapper .card-box .link-wrap .link a:hover:before {
  opacity: 1;
  transform: translateX(8px) translateY(-50%);
}
.cid-thSzWyOmqi .mbr-section-btn {
  text-align: center;
}
.cid-thSzWyOmqi .mbr-section-btn .btn {
  padding: 18px 26px;
  font-weight: 600;
}
.cid-thSzWyOmqi .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.5px;
}
.cid-thSzWyOmqi .mbr-section-btn .btn-secondary:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
@media (max-width: 767px) {
  .cid-thSzWyOmqi .card-title {
    text-align: left;
  }
  .cid-thSzWyOmqi .mbr-text {
    text-align: left;
  }
}
.cid-thSzWyOmqi SPAN {
  color: #122372;
}
.cid-timq8G4KhT {
  padding-top: 75px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/credits-photos-isae-supaero-img-0696-1-2000x1333.jpg");
}
.cid-timq8G4KhT .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-timq8G4KhT .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-timdHY5Sxs {
  padding-top: 45px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-timdHY5Sxs .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #479ede;
  background-color: rgba(60, 113, 211, 0.15);
  margin-bottom: 26px;
}
.cid-timdHY5Sxs .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-timdHY5Sxs .mbr-section-subtitle {
  color: #000000;
}
.cid-timdHY5Sxs img {
  width: 120px;
  margin: auto;
}
.cid-timdHY5Sxs .card {
  transition: all 200ms ease-in-out;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.cid-timdHY5Sxs .card:hover {
  opacity: 1;
}
@media (min-width: 992px) {
  .cid-timdHY5Sxs .card {
    max-width: 14.28%;
  }
}
.cid-twqkkIh4zp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-twqkkIh4zp .container {
    max-width: 1400px;
  }
}
.cid-twqkkIh4zp .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #e9a540;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-twqkkIh4zp .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-twqkkIh4zp .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-twqkkIh4zp .main-title {
  margin-bottom: 16px;
}
.cid-twqkkIh4zp .card {
  transition: all 0.3s;
}
.cid-twqkkIh4zp .card .card-wrapper {
  background-position: center;
  border-radius: 4px;
  padding: 10px;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-twqkkIh4zp .card .card-wrapper .img-wrapper {
  width: auto;
  height: 85px;
  margin-bottom: 30px;
}
.cid-twqkkIh4zp .card .card-wrapper .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.cid-twqkkIh4zp .card .card-wrapper .card-box {
  padding-top: 30px;
}
.cid-twqkkIh4zp .card .card-wrapper .card-box .card-title {
  font-weight: 600;
  margin-bottom: 16px;
}
.cid-twqkkIh4zp .card .card-wrapper .card-box .mbr-text {
  font-weight: 400;
}
.cid-twqkkIh4zp .card .card-wrapper .card-box .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 767px) {
  .cid-twqkkIh4zp .card-box {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-twqkkIh4zp .btn[class*="-outline"] {
  border: none;
  padding: 0;
  margin: 0 0.25rem !important;
  box-shadow: none !important;
}
.cid-twqkkIh4zp .btn[class*="-outline"] span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  padding-left: 0.4rem;
  transition: padding 0.3s !important;
}
.cid-twqkkIh4zp .btn[class*="-outline"]:hover span {
  padding-left: 15px;
}
.cid-twqkkIh4zp .btn[class*="-outline"]:hover {
  background-color: transparent !important;
  color: #000000 !important;
  box-shadow: none !important;
}
.cid-twqkkIh4zp .btn[class*="-outline"]:active,
.cid-twqkkIh4zp .btn[class*="-outline"]:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-thXCHY7mWj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/universeh.png");
}
.cid-thXCHY7mWj .mbr-section-title.display-2 {
  font-size: 40px;
  line-height: 1.25;
}
.cid-thXCHY7mWj .mbr-section-subtitle.display-5 {
  font-size: 26px;
  line-height: 1.385;
}
.cid-thXCHY7mWj .mbr-section-btn .btn {
  margin-left: 0 !important;
}
.cid-thXCHY7mWj .mbr-section-btn .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}
.cid-timhx6MkAh {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #ffffff;
}
.cid-timhx6MkAh .accordion .card {
  overflow: hidden;
}
.cid-timhx6MkAh .card {
  border-bottom: 1px solid #efefef !important;
  margin-bottom: 0.5rem;
  transition: all 0.3s;
  padding: 0.6rem 0.2rem;
}
.cid-timhx6MkAh .card .card-header {
  padding: 0;
  background: transparent;
  margin-bottom: 0px;
  border: none;
}
.cid-timhx6MkAh .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0px;
  line-height: normal;
}
.cid-timhx6MkAh .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-timhx6MkAh .card .card-header a.panel-title h4 {
  padding: 0.6rem 1.2rem;
  margin-bottom: -1px;
  font-weight: 600;
  transition: all 0.3s;
}
.cid-timhx6MkAh .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-timhx6MkAh .card .card-header a.panel-title h4:hover {
  color: #f19d38;
}
.cid-timhx6MkAh .card .panel-body {
  color: #767676;
}
.cid-timhx6MkAh .sign {
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  margin-right: 1rem;
  padding: 11px;
  height: 39px;
  width: 39px;
  border-radius: 100%;
}
.cid-timhx6MkAh .mbri-arrow-up {
  background: #f19d38;
  color: white !important;
}
.cid-timhx6MkAh .panel-title {
  display: flex !important;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.cid-timhx6MkAh .mbri-arrow-down:before {
  content: '\e960';
}
.cid-timhx6MkAh .panel-text {
  padding: 0rem;
  color: #383838;
}
.cid-timhx6MkAh .panel-collapse {
  margin-top: -1px;
}
.cid-timhx6MkAh H4 {
  color: #181818;
}
@media (max-width: 767px) {
  .cid-timhx6MkAh .panel-text {
    padding: 0 0.5rem;
  }
  .cid-timhx6MkAh .icon-left {
    margin-left: 0.5rem;
  }
  .cid-timhx6MkAh .sign {
    margin-right: 0.5rem;
  }
  .cid-timhx6MkAh .card .card-header a.panel-title h4 {
    padding: 0.4rem 0.4rem;
  }
}
.cid-timhx6MkAh H3 {
  color: #999999;
}
.cid-timhx6MkAh .mbr-fallback-image.disabled {
  display: none;
}
.cid-timhx6MkAh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#custom-html-1f {
  /* Type valid CSS here */
}
#custom-html-1f div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1f p {
  font-size: 60px;
  color: #777;
}
.cid-timuY0Ugh1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-timuY0Ugh1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-timuY0Ugh1 .row {
  flex-direction: row-reverse;
}
.cid-timuY0Ugh1 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-timuY0Ugh1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-thY1P5NYWM {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #479ede;
}
.cid-thY1P5NYWM svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-thY1P5NYWM svg .st0 {
  fill: #479ede;
}
@media (max-width: 992px) {
  .cid-thY1P5NYWM svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-thY1P5NYWM .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-thY1P5NYWM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-thY1P5NYWM .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-thY1P5NYWM .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-thY1P5NYWM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-thY1P5NYWM .copyright {
  color: #ffffff;
}
.cid-rVs1JRXiBo .dropdown-menu {
  padding: 12px 0;
}
.cid-rVs1JRXiBo .dropdown-item:hover,
.cid-rVs1JRXiBo .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-rVs1JRXiBo .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-rVs1JRXiBo .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-rVs1JRXiBo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-rVs1JRXiBo .nav-link {
  position: relative;
}
.cid-rVs1JRXiBo .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-rVs1JRXiBo .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-rVs1JRXiBo .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-rVs1JRXiBo .dropdown-menu,
.cid-rVs1JRXiBo .navbar.opened {
  background: #1e2228 !important;
}
.cid-rVs1JRXiBo .nav-item:focus,
.cid-rVs1JRXiBo .nav-link:focus {
  outline: none;
}
.cid-rVs1JRXiBo .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-rVs1JRXiBo .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-rVs1JRXiBo .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-rVs1JRXiBo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rVs1JRXiBo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rVs1JRXiBo .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-rVs1JRXiBo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rVs1JRXiBo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rVs1JRXiBo .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #3d89e3;
}
.cid-rVs1JRXiBo .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-rVs1JRXiBo .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-rVs1JRXiBo .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-rVs1JRXiBo .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-rVs1JRXiBo .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-rVs1JRXiBo .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-rVs1JRXiBo .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-rVs1JRXiBo .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-rVs1JRXiBo .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-rVs1JRXiBo .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-rVs1JRXiBo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rVs1JRXiBo .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-rVs1JRXiBo .navbar.collapsed.opened {
  position: fixed;
}
.cid-rVs1JRXiBo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-rVs1JRXiBo .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-rVs1JRXiBo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-rVs1JRXiBo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rVs1JRXiBo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rVs1JRXiBo .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: 55%;
}
.cid-rVs1JRXiBo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rVs1JRXiBo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-rVs1JRXiBo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-rVs1JRXiBo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rVs1JRXiBo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rVs1JRXiBo .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-rVs1JRXiBo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rVs1JRXiBo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rVs1JRXiBo .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: 41%;
  }
  .cid-rVs1JRXiBo .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-rVs1JRXiBo .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rVs1JRXiBo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rVs1JRXiBo .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-rVs1JRXiBo .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-rVs1JRXiBo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-rVs1JRXiBo .navbar.navbar-short {
  min-height: 60px;
}
.cid-rVs1JRXiBo .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rVs1JRXiBo .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rVs1JRXiBo .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-rVs1JRXiBo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rVs1JRXiBo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rVs1JRXiBo .dropdown-item.active,
.cid-rVs1JRXiBo .dropdown-item:active {
  background-color: transparent;
}
.cid-rVs1JRXiBo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rVs1JRXiBo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rVs1JRXiBo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rVs1JRXiBo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #3d89e3;
}
.cid-rVs1JRXiBo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rVs1JRXiBo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rVs1JRXiBo ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rVs1JRXiBo .navbar-buttons {
  text-align: center;
}
.cid-rVs1JRXiBo 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-rVs1JRXiBo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rVs1JRXiBo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-rVs1JRXiBo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-rVs1JRXiBo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-rVs1JRXiBo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-rVs1JRXiBo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-rVs1JRXiBo nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-rVs1JRXiBo nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-rVs1JRXiBo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-rVs1JRXiBo .navbar-dropdown {
  position: fixed;
}
.cid-rVs1JRXiBo a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rVs1JRXiBo .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-rVs1JRXiBo .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-rVs1JRXiBo .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rVs1JRXiBo .navbar {
    height: 77px;
  }
  .cid-rVs1JRXiBo .navbar.opened {
    height: auto;
  }
  .cid-rVs1JRXiBo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-thXQjCpWg5 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/universeh.png");
  overflow: hidden;
}
.cid-thXQjCpWg5 svg {
  fill: #ffffff !important;
  pointer-events: none;
}
.cid-thXQjCpWg5 #e2_shape {
  fill: #ffffff !important;
}
.cid-thXQjCpWg5 .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-thXQjCpWg5 .mbr-text {
  font-weight: 300;
}
.cid-thXQjCpWg5 .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-thXQjCpWg5 .btn-white {
  color: #404040 !important;
}
.cid-thXQjCpWg5 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-thXQjCpWg5 .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-thXQjCpWg5 .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-thXQjCpWg5 {
    padding: 30px;
  }
  .cid-thXQjCpWg5 svg {
    display: none;
  }
}
.cid-thXZbns4Kn {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-thXZbns4Kn .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-thXZbns4Kn .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #e9a540;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-thXZbns4Kn .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-thXZbns4Kn .mbr-section-title {
  margin: 0;
  font-weight: 500;
  margin-bottom: 46px;
}
.cid-thXZbns4Kn .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-thXZbns4Kn .icon-main {
  margin: 1rem 0;
  display: flex;
  -webkit-box-align: left;
  align-items: left;
  text-align: left;
  padding: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.cid-thXZbns4Kn .icon-main .process-icon {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-thXZbns4Kn .icon-main .process-icon .wrapper {
  position: relative;
  margin-bottom: 20px;
  margin-right: 25px;
}
.cid-thXZbns4Kn .icon-main .process-icon .wrapper .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-thXZbns4Kn .icon-main .process-icon .wrapper .icon-container a {
  display: inherit;
}
.cid-thXZbns4Kn .icon-main .process-icon .wrapper .icon-container a .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 24px;
  height: 100%;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
  color: #ffffff;
  font-weight: normal;
}
.cid-thXZbns4Kn .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon1 {
  background-color: rgba(16, 47, 98, 0.3);
  color: #102f62;
}
.cid-thXZbns4Kn .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon2 {
  background-color: rgba(241, 157, 56, 0.3);
  color: #f19d38;
}
.cid-thXZbns4Kn .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon3 {
  background-color: rgba(16, 47, 98, 0.3);
  color: #102f62;
}
.cid-thXZbns4Kn .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon4 {
  background-color: rgba(241, 157, 56, 0.3);
  color: #f19d38;
}
.cid-thXZbns4Kn .icon-main .process-icon .wrapper .icon-container .step {
  position: absolute;
  bottom: -3px;
  left: 11px;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  font-size: 11px;
  line-height: normal;
  font-weight: 500;
  z-index: 2;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  text-align: center;
  color: #ffffff;
}
.cid-thXZbns4Kn .icon-main .process-icon .wrapper .icon-container .step_1 {
  background: #102f62;
}
.cid-thXZbns4Kn .icon-main .process-icon .wrapper .icon-container .step_2 {
  background: #f19d38;
}
.cid-thXZbns4Kn .icon-main .process-icon .wrapper .icon-container .step_3 {
  background: #102f62;
}
.cid-thXZbns4Kn .icon-main .process-icon .wrapper .icon-container .step_4 {
  background: #f19d38;
}
.cid-thXZbns4Kn .icon-main .process-icon .text-wrap .subicon-title {
  color: #404040;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.cid-thXZbns4Kn .icon-main .process-icon .text-wrap .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
  color: #606060;
  font-weight: 600;
}
@media (max-width: 767px) {
  .cid-thXZbns4Kn .wrapper::before {
    display: none;
  }
}
.cid-thXVyktKVY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-thXVyktKVY .container {
    max-width: 1400px;
  }
}
.cid-thXVyktKVY .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #e9a540;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-thXVyktKVY .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-thXVyktKVY .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-thXVyktKVY .main-title {
  margin-bottom: 16px;
}
.cid-thXVyktKVY .card {
  transition: all 0.3s;
}
.cid-thXVyktKVY .card .card-wrapper {
  background-position: center;
  border-radius: 4px;
  padding: 10px;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-thXVyktKVY .card .card-wrapper .img-wrapper {
  width: auto;
  height: 193px;
  margin-bottom: 30px;
}
.cid-thXVyktKVY .card .card-wrapper .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.cid-thXVyktKVY .card .card-wrapper .card-box {
  padding-top: 30px;
}
.cid-thXVyktKVY .card .card-wrapper .card-box .card-title {
  font-weight: 600;
  margin-bottom: 16px;
}
.cid-thXVyktKVY .card .card-wrapper .card-box .mbr-text {
  font-weight: 400;
}
.cid-thXVyktKVY .card .card-wrapper .card-box .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 767px) {
  .cid-thXVyktKVY .card-box {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-thXVyktKVY .btn[class*="-outline"] {
  border: none;
  padding: 0;
  margin: 0 0.25rem !important;
  box-shadow: none !important;
}
.cid-thXVyktKVY .btn[class*="-outline"] span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  padding-left: 0.4rem;
  transition: padding 0.3s !important;
}
.cid-thXVyktKVY .btn[class*="-outline"]:hover span {
  padding-left: 15px;
}
.cid-thXVyktKVY .btn[class*="-outline"]:hover {
  background-color: transparent !important;
  color: #000000 !important;
  box-shadow: none !important;
}
.cid-thXVyktKVY .btn[class*="-outline"]:active,
.cid-thXVyktKVY .btn[class*="-outline"]:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-thY1P5NYWM {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #3d89e3;
}
.cid-thY1P5NYWM svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-thY1P5NYWM svg .st0 {
  fill: #3d89e3;
}
@media (max-width: 992px) {
  .cid-thY1P5NYWM svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-thY1P5NYWM .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-thY1P5NYWM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-thY1P5NYWM .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-thY1P5NYWM .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-thY1P5NYWM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-thY1P5NYWM .copyright {
  color: #ffffff;
}
.cid-rVs1JRXiBo .dropdown-menu {
  padding: 12px 0;
}
.cid-rVs1JRXiBo .dropdown-item:hover,
.cid-rVs1JRXiBo .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-rVs1JRXiBo .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-rVs1JRXiBo .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-rVs1JRXiBo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-rVs1JRXiBo .nav-link {
  position: relative;
}
.cid-rVs1JRXiBo .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-rVs1JRXiBo .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-rVs1JRXiBo .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-rVs1JRXiBo .dropdown-menu,
.cid-rVs1JRXiBo .navbar.opened {
  background: #1e2228 !important;
}
.cid-rVs1JRXiBo .nav-item:focus,
.cid-rVs1JRXiBo .nav-link:focus {
  outline: none;
}
.cid-rVs1JRXiBo .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-rVs1JRXiBo .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-rVs1JRXiBo .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-rVs1JRXiBo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rVs1JRXiBo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rVs1JRXiBo .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-rVs1JRXiBo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rVs1JRXiBo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rVs1JRXiBo .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: none;
}
.cid-rVs1JRXiBo .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-rVs1JRXiBo .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-rVs1JRXiBo .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-rVs1JRXiBo .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-rVs1JRXiBo .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-rVs1JRXiBo .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-rVs1JRXiBo .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-rVs1JRXiBo .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-rVs1JRXiBo .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-rVs1JRXiBo .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-rVs1JRXiBo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rVs1JRXiBo .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-rVs1JRXiBo .navbar.collapsed.opened {
  position: fixed;
}
.cid-rVs1JRXiBo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-rVs1JRXiBo .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-rVs1JRXiBo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-rVs1JRXiBo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rVs1JRXiBo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rVs1JRXiBo .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: 55%;
}
.cid-rVs1JRXiBo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rVs1JRXiBo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-rVs1JRXiBo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-rVs1JRXiBo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rVs1JRXiBo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rVs1JRXiBo .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-rVs1JRXiBo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rVs1JRXiBo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rVs1JRXiBo .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: 41%;
  }
  .cid-rVs1JRXiBo .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-rVs1JRXiBo .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rVs1JRXiBo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rVs1JRXiBo .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-rVs1JRXiBo .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-rVs1JRXiBo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-rVs1JRXiBo .navbar.navbar-short {
  min-height: 60px;
}
.cid-rVs1JRXiBo .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rVs1JRXiBo .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rVs1JRXiBo .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-rVs1JRXiBo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rVs1JRXiBo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rVs1JRXiBo .dropdown-item.active,
.cid-rVs1JRXiBo .dropdown-item:active {
  background-color: transparent;
}
.cid-rVs1JRXiBo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rVs1JRXiBo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rVs1JRXiBo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rVs1JRXiBo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #3d89e3;
}
.cid-rVs1JRXiBo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rVs1JRXiBo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rVs1JRXiBo ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rVs1JRXiBo .navbar-buttons {
  text-align: center;
}
.cid-rVs1JRXiBo 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-rVs1JRXiBo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rVs1JRXiBo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-rVs1JRXiBo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-rVs1JRXiBo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-rVs1JRXiBo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-rVs1JRXiBo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-rVs1JRXiBo nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-rVs1JRXiBo nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-rVs1JRXiBo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-rVs1JRXiBo .navbar-dropdown {
  position: fixed;
}
.cid-rVs1JRXiBo a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rVs1JRXiBo .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-rVs1JRXiBo .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-rVs1JRXiBo .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rVs1JRXiBo .navbar {
    height: 77px;
  }
  .cid-rVs1JRXiBo .navbar.opened {
    height: auto;
  }
  .cid-rVs1JRXiBo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tiqwPUXEK5 {
  padding-top: 225px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-tiqwPUXEK5 .mbr-section-title.display-2 {
  font-size: 40px;
  line-height: 1.25;
}
.cid-tiqwPUXEK5 .mbr-section-subtitle.display-5 {
  font-size: 26px;
  line-height: 1.385;
}
.cid-tiqwPUXEK5 .mbr-section-btn .btn {
  margin-left: 0 !important;
}
.cid-tiqwPUXEK5 .mbr-section-btn .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}
.cid-tiqyaLBzB7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tiqyaLBzB7 p {
  margin: 0;
}
.cid-tiqyaLBzB7 ul {
  list-style-type: none;
  padding: 0;
}
.cid-tiqyaLBzB7 .list {
  display: flex;
  flex-direction: column;
}
.cid-tiqyaLBzB7 .list .list-item {
  display: flex;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tiqyaLBzB7 .list .list-item {
    flex-direction: column;
  }
}
.cid-tiqyaLBzB7 .mbr-number {
  color: #f19d38;
  margin-right: 2rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cid-tiqyaLBzB7 .mbr-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.cid-tiqyaLBzB7 .line {
  width: 2px;
  background-color: #f19d38;
  margin-right: 3rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cid-tiqyaLBzB7 .line {
    width: 100%;
    height: 2px;
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
.cid-tiqyaLBzB7 .mbr-section-title {
  color: #33d5ad;
  margin-bottom: 2rem;
}
.cid-tiqxljrivN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tiqxljrivN .container-fluid {
  padding: 0 3rem;
}
.cid-tiqxljrivN .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #e9a540 50%, #479ede 120%);
  display: inline-block;
}
.cid-tiqxljrivN .mbr-section-title {
  color: #000000;
}
.cid-tiqxljrivN .mbr-section-subtitle {
  color: #000000;
}
.cid-tiqxljrivN .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-tiqxljrivN .header-text {
  padding: 2rem 1rem !important;
}
.cid-tiqxljrivN .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-tiqxljrivN .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-tiqxljrivN .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-tiqxljrivN .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tiqxljrivN .card .card-header a.panel-title:hover .sign {
  background-color: #f19d38 !important;
}
.cid-tiqxljrivN .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #3d89e3;
  padding: 2rem;
  padding-top: 36px;
  color: white;
}
.cid-tiqxljrivN .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-tiqxljrivN .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-tiqxljrivN .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-tiqxljrivN .container-fluid {
    padding: 0 1rem;
  }
  .cid-tiqxljrivN .header-text {
    padding: 1rem !important;
  }
  .cid-tiqxljrivN .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-tiqxljrivN .panel-body {
    width: calc(100% - 48px);
  }
  .cid-tiqxljrivN .panel-group {
    padding: 0;
  }
}
.cid-thY1P5NYWM {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #3d89e3;
}
.cid-thY1P5NYWM svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-thY1P5NYWM svg .st0 {
  fill: #3d89e3;
}
@media (max-width: 992px) {
  .cid-thY1P5NYWM svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-thY1P5NYWM .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-thY1P5NYWM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-thY1P5NYWM .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-thY1P5NYWM .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-thY1P5NYWM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-thY1P5NYWM .copyright {
  color: #ffffff;
}
.cid-tjnfxHijul .dropdown-menu {
  padding: 12px 0;
}
.cid-tjnfxHijul .dropdown-item:hover,
.cid-tjnfxHijul .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-tjnfxHijul .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-tjnfxHijul .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-tjnfxHijul .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tjnfxHijul .nav-link {
  position: relative;
}
.cid-tjnfxHijul .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-tjnfxHijul .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tjnfxHijul .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-tjnfxHijul .dropdown-menu,
.cid-tjnfxHijul .navbar.opened {
  background: #1e2228 !important;
}
.cid-tjnfxHijul .nav-item:focus,
.cid-tjnfxHijul .nav-link:focus {
  outline: none;
}
.cid-tjnfxHijul .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-tjnfxHijul .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-tjnfxHijul .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-tjnfxHijul .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tjnfxHijul .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tjnfxHijul .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-tjnfxHijul .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tjnfxHijul .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tjnfxHijul .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #3d89e3;
  background: none;
}
.cid-tjnfxHijul .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-tjnfxHijul .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-tjnfxHijul .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-tjnfxHijul .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-tjnfxHijul .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-tjnfxHijul .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-tjnfxHijul .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-tjnfxHijul .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-tjnfxHijul .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-tjnfxHijul .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tjnfxHijul .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tjnfxHijul .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-tjnfxHijul .navbar.collapsed.opened {
  position: fixed;
}
.cid-tjnfxHijul .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-tjnfxHijul .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tjnfxHijul .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-tjnfxHijul .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tjnfxHijul .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tjnfxHijul .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: 55%;
}
.cid-tjnfxHijul .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tjnfxHijul .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tjnfxHijul .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tjnfxHijul .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tjnfxHijul .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tjnfxHijul .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-tjnfxHijul .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tjnfxHijul .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tjnfxHijul .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: 41%;
  }
  .cid-tjnfxHijul .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-tjnfxHijul .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tjnfxHijul .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tjnfxHijul .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tjnfxHijul .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-tjnfxHijul .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tjnfxHijul .navbar.navbar-short {
  background: #3d89e3 !important;
  min-height: 60px;
}
.cid-tjnfxHijul .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tjnfxHijul .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tjnfxHijul .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-tjnfxHijul .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tjnfxHijul .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tjnfxHijul .dropdown-item.active,
.cid-tjnfxHijul .dropdown-item:active {
  background-color: transparent;
}
.cid-tjnfxHijul .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tjnfxHijul .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tjnfxHijul .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tjnfxHijul .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #3d89e3;
}
.cid-tjnfxHijul .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tjnfxHijul .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tjnfxHijul ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tjnfxHijul .navbar-buttons {
  text-align: center;
}
.cid-tjnfxHijul 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-tjnfxHijul button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tjnfxHijul button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tjnfxHijul button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tjnfxHijul button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tjnfxHijul button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tjnfxHijul nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjnfxHijul nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tjnfxHijul nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tjnfxHijul nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjnfxHijul .navbar-dropdown {
  position: fixed;
}
.cid-tjnfxHijul a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tjnfxHijul .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-tjnfxHijul .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-tjnfxHijul .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tjnfxHijul .navbar {
    height: 77px;
  }
  .cid-tjnfxHijul .navbar.opened {
    height: auto;
  }
  .cid-tjnfxHijul .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-twqfXXrnjy {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #e9a540;
  overflow: hidden;
}
.cid-twqfXXrnjy .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-twqfXXrnjy svg {
  fill: #ffffff !important;
  pointer-events: none;
}
.cid-twqfXXrnjy #e2_shape {
  fill: #ffffff !important;
}
.cid-twqfXXrnjy .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-twqfXXrnjy .mbr-text {
  font-weight: 300;
}
.cid-twqfXXrnjy .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-twqfXXrnjy .btn-white {
  color: #404040 !important;
}
.cid-twqfXXrnjy .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-twqfXXrnjy .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-twqfXXrnjy .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-twqfXXrnjy {
    padding: 30px;
  }
  .cid-twqfXXrnjy svg {
    display: none;
  }
}
#custom-html-1b {
  /* Type valid CSS here */
}
#custom-html-1b div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1b p {
  font-size: 60px;
  color: #777;
}
.cid-tjnfxNxnAz {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #3d89e3;
}
.cid-tjnfxNxnAz svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg2;
}
.cid-tjnfxNxnAz svg .st0 {
  fill: #3d89e3;
}
@media (max-width: 992px) {
  .cid-tjnfxNxnAz svg {
    width: 1000px;
  }
}
@keyframes svg2 {
  from {
    transform: scaleX(1) scaleY(1.1) rotate(0deg);
  }
  to {
    transform: scaleX(1) scaleY(1.6) rotate(0deg);
  }
}
.cid-tjnfxNxnAz .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tjnfxNxnAz .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tjnfxNxnAz .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tjnfxNxnAz .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tjnfxNxnAz div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tjnfxNxnAz .copyright {
  color: #ffffff;
}
