body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Bellota Text', display;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Bellota Text', display;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Bellota Text', display;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((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: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #4d6d9a !important;
}
.bg-success {
  background-color: #c794d4 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #4d6d9a !important;
  border-color: #4d6d9a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #304460 !important;
  border-color: #304460 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #304460 !important;
  border-color: #304460 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #edb5bf !important;
  border-color: #edb5bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #dc6f83 !important;
  border-color: #dc6f83 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #dc6f83 !important;
  border-color: #dc6f83 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #c794d4 !important;
  border-color: #c794d4 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #a756bb !important;
  border-color: #a756bb !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #a756bb !important;
  border-color: #a756bb !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #4d6d9a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #304460 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4d6d9a !important;
  border-color: #4d6d9a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #edb5bf;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #dc6f83 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #edb5bf !important;
  border-color: #edb5bf !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c794d4;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #a756bb !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #c794d4 !important;
  border-color: #c794d4 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #4d6d9a !important;
}
.text-secondary {
  color: #edb5bf !important;
}
.text-success {
  color: #c794d4 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #2b3d56 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #d96378 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #a14bb7 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #4d6d9a;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #4d6d9a;
  border-color: #4d6d9a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #4d6d9a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #9aafcc;
}
.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: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #4d6d9a !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #4d6d9a;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4d6d9a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #4d6d9a;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #4d6d9a;
  border-bottom-color: #4d6d9a;
}
.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: #4d6d9a !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: #edb5bf !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='%234d6d9a' %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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-sFGMsvHDIa {
  z-index: 1000;
  width: 100%;
}
.cid-sFGMsvHDIa nav.navbar {
  position: fixed;
}
.cid-sFGMsvHDIa .navbar {
  width: 100%;
  min-height: 64px;
  padding: 0 1.2rem;
  border-bottom: 1px solid rgba(238, 211, 155, 0.48);
  box-shadow: 0 5px 18px rgba(4, 23, 40, 0.14);
  transition: min-height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #294e73 0%, #173653 58%, #102d49 100%);
}
.cid-sFGMsvHDIa .navbar::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-sFGMsvHDIa .navbar.navbar-short {
  min-height: 56px;
  box-shadow: 0 6px 20px rgba(4, 23, 40, 0.22);
}
.cid-sFGMsvHDIa .navbar.navbar-short .navbar-brand {
  min-height: 56px;
}
.cid-sFGMsvHDIa .container,
.cid-sFGMsvHDIa .container-fluid {
  display: flex;
  width: 100%;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}
