body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'exljbris - MuseoSans-500';
  font-size: 3.2rem;
  line-height: 1.5;
}
.display-1 > .mbr-iconfont {
  font-size: 5.12rem;
}
.display-2 {
  font-family: 'exljbris - MuseoSans-300';
  font-size: 3rem;
  line-height: 1.3;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'exljbris - MuseoSans-300';
  font-size: 1rem;
  line-height: 1.8;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'exljbris - MuseoSans-500';
  font-size: 1.7rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 2.72rem;
}
.display-7 {
  font-family: 'exljbris - MuseoSans-300';
  font-size: 1.2rem;
  line-height: 2;
}
.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: 768px) {
  .display-1 {
    font-size: 2.24rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.9rem !important;
    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.36rem;
    font-size: calc( 1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.245rem + (1.7 - 1.245) * ((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: 1.2rem 3.2rem;
  border-radius: 8px;
}
.bg-primary {
  background-color: #7792a4 !important;
}
.bg-success {
  background-color: #8e94aa !important;
}
.bg-info {
  background-color: #989897 !important;
}
.bg-warning {
  background-color: #919dab !important;
}
.bg-danger {
  background-color: #5fcac7 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #7792a4 !important;
  border-color: #7792a4 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #536b7c !important;
  border-color: #536b7c !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #536b7c !important;
  border-color: #536b7c !important;
}
.btn-primary:hover {
  background-color: #7792a4 !important;
  border-color: #7792a4 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #cfd3de !important;
  border-color: #cfd3de !important;
  color: #474f67 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #474f67 !important;
  background-color: #a2a9bf !important;
  border-color: #a2a9bf !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #474f67 !important;
  background-color: #a2a9bf !important;
  border-color: #a2a9bf !important;
}
.btn-secondary:hover {
  background-color: #7792a4 !important;
  border-color: #7792a4 !important;
}
.btn-info,
.btn-info:active {
  background-color: #989897 !important;
  border-color: #989897 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #727271 !important;
  border-color: #727271 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #727271 !important;
  border-color: #727271 !important;
}
.btn-info:hover {
  background-color: #7792a4 !important;
  border-color: #7792a4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #8e94aa !important;
  border-color: #8e94aa !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #656c86 !important;
  border-color: #656c86 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #656c86 !important;
  border-color: #656c86 !important;
}
.btn-success:hover {
  background-color: #7792a4 !important;
  border-color: #7792a4 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #919dab !important;
  border-color: #919dab !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #687788 !important;
  border-color: #687788 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #687788 !important;
  border-color: #687788 !important;
}
.btn-warning:hover {
  background-color: #7792a4 !important;
  border-color: #7792a4 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #5fcac7 !important;
  border-color: #5fcac7 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #37a6a3 !important;
  border-color: #37a6a3 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #37a6a3 !important;
  border-color: #37a6a3 !important;
}
.btn-danger:hover {
  background-color: #7792a4 !important;
  border-color: #7792a4 !important;
}
.btn-white,
.btn-white:active {
  background-color: #f3f3f3 !important;
  border-color: #f3f3f3 !important;
  color: #737373 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #737373 !important;
  background-color: #cdcdcd !important;
  border-color: #cdcdcd !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #737373 !important;
  background-color: #cdcdcd !important;
  border-color: #cdcdcd !important;
}
.btn-white:hover {
  background-color: #7792a4 !important;
  border-color: #7792a4 !important;
}
.btn-white:hover {
  color: white!important;
}
.btn-black,
.btn-black:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:hover {
  background-color: #7792a4 !important;
  border-color: #7792a4 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #7792a4;
  color: #7792a4;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #7792a4;
  border-color: #7792a4;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #7792a4 !important;
  border-color: #7792a4 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cfd3de;
  color: #cfd3de;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #474f67;
  background-color: #cfd3de;
  border-color: #cfd3de;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #474f67 !important;
  background-color: #cfd3de !important;
  border-color: #cfd3de !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #989897;
  color: #989897;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #989897;
  border-color: #989897;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #989897 !important;
  border-color: #989897 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #8e94aa;
  color: #8e94aa;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #8e94aa;
  border-color: #8e94aa;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #8e94aa !important;
  border-color: #8e94aa !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #919dab;
  color: #919dab;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #919dab;
  border-color: #919dab;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #919dab !important;
  border-color: #919dab !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #5fcac7;
  color: #5fcac7;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #5fcac7;
  border-color: #5fcac7;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #5fcac7 !important;
  border-color: #5fcac7 !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 {
  background: none;
  border-color: #f3f3f3;
  color: #f3f3f3;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #737373;
  background-color: #f3f3f3;
  border-color: #f3f3f3;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #737373 !important;
  background-color: #f3f3f3 !important;
  border-color: #f3f3f3 !important;
}
.text-primary {
  color: #7792a4 !important;
}
.text-secondary {
  color: #cfd3de !important;
}
.text-success {
  color: #8e94aa !important;
}
.text-info {
  color: #989897 !important;
}
.text-warning {
  color: #919dab !important;
}
.text-danger {
  color: #5fcac7 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #b4c3cd !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #ffffff !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #c8cbd6 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #cbcbca !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #cbd1d7 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #ace3e2 !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: #989897;
}
.alert-warning {
  background-color: #919dab;
}
.alert-danger {
  background-color: #5fcac7;
}
.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 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #7792a4;
  border-color: #7792a4;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #7792a4;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c3cfd7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #d7d9e1;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d7d7d7;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #d9dde2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #f8fdfd;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: #7792a4;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #7792a4;
  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: #7792a4;
  border-bottom-color: #7792a4;
}
.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: #7792a4 !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: #cfd3de !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='%237792a4' %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-ssvG2V07r7 {
  z-index: 1000;
  width: 100%;
}
.cid-ssvG2V07r7 nav.navbar {
  position: fixed;
}
.cid-ssvG2V07r7 .nav-link {
  position: relative;
}
.cid-ssvG2V07r7 .nav-link:before {
  content: '';
  bottom: -2px;
  left: 5px;
  width: 0%;
  height: 1px;
  opacity: 0;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-ssvG2V07r7 .nav-link:hover:before {
  width: 50%;
  opacity: 1;
}
.cid-ssvG2V07r7 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ssvG2V07r7 .dropdown-menu {
  padding: 0;
}
.cid-ssvG2V07r7 .dropdown-item:hover,
.cid-ssvG2V07r7 .dropdown-item:focus {
  background: #7792a4 !important;
  color: white !important;
}
.cid-ssvG2V07r7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-ssvG2V07r7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ssvG2V07r7 .container {
  display: flex;
  margin: auto;
}
.cid-ssvG2V07r7 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ssvG2V07r7 .navbar-caption {
  padding-right: 4rem;
}
.cid-ssvG2V07r7 .dropdown-menu,
.cid-ssvG2V07r7 .navbar.opened {
  background: #ffffff !important;
}
.cid-ssvG2V07r7 .nav-item:focus,
.cid-ssvG2V07r7 .nav-link:focus {
  outline: none;
}
.cid-ssvG2V07r7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ssvG2V07r7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ssvG2V07r7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ssvG2V07r7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ssvG2V07r7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ssvG2V07r7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ssvG2V07r7 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-ssvG2V07r7 .navbar.opened {
  transition: all .3s;
}
.cid-ssvG2V07r7 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-ssvG2V07r7 .navbar .navbar-logo img {
  width: auto;
}
.cid-ssvG2V07r7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ssvG2V07r7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ssvG2V07r7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ssvG2V07r7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ssvG2V07r7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ssvG2V07r7 .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-ssvG2V07r7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ssvG2V07r7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ssvG2V07r7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ssvG2V07r7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ssvG2V07r7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ssvG2V07r7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ssvG2V07r7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ssvG2V07r7 .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: 55%;
  }
  .cid-ssvG2V07r7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ssvG2V07r7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ssvG2V07r7 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ssvG2V07r7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ssvG2V07r7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ssvG2V07r7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ssvG2V07r7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ssvG2V07r7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ssvG2V07r7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ssvG2V07r7 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ssvG2V07r7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ssvG2V07r7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ssvG2V07r7 .dropdown-item.active,
.cid-ssvG2V07r7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ssvG2V07r7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ssvG2V07r7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ssvG2V07r7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ssvG2V07r7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ssvG2V07r7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ssvG2V07r7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ssvG2V07r7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ssvG2V07r7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ssvG2V07r7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-ssvG2V07r7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-ssvG2V07r7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ssvG2V07r7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ssvG2V07r7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ssvG2V07r7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ssvG2V07r7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ssvG2V07r7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ssvG2V07r7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ssvG2V07r7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ssvG2V07r7 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-ssvG2V07r7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ssvG2V07r7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ssvG2V07r7 .navbar {
    height: 77px;
  }
  .cid-ssvG2V07r7 .navbar.opened {
    height: auto;
  }
  .cid-ssvG2V07r7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-l {
  /* Type valid CSS here */
}
#custom-html-l div {
  padding: 0px 0;
  color: #777;
  text-align: center;
  margin-left: 120px;
}
#custom-html-l p {
  font-size: 60px;
  color: #777;
}
.cid-ss2HW9VV15 {
  padding-top: 225px;
  padding-bottom: 0px;
  margin-top: 100px;
  background-image: url("../../../assets/images/swoosh-1023x374.jpg");
  background-position: right;
  background-size: 1023px 374px;
  background-color: #fff !important;
}
.cid-ss2HW9VV15 .link-align {
  width: 100%;
}
.cid-ss2HW9VV15 .link-wrap {
  display: inline-block;
}
.cid-ss2HW9VV15 .link {
  position: relative;
  cursor: pointer;
  width: fit-content;
  letter-spacing: 1px;
  margin-left: 80px;
  color: #ffffff;
}
.cid-ss2HW9VV15 .link:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 60px;
  background: currentColor;
  top: 45%;
  transform: translateY(-45%);
  opacity: 0.8;
  left: -80px;
}
.cid-ss2HW9VV15 .link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  top: 45%;
  transform: translateY(-45%);
  left: -80px;
}
.cid-ss2HW9VV15 .link:hover:before {
  width: 60px;
}
.cid-ss2HW9VV15 .mbr-text,
.cid-ss2HW9VV15 .link-align {
  color: #4b4342;
  text-align: left;
}
.cid-ss2HW9VV15 H1 {
  text-align: left;
  color: #4b4342;
  margin-top: -150px !important;
}
.cid-ss2HW9VV15 .container {
  margin-left: 100px !important;
  max-height: 374px;
}
.cid-ss2HW9VV15 img {
  margin-top: -170px !important;
  max-height: 374px;
  background-color: #fff !important;
}
.cid-ssxkKRjcOL {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ced3dd;
}
@media (min-width: 1500px) {
  .cid-ssxkKRjcOL .container {
    max-width: 1400px;
  }
}
@media (min-width: 767px) {
  .cid-ssxkKRjcOL .container-fluid {
    padding: 0 3rem;
  }
}
.cid-ssxkKRjcOL .card1 {
  background: #429692;
}
.cid-ssxkKRjcOL .card2 {
  background: #686f8b;
}
.cid-ssxkKRjcOL .card3 {
  background: #8e94a9;
}
.cid-ssxkKRjcOL .card4 {
  background: #f2eae2;
}
.cid-ssxkKRjcOL .card5 {
  background: #fe6571;
}
.cid-ssxkKRjcOL .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #082c4e;
  margin-bottom: 2rem;
}
.cid-ssxkKRjcOL .card-wrapper {
  padding: 3rem 2rem;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .cid-ssxkKRjcOL .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-ssxkKRjcOL .row {
  justify-content: center;
}
@media (min-width: 1400px) {
  .cid-ssxkKRjcOL .col-lg-3 {
    max-width: 30%;
  }
}
.cid-ssxkKRjcOL .mbr-section-title {
  color: #4b4342;
}
.cid-ssxkKRjcOL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ssxkKRjcOL .card-title,
.cid-ssxkKRjcOL .iconfont-wrapper {
  color: #ffffff;
  text-align: center;
  line-height: 1em;
}
.cid-ssxkKRjcOL .card-text {
  color: #082c4e;
  margin-top: -6px;
}
.cid-ssxkKRjcOL .card-text,
.cid-ssxkKRjcOL .link {
  text-align: center;
  color: #ffffff;
}
.cid-ssxkKRjcOL p {
  line-height: 1em !important;
}
.cid-rNOUFPooqZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-rNOUFPooqZ .block__inner {
  padding: 65px 20px 75px;
  border-radius: 10px;
  border: 0px solid #7792a4;
}
.cid-rNOUFPooqZ .mbr-iconfont {
  font-size: 62px;
  color: #ffffff;
}
.cid-rNOUFPooqZ .mbr-section-title {
  margin-top: 25px;
  margin-bottom: 0;
  color: #000000;
}
.cid-rNOUFPooqZ .mbr-text {
  margin-top: 25px;
  margin-bottom: 0;
  color: #000000;
}
.cid-rNOUFPooqZ .mbr-section-btn {
  margin-top: 40px;
}
.cid-rNOUFPooqZ .mbr-section-btn .btn {
  height: 50px;
  line-height: 50px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .cid-rNOUFPooqZ .mbr-text {
    margin-top: 10px;
  }
  .cid-rNOUFPooqZ .mbr-section-title {
    margin-top: 10px;
  }
  .cid-rNOUFPooqZ .block__inner {
    padding: 30px 20px 40px;
  }
}
.cid-ssxq3sVQum {
  padding-top: 45px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background-1373x594.jpg");
}
.cid-ssxq3sVQum .mbr-iconfont {
  font-size: 4rem;
  color: #7792a4;
  min-width: 100px;
  margin-bottom: 2rem;
  display: block;
  background: -webkit-linear-gradient(#429692, #429692);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-ssxq3sVQum .card-wrapper {
  background-color: #ffffff;
  padding: 1rem;
  transition: all 0.3s;
}
.cid-ssxq3sVQum .card-wrapper:hover {
  box-shadow: 0 30px 30px -20px rgba(50, 50, 50, 0.3);
}
.cid-ssxq3sVQum .card-box {
  border: 1px solid transparent;
  padding: 2rem 1rem;
  transition: all 0.3s;
}
.cid-ssxq3sVQum .card-title {
  position: relative;
  cursor: pointer;
  color: #000000;
}
.cid-ssxq3sVQum .card {
  overflow: visible;
}
.cid-ssxq3sVQum .card:hover {
  cursor: pointer;
}
.cid-ssxq3sVQum .card:hover .card-box {
  border: 1px solid #f3f3f3;
}
.cid-ssxq3sVQum .card-title,
.cid-ssxq3sVQum .card-box {
  text-align: center;
}
.cid-ssxq3sVQum .card-text {
  color: #000000;
  text-align: center;
}
.cid-ssxq3sVQum .link {
  color: #999999;
  letter-spacing: 1px;
}
@media (max-width: 992px) {
  .cid-ssxq3sVQum .card {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ssxq3sVQum .card-box {
    border: 1px solid #f3f3f3;
  }
}
.cid-ssxq3sVQum .main-subtitle {
  color: #999999;
}
.cid-ssxq3sVQum p {
  line-height: 1.2em;
}
.cid-ss6SaGMLFj {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #7792a4;
}