.cid-sFGMsvHDIa .navbar-brand {
  display: flex;
  min-height: 64px;
  margin-right: 24px;
  padding: 6px 0;
  flex-shrink: 0;
  align-items: center;
  word-break: normal;
  transition: min-height 0.3s ease;
  z-index: 2;
}
.cid-sFGMsvHDIa .navbar-logo {
  margin-right: 10px;
}
.cid-sFGMsvHDIa .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-sFGMsvHDIa .bs-header-mark {
  display: flex;
  width: 38px;
  height: 38px;
  margin-right: 11px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: rgba(8, 34, 58, 0.38);
  border: 1px solid rgba(238, 211, 155, 0.58);
  border-radius: 50%;
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.05), 0 5px 12px rgba(3, 20, 35, 0.18);
}
.cid-sFGMsvHDIa .bs-header-mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #eed39b;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cid-sFGMsvHDIa .navbar-caption-wrap {
  line-height: 1;
}
.cid-sFGMsvHDIa .navbar-caption {
  padding: 0;
  color: #ffffff !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem !important;
  font-weight: 400;
  line-height: 1.1 !important;
  letter-spacing: 1.15px;
  text-decoration: none;
  white-space: nowrap;
}
.cid-sFGMsvHDIa .navbar-caption:hover {
  color: #ffffff !important;
  text-decoration: none;
}
.cid-sFGMsvHDIa .navbar-collapse {
  justify-content: flex-end;
  z-index: 2;
}
.cid-sFGMsvHDIa .navbar-nav {
  flex-wrap: wrap;
  align-items: center;
}
.cid-sFGMsvHDIa .nav-dropdown .link {
  position: relative;
  padding: 20px 3px 18px !important;
  margin: 0 13px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.92rem !important;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.15px;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-sFGMsvHDIa .nav-dropdown .link::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 12px;
  left: 50%;
  height: 1px;
  background: #eed39b;
  transition: left 0.3s ease,
    right 0.3s ease;
}
.cid-sFGMsvHDIa .nav-dropdown .link:hover,
.cid-sFGMsvHDIa .nav-dropdown .link:focus {
  color: #ffffff !important;
  transform: translateY(-1px);
}
.cid-sFGMsvHDIa .nav-dropdown .link:hover::before,
.cid-sFGMsvHDIa .nav-dropdown .link:focus::before {
  right: 0;
  left: 0;
}
.cid-sFGMsvHDIa .nav-item:focus,
.cid-sFGMsvHDIa .nav-link:focus {
  outline: none;
}
.cid-sFGMsvHDIa .dropdown-menu,
.cid-sFGMsvHDIa .navbar.opened {
  background: #173653 !important;
}
.cid-sFGMsvHDIa .dropdown-menu {
  padding: 7px;
  border: 1px solid rgba(238, 211, 155, 0.32);
  border-radius: 12px;
  box-shadow: 0 13px 28px rgba(4, 23, 40, 0.27);
}
.cid-sFGMsvHDIa .dropdown-item {
  position: relative;
  padding: 9px 16px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  border: none;
  border-radius: 7px;
  transition: color 0.25s ease,
    background 0.25s ease;
}
.cid-sFGMsvHDIa .dropdown-item:hover,
.cid-sFGMsvHDIa .dropdown-item:focus {
  color: #ffffff !important;
  background: rgba(82, 123, 166, 0.5) !important;
}
.cid-sFGMsvHDIa .dropdown-item.active,
.cid-sFGMsvHDIa .dropdown-item:active {
  background: transparent;
}
.cid-sFGMsvHDIa .icons-menu {
  display: flex;
  padding: 0 8px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.cid-sFGMsvHDIa .iconfont-wrapper {
  color: #eed39b !important;
  font-size: 1.15rem;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-sFGMsvHDIa .iconfont-wrapper:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}
.cid-sFGMsvHDIa .navbar-buttons {
  min-width: auto;
  margin-left: 12px;
  text-align: center;
}
.cid-sFGMsvHDIa .navbar-buttons .btn {
  margin: 0;
}
.cid-sFGMsvHDIa .bs-header-button {
  min-height: 38px;
  padding: 10px 17px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #36a663 0%, #218447 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 25px !important;
  box-shadow: 0 6px 15px rgba(20, 105, 56, 0.26) !important;
  font-size: 0.75rem !important;
  font-weight: 700;
  line-height: 1.1 !important;
  letter-spacing: 0.3px;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}
.cid-sFGMsvHDIa .bs-header-button:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 0 0 3px rgba(75, 190, 116, 0.12), 0 8px 19px rgba(20, 105, 56, 0.34) !important;
}
.cid-sFGMsvHDIa button.navbar-toggler {
  position: relative;
  width: 36px;
  height: 28px;
  padding: 4px 3px;
  align-self: center;
  background: rgba(8, 34, 58, 0.35);
  border: 1px solid rgba(238, 211, 155, 0.48);
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  transition: background 0.25s ease;
}
.cid-sFGMsvHDIa button.navbar-toggler:hover {
  background: rgba(8, 34, 58, 0.56);
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 7px;
  width: 20px;
  height: 2px;
  background-color: #eed39b;
  border-radius: 3px;
  transition: all 0.22s ease;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(2),
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 12px;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 18px;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(1) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(4) {
  top: 12px;
  width: 0;
  opacity: 0;
  right: 50%;
}
@media (max-width: 991px) {
  .cid-sFGMsvHDIa .navbar {
    min-height: 60px;
    padding: 0 13px;
  }
  .cid-sFGMsvHDIa .navbar .container,
  .cid-sFGMsvHDIa .navbar .container-fluid {
    flex-wrap: wrap;
  }
  .cid-sFGMsvHDIa .navbar-brand {
    min-height: 60px;
    margin-right: 0;
    padding: 5px 0;
  }
  .cid-sFGMsvHDIa .bs-header-mark {
    width: 34px;
    height: 34px;
    margin-right: 9px;
  }
  .cid-sFGMsvHDIa .bs-header-mark svg {
    width: 22px;
    height: 22px;
  }
  .cid-sFGMsvHDIa .navbar-caption {
    font-size: 1.05rem !important;
    letter-spacing: 0.8px;
  }
  .cid-sFGMsvHDIa .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFGMsvHDIa .navbar-collapse {
    width: 100%;
    padding: 13px 15px 20px;
    margin: 0 -13px;
    flex-basis: calc(126%);
    background: linear-gradient(145deg, #173653, #102d49);
    border-top: 1px solid rgba(238, 211, 155, 0.2);
    box-shadow: 0 14px 24px rgba(4, 23, 40, 0.2);
  }
  .cid-sFGMsvHDIa ul.navbar-nav {
    width: 100%;
    align-items: stretch;
  }
  .cid-sFGMsvHDIa ul.navbar-nav li {
    width: 100%;
    margin: 0;
  }
  .cid-sFGMsvHDIa .nav-dropdown .link {
    width: 100%;
    margin: 0 !important;
    padding: 11px 10px !important;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
  }
  .cid-sFGMsvHDIa .nav-dropdown .link::before {
    display: none;
  }
  .cid-sFGMsvHDIa .nav-dropdown .link:hover {
    color: #eed39b !important;
    transform: none;
  }
  .cid-sFGMsvHDIa .dropdown-menu {
    margin: 0 auto 8px;
    text-align: center;
  }
  .cid-sFGMsvHDIa .dropdown-item {
    text-align: center;
  }
  .cid-sFGMsvHDIa .icons-menu {
    padding: 12px 0 5px;
  }
  .cid-sFGMsvHDIa .navbar-buttons {
    margin: 13px 0 0;
  }
  .cid-sFGMsvHDIa .bs-header-button {
    width: 100%;
    max-width: 270px;
    padding: 12px 18px !important;
  }
}
@media (max-width: 420px) {
  .cid-sFGMsvHDIa .navbar-caption {
    font-size: 0.94rem !important;
    letter-spacing: 0.45px;
  }
  .cid-sFGMsvHDIa .bs-header-mark {
    width: 31px;
    height: 31px;
    margin-right: 7px;
  }
  .cid-sFGMsvHDIa .bs-header-mark svg {
    width: 20px;
    height: 20px;
  }
}
.cid-vshSYePjmY {
  padding-top: 60px;
  padding-bottom: 0;
  margin-top: -1px;
  overflow: hidden;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(238, 211, 155, 0.48);
  background: radial-gradient(circle at 50% -15%, rgba(82, 123, 166, 0.45), transparent 43%), linear-gradient(145deg, #294e73 0%, #173653 48%, #0c263e 100%);
}
.cid-vshSYePjmY::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 54%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #eed39b, transparent);
  transform: translateX(-50%);
}
.cid-vshSYePjmY .bs-footer-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  z-index: 1;
  width: 500px;
  height: 340px;
  background: rgba(238, 211, 155, 0.07);
  border-radius: 50%;
  filter: blur(18px);
  transform: translateX(-50%);
  pointer-events: none;
}
.cid-vshSYePjmY .mbr-overlay {
  z-index: 0;
}
.cid-vshSYePjmY .bs-footer-grid {
  position: relative;
  z-index: 2;
  padding-bottom: 45px;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 1fr;
  gap: 48px;
}
.cid-vshSYePjmY .bs-footer-logo {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}
.cid-vshSYePjmY .bs-footer-logo:hover {
  color: #ffffff;
  text-decoration: none;
}
.cid-vshSYePjmY .bs-footer-logo-icon {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: rgba(8, 34, 58, 0.38);
  border: 1px solid rgba(238, 211, 155, 0.58);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(3, 20, 35, 0.25), inset 0 0 18px rgba(255, 255, 255, 0.05);
}
.cid-vshSYePjmY .bs-footer-logo-icon svg {
  width: 37px;
  height: 37px;
  fill: none;
  stroke: #eed39b;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cid-vshSYePjmY .bs-footer-logo-text strong {
  display: block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 1.2;
}
.cid-vshSYePjmY .bs-footer-logo-text small {
  display: block;
  margin-top: 5px;
  color: #eed39b;
  font-size: 11px;
  letter-spacing: 0.8px;
  line-height: 1.3;
}
.cid-vshSYePjmY .bs-footer-description {
  max-width: 350px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}
.cid-vshSYePjmY .bs-footer-column h3 {
  position: relative;
  margin: 3px 0 23px;
  padding-bottom: 12px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25;
}
.cid-vshSYePjmY .bs-footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 1px;
  background: #d8b978;
}
.cid-vshSYePjmY .bs-footer-column p {
  margin: 0 0 21px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.65;
}
.cid-vshSYePjmY .bs-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cid-vshSYePjmY .bs-footer-links a {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}
.cid-vshSYePjmY .bs-footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #d8b978;
}
.cid-vshSYePjmY .bs-footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.cid-vshSYePjmY .bs-footer-button {
  display: inline-flex;
  min-height: 44px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #ffffff;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.cid-vshSYePjmY .bs-footer-button:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-3px);
  filter: brightness(1.06);
}
.cid-vshSYePjmY .bs-footer-button span {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.cid-vshSYePjmY .bs-footer-button:hover span {
  transform: translateX(4px);
}
.cid-vshSYePjmY .bs-area-button {
  background: linear-gradient(135deg, #527ba6, #355e88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(4, 23, 40, 0.24);
}
.cid-vshSYePjmY .bs-business-button {
  background: linear-gradient(135deg, #36a663, #218447);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 7px 18px rgba(20, 105, 56, 0.28);
}
.cid-vshSYePjmY .bs-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 20, 35, 0.24);
}
.cid-vshSYePjmY .bs-footer-bottom-inner {
  min-height: 70px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}
.cid-vshSYePjmY .bs-footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.4;
}
.cid-vshSYePjmY .bs-footer-legal {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.cid-vshSYePjmY .bs-footer-legal a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vshSYePjmY .bs-footer-legal a:hover {
  color: #eed39b;
}
.cid-vshSYePjmY .bs-back-to-top {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cid-vshSYePjmY .bs-back-to-top span {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: #173653;
  background: #eed39b;
  border-radius: 50%;
  font-size: 16px;
}
.cid-vshSYePjmY .bs-back-to-top:hover {
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .cid-vshSYePjmY .bs-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 35px;
  }
  .cid-vshSYePjmY .bs-footer-bottom-inner {
    padding: 18px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .cid-vshSYePjmY .bs-footer-grid {
    grid-template-columns: 1fr;
    gap: 37px;
    text-align: center;
  }
  .cid-vshSYePjmY .bs-footer-logo {
    justify-content: center;
  }
  .cid-vshSYePjmY .bs-footer-description {
    margin-left: auto;
    margin-right: auto;
  }
  .cid-vshSYePjmY .bs-footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .cid-vshSYePjmY .bs-footer-links {
    align-items: center;
  }
  .cid-vshSYePjmY .bs-footer-button {
    width: 100%;
    max-width: 290px;
    box-sizing: border-box;
  }
  .cid-vshSYePjmY .bs-footer-bottom-inner {
    padding: 24px 0;
    flex-direction: column;
    gap: 17px;
    text-align: center;
  }
  .cid-vshSYePjmY .bs-footer-legal {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}
