body {
  font-family: 'Lexend', sans-serif;
}
.display-1 {
  font-family: 'Lexend', sans-serif;
  font-size: 4.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.5rem;
}
.display-2 {
  font-family: 'Lexend', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- 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.52rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.08rem;
    font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((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.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((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: #00e4ff !important;
}
.bg-success {
  background-color: #7b352d !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary {
  background-color: #00e4ff !important;
  background: linear-gradient(90deg, #00e4ff 0%, #ffe161 100%);
  border: none;
  transition: all 0.3s;
}
.btn-primary,
.btn-primary:active {
  background-color: #00e4ff;
  color: #000000 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0096a8;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #000000 !important;
  background-color: #0096a8;
}
.btn-primary:hover {
  transform: translateY(-3px);
}
.btn-secondary {
  background-color: #ffe161 !important;
  background: linear-gradient(90deg, #ffe161 0%, #ffe161 100%);
  border: none;
  transition: all 0.3s;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffe161;
  color: #614f00 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #0a0800 !important;
  background-color: #ffd10a;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #614f00 !important;
  background-color: #ffd10a;
}
.btn-secondary:hover {
  transform: translateY(-3px);
}
.btn-info {
  background-color: #47b5ed !important;
  background: linear-gradient(90deg, #47b5ed 0%, #ffe161 100%);
  border: none;
  transition: all 0.3s;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca;
}
.btn-info:hover {
  transform: translateY(-3px);
}
.btn-success {
  background-color: #7b352d !important;
  background: linear-gradient(90deg, #7b352d 0%, #ffe161 100%);
  border: none;
  transition: all 0.3s;
}
.btn-success,
.btn-success:active {
  background-color: #7b352d;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #3c1a16;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #3c1a16;
}
.btn-success:hover {
  transform: translateY(-3px);
}
.btn-warning {
  background-color: #ffe161 !important;
  background: linear-gradient(90deg, #ffe161 0%, #ffe161 100%);
  border: none;
  transition: all 0.3s;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161;
  color: #614f00 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a;
}
.btn-warning:hover {
  transform: translateY(-3px);
}
.btn-danger {
  background-color: #ff9966 !important;
  background: linear-gradient(90deg, #ff9966 0%, #ffe161 100%);
  border: none;
  transition: all 0.3s;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f;
}
.btn-danger:hover {
  transform: translateY(-3px);
}
.btn-white {
  background-color: #fafafa !important;
  background: linear-gradient(90deg, #fafafa 0%, #ffe161 100%);
  border: none;
  transition: all 0.3s;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa;
  color: #7a7a7a !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf;
}
.btn-white:hover {
  transform: translateY(-3px);
}
.btn-black {
  background-color: #232323 !important;
  background: linear-gradient(90deg, #232323 0%, #ffe161 100%);
  border: none;
  transition: all 0.3s;
}
.btn-black,
.btn-black:active {
  background-color: #232323;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000;
}
.btn-black:hover {
  transform: translateY(-3px);
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #00e4ff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0096a8 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #000000 !important;
  background-color: #00e4ff !important;
  border-color: #00e4ff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !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: #7b352d;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3c1a16 !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: #7b352d !important;
  border-color: #7b352d !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: #00e4ff !important;
}
.text-secondary {
  color: #ffe161 !important;
}
.text-success {
  color: #7b352d !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: #008999 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #facb00 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #301512 !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: #fafafa !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: #00e4ff;
}
.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-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #00e4ff;
  border-color: #00e4ff;
  color: #001719;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #00e4ff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ccfaff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #c66c62;
}
.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: 'Lexend', 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: #00e4ff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Lexend', 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: #00e4ff;
}
/* Forms */
.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: #00e4ff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #00e4ff;
}
.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: #00e4ff;
  border-bottom-color: #00e4ff;
}
.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: #00e4ff !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: #ffe161 !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='%2300e4ff' %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;
}
html,
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
@media (max-width: 445px) {
  .container-banner {
    height: 11.5rem!important;
  }
}
.cid-sMVCMjVfU5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sMVCMjVfU5 nav.navbar {
  position: fixed;
}
.cid-sMVCMjVfU5 .navbar-nav {
  margin: auto;
}
.cid-sMVCMjVfU5 .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-sMVCMjVfU5 .dropdown-item:hover,
.cid-sMVCMjVfU5 .dropdown-item:focus {
  background: #00e4ff !important;
  color: white !important;
}
.cid-sMVCMjVfU5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sMVCMjVfU5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sMVCMjVfU5 .navbar-short,
.cid-sMVCMjVfU5 .opened {
  background: #052033 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-sMVCMjVfU5 .navbar-short .nav-link,
.cid-sMVCMjVfU5 .opened .nav-link,
.cid-sMVCMjVfU5 .navbar-short .navbar-caption,
.cid-sMVCMjVfU5 .opened .navbar-caption,
.cid-sMVCMjVfU5 .navbar-short .mbr-iconfont,
.cid-sMVCMjVfU5 .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-sMVCMjVfU5 .navbar-short .hamburger span,
.cid-sMVCMjVfU5 .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-sMVCMjVfU5 .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-sMVCMjVfU5 .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-sMVCMjVfU5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sMVCMjVfU5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sMVCMjVfU5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sMVCMjVfU5 .container {
  display: flex;
  margin: auto;
}
.cid-sMVCMjVfU5 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sMVCMjVfU5 .dropdown-menu,
.cid-sMVCMjVfU5 .navbar.opened {
  background: #052033 !important;
}
.cid-sMVCMjVfU5 .nav-item:focus,
.cid-sMVCMjVfU5 .nav-link:focus {
  outline: none;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sMVCMjVfU5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sMVCMjVfU5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sMVCMjVfU5 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #052033;
}
.cid-sMVCMjVfU5 .navbar.opened {
  transition: all 0.3s;
}
.cid-sMVCMjVfU5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sMVCMjVfU5 .navbar .navbar-logo img {
  width: auto;
}
.cid-sMVCMjVfU5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sMVCMjVfU5 .navbar.collapsed {
  justify-content: center;
}
.cid-sMVCMjVfU5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sMVCMjVfU5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sMVCMjVfU5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sMVCMjVfU5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sMVCMjVfU5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sMVCMjVfU5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sMVCMjVfU5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sMVCMjVfU5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sMVCMjVfU5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sMVCMjVfU5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sMVCMjVfU5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sMVCMjVfU5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sMVCMjVfU5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sMVCMjVfU5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sMVCMjVfU5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sMVCMjVfU5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sMVCMjVfU5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sMVCMjVfU5 .dropdown-item.active,
.cid-sMVCMjVfU5 .dropdown-item:active {
  background-color: transparent;
}
.cid-sMVCMjVfU5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sMVCMjVfU5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sMVCMjVfU5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sMVCMjVfU5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #052033;
}
.cid-sMVCMjVfU5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sMVCMjVfU5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sMVCMjVfU5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sMVCMjVfU5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sMVCMjVfU5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sMVCMjVfU5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sMVCMjVfU5 .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-sMVCMjVfU5 .navbar {
    height: 70px;
  }
  .cid-sMVCMjVfU5 .navbar.opened {
    height: auto;
  }
  .cid-sMVCMjVfU5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sMVOM4KBWP {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #036c82;
}
.cid-sMVOM4KBWP .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sMVOM4KBWP .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-sMVOM4KBWP .row .img-item img {
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.cid-sMVOM4KBWP .centered {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.cid-sMVOM4KBWP H1 {
  color: #ffffff;
}
.cid-sMVOM4KBWP .warning {
  background-color: #052033;
}
.cid-sMVOM4KBWP .warning:hover {
  background: #036f89;
}
.cid-sMVOM4KBWP .btn {
  border-radius: 25px;
  width: -webkit-fill-available;
}
.cid-sMVOM4KBWP .gumbic {
  background-color: #036f89;
  border: none;
  color: #00e4ff;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  width: -webkit-fill-available;
  border-radius: 25px;
  transition-duration: 0.1s;
}
.cid-sMVOM4KBWP .gumbic:hover {
  background-color: #036c82;
  border: none;
  color: #00e4ff;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  width: -webkit-fill-available;
  border-radius: 25px;
}
@media screen and (max-width: 600px) {
  .cid-sMVOM4KBWP H1 {
    color: white;
    font-size: 15px;
  }
  .cid-sMVOM4KBWP .centered {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
}
@media screen and (max-width: 992px) {
  .cid-sMVOM4KBWP H1 {
    color: white;
    font-size: 20px;
  }
  .cid-sMVOM4KBWP .centered {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
}
.cid-sMVLHELivK {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-sMVLHELivK img {
  border-radius: 30px;
}
.cid-sMVLHELivK .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  z-index: 1;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sMVLHELivK .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-sMVLHELivK .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-sMVLHELivK .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sMVLHELivK .mbr-section-title {
  color: #ffffff;
}
.cid-sMVLHELivK .mbr-text,
.cid-sMVLHELivK .mbr-section-btn {
  color: #ffffff;
}
.cid-sMVLHELivK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sMVLHELivK P {
  text-align: justify;
  text-justify: inter-word;
}
.cid-sMVLHELivK .moje2 {
  text-align: right;
}
.cid-sMVLHELivK .moje3 {
  color: red;
}
.cid-sMVH7Xpr2k {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #036c82;
}
.cid-sMVH7Xpr2k img {
  width: 150px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-sMVH7Xpr2k img {
    width: 120px;
  }
}
.cid-sMVH7Xpr2k .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin-bottom: 2rem;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sMVH7Xpr2k .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-sMVH7Xpr2k .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-sMVH7Xpr2k .mbr-section-title {
  color: #263d5a;
}
.cid-sMVH7Xpr2k .mbr-section-subtitle {
  color: #263d5a;
}
.cid-sMVGyAMPsr {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-sMVGyAMPsr .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sMVGyAMPsr .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-sMVGyAMPsr .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-sMVGyAMPsr .row {
  justify-content: center;
  align-items: center;
}
.cid-sMVGyAMPsr .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sMVGyAMPsr .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-sMVGyAMPsr .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-sMVGyAMPsr .row .foot-menu {
    justify-content: center;
  }
}
.cid-sMVGyAMPsr .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sMVGyAMPsr .row .row-copirayt p {
  width: 100%;
}
.cid-sMVGyAMPsr .mbr-text {
  color: #00e4ff;
  text-align: center;
}
.cid-sMVGyAMPsr .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-sMVCMjVfU5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sMVCMjVfU5 nav.navbar {
  position: fixed;
}
.cid-sMVCMjVfU5 .navbar-nav {
  margin: auto;
}
.cid-sMVCMjVfU5 .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-sMVCMjVfU5 .dropdown-item:hover,
.cid-sMVCMjVfU5 .dropdown-item:focus {
  background: #00e4ff !important;
  color: white !important;
}
.cid-sMVCMjVfU5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sMVCMjVfU5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sMVCMjVfU5 .navbar-short,
.cid-sMVCMjVfU5 .opened {
  background: #052033 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-sMVCMjVfU5 .navbar-short .nav-link,
.cid-sMVCMjVfU5 .opened .nav-link,
.cid-sMVCMjVfU5 .navbar-short .navbar-caption,
.cid-sMVCMjVfU5 .opened .navbar-caption,
.cid-sMVCMjVfU5 .navbar-short .mbr-iconfont,
.cid-sMVCMjVfU5 .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-sMVCMjVfU5 .navbar-short .hamburger span,
.cid-sMVCMjVfU5 .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-sMVCMjVfU5 .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-sMVCMjVfU5 .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-sMVCMjVfU5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sMVCMjVfU5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sMVCMjVfU5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sMVCMjVfU5 .container {
  display: flex;
  margin: auto;
}
.cid-sMVCMjVfU5 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sMVCMjVfU5 .dropdown-menu,
.cid-sMVCMjVfU5 .navbar.opened {
  background: #052033 !important;
}
.cid-sMVCMjVfU5 .nav-item:focus,
.cid-sMVCMjVfU5 .nav-link:focus {
  outline: none;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sMVCMjVfU5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sMVCMjVfU5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sMVCMjVfU5 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #052033;
}
.cid-sMVCMjVfU5 .navbar.opened {
  transition: all 0.3s;
}
.cid-sMVCMjVfU5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sMVCMjVfU5 .navbar .navbar-logo img {
  width: auto;
}
.cid-sMVCMjVfU5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sMVCMjVfU5 .navbar.collapsed {
  justify-content: center;
}
.cid-sMVCMjVfU5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sMVCMjVfU5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sMVCMjVfU5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sMVCMjVfU5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sMVCMjVfU5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sMVCMjVfU5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sMVCMjVfU5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sMVCMjVfU5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sMVCMjVfU5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sMVCMjVfU5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sMVCMjVfU5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sMVCMjVfU5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sMVCMjVfU5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sMVCMjVfU5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sMVCMjVfU5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sMVCMjVfU5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sMVCMjVfU5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sMVCMjVfU5 .dropdown-item.active,
.cid-sMVCMjVfU5 .dropdown-item:active {
  background-color: transparent;
}
.cid-sMVCMjVfU5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sMVCMjVfU5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sMVCMjVfU5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sMVCMjVfU5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #052033;
}
.cid-sMVCMjVfU5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sMVCMjVfU5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sMVCMjVfU5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sMVCMjVfU5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sMVCMjVfU5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sMVCMjVfU5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sMVCMjVfU5 .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-sMVCMjVfU5 .navbar {
    height: 70px;
  }
  .cid-sMVCMjVfU5 .navbar.opened {
    height: auto;
  }
  .cid-sMVCMjVfU5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sMVY5kD2py {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #036c82;
}
.cid-sMVY5kD2py .row {
  max-width: 800px;
  margin: auto;
}
.cid-sMVY5kD2py .btn {
  width: -webkit-fill-available;
}
.cid-sMVY5kD2py .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  overflow: visible;
  position: relative;
}
@media (max-width: 767px) {
  .cid-sMVY5kD2py .card-wrapper {
    padding: 2rem 0rem;
  }
}
@media (max-width: 992px) {
  .cid-sMVY5kD2py .card-wrapper {
    margin-left: 0rem;
  }
}
.cid-sMVY5kD2py .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-sMVY5kD2py .mbr-section-title {
  color: #ffffff;
}
.cid-sMVY5kD2py .mbr-text {
  color: #6d819b;
}
.cid-sMVY5kD2py .mbr-section-subtitle {
  color: #263d5a;
}
.cid-sMVY5kD2py table {
  border: 0px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  color: white;
}
.cid-sMVY5kD2py table caption {
  font-size: 1.0em;
  margin: .5em 0 .75em;
}
.cid-sMVY5kD2py table tr {
  background-color: #f8f8f800;
  border-bottom: 1px solid #ddd;
  padding: .35em;
}
.cid-sMVY5kD2py table th,
.cid-sMVY5kD2py table td {
  padding: .625em;
  text-align: left;
}
.cid-sMVY5kD2py table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
}
@media screen and (max-width: 600px) {
  .cid-sMVY5kD2py table {
    border: 0;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
    color: white;
  }
  .cid-sMVY5kD2py table caption {
    font-size: 1.3em;
  }
  .cid-sMVY5kD2py table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .cid-sMVY5kD2py table tr {
    background-color: #f8f8f800;
    border-bottom: 1px solid #ddd;
    padding: .35em;
  }
  .cid-sMVY5kD2py table td {
    border-bottom: 0px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  .cid-sMVY5kD2py table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  .cid-sMVY5kD2py table td:last-child {
    border-bottom: 0;
  }
}
.cid-sMVY5kD2py H3 {
  color: #ff3a00;
}
.cid-sMWyAQgUSg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #036c82;
}
.cid-sMWyAQgUSg .row {
  max-width: 800px;
  margin: auto;
}
.cid-sMWyAQgUSg .btn {
  width: -webkit-fill-available;
}
.cid-sMWyAQgUSg .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  overflow: visible;
  position: relative;
}
@media (max-width: 767px) {
  .cid-sMWyAQgUSg .card-wrapper {
    padding: 2rem 0rem;
  }
}
@media (max-width: 992px) {
  .cid-sMWyAQgUSg .card-wrapper {
    margin-left: 0rem;
  }
}
.cid-sMWyAQgUSg .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-sMWyAQgUSg .mbr-section-title {
  color: #ffffff;
}
.cid-sMWyAQgUSg .mbr-text {
  color: #6d819b;
}
.cid-sMWyAQgUSg .mbr-section-subtitle {
  color: #263d5a;
}
.cid-sMWyAQgUSg table {
  border: 0px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  color: white;
}
.cid-sMWyAQgUSg table caption {
  font-size: 1.0em;
  margin: .5em 0 .75em;
}
.cid-sMWyAQgUSg table tr {
  background-color: #f8f8f800;
  border-bottom: 1px solid #ddd;
  padding: .35em;
}
.cid-sMWyAQgUSg table th,
.cid-sMWyAQgUSg table td {
  padding: .625em;
  text-align: left;
}
.cid-sMWyAQgUSg table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
}
@media screen and (max-width: 600px) {
  .cid-sMWyAQgUSg table {
    border: 0;
  }
  .cid-sMWyAQgUSg table caption {
    font-size: 1.3em;
  }
  .cid-sMWyAQgUSg table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .cid-sMWyAQgUSg table tr {
    border-bottom: 3px solid #ddd;
    margin-bottom: .625em;
  }
  .cid-sMWyAQgUSg table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: center;
  }
  .cid-sMWyAQgUSg table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  .cid-sMWyAQgUSg table td:last-child {
    border-bottom: 0;
  }
}
.cid-sMWyAQgUSg H3 {
  color: #ff3a00;
}
.cid-sMWyAQgUSg P {
  color: #ffffff;
}
.cid-sMWyAQgUSg H4 {
  color: #ffffff;
}
.cid-sMWyAQgUSg .moja {
  color: white;
}
.cid-sMVGyAMPsr {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-sMVGyAMPsr .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sMVGyAMPsr .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-sMVGyAMPsr .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-sMVGyAMPsr .row {
  justify-content: center;
  align-items: center;
}
.cid-sMVGyAMPsr .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sMVGyAMPsr .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-sMVGyAMPsr .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-sMVGyAMPsr .row .foot-menu {
    justify-content: center;
  }
}
.cid-sMVGyAMPsr .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sMVGyAMPsr .row .row-copirayt p {
  width: 100%;
}
.cid-sMVGyAMPsr .mbr-text {
  color: #00e4ff;
  text-align: center;
}
.cid-sMVGyAMPsr .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-sMVCMjVfU5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sMVCMjVfU5 nav.navbar {
  position: fixed;
}
.cid-sMVCMjVfU5 .navbar-nav {
  margin: auto;
}
.cid-sMVCMjVfU5 .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-sMVCMjVfU5 .dropdown-item:hover,
.cid-sMVCMjVfU5 .dropdown-item:focus {
  background: #00e4ff !important;
  color: white !important;
}
.cid-sMVCMjVfU5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sMVCMjVfU5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sMVCMjVfU5 .navbar-short,
.cid-sMVCMjVfU5 .opened {
  background: #052033 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-sMVCMjVfU5 .navbar-short .nav-link,
.cid-sMVCMjVfU5 .opened .nav-link,
.cid-sMVCMjVfU5 .navbar-short .navbar-caption,
.cid-sMVCMjVfU5 .opened .navbar-caption,
.cid-sMVCMjVfU5 .navbar-short .mbr-iconfont,
.cid-sMVCMjVfU5 .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-sMVCMjVfU5 .navbar-short .hamburger span,
.cid-sMVCMjVfU5 .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-sMVCMjVfU5 .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-sMVCMjVfU5 .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-sMVCMjVfU5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sMVCMjVfU5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sMVCMjVfU5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sMVCMjVfU5 .container {
  display: flex;
  margin: auto;
}
.cid-sMVCMjVfU5 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sMVCMjVfU5 .dropdown-menu,
.cid-sMVCMjVfU5 .navbar.opened {
  background: #052033 !important;
}
.cid-sMVCMjVfU5 .nav-item:focus,
.cid-sMVCMjVfU5 .nav-link:focus {
  outline: none;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sMVCMjVfU5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sMVCMjVfU5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sMVCMjVfU5 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #052033;
}
.cid-sMVCMjVfU5 .navbar.opened {
  transition: all 0.3s;
}
.cid-sMVCMjVfU5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sMVCMjVfU5 .navbar .navbar-logo img {
  width: auto;
}
.cid-sMVCMjVfU5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sMVCMjVfU5 .navbar.collapsed {
  justify-content: center;
}
.cid-sMVCMjVfU5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sMVCMjVfU5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sMVCMjVfU5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sMVCMjVfU5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sMVCMjVfU5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sMVCMjVfU5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sMVCMjVfU5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sMVCMjVfU5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sMVCMjVfU5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sMVCMjVfU5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sMVCMjVfU5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sMVCMjVfU5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sMVCMjVfU5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sMVCMjVfU5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sMVCMjVfU5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sMVCMjVfU5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sMVCMjVfU5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sMVCMjVfU5 .dropdown-item.active,
.cid-sMVCMjVfU5 .dropdown-item:active {
  background-color: transparent;
}
.cid-sMVCMjVfU5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sMVCMjVfU5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sMVCMjVfU5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sMVCMjVfU5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #052033;
}
.cid-sMVCMjVfU5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sMVCMjVfU5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sMVCMjVfU5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sMVCMjVfU5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sMVCMjVfU5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sMVCMjVfU5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sMVCMjVfU5 .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-sMVCMjVfU5 .navbar {
    height: 70px;
  }
  .cid-sMVCMjVfU5 .navbar.opened {
    height: auto;
  }
  .cid-sMVCMjVfU5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sMWBFLh3HJ {
  padding-top: 8rem;
  padding-bottom: 7rem;
  background-color: #036c82;
}
.cid-sMWBFLh3HJ .row {
  max-width: 800px;
  margin: auto;
}
.cid-sMWBFLh3HJ .gumbic {
  background-color: #036f89;
  border: none;
  color: #00e4ff;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  width: -webkit-fill-available;
  border-radius: 25px;
}
.cid-sMWBFLh3HJ .gumbic:hover {
  background-color: #036c82;
  border: none;
  color: #00e4ff;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  width: -webkit-fill-available;
  border-radius: 25px;
}
.cid-sMWBFLh3HJ .btn {
  width: -webkit-fill-available;
  border-radius: 25px;
}
.cid-sMWBFLh3HJ .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  overflow: visible;
  position: relative;
}
@media (max-width: 767px) {
  .cid-sMWBFLh3HJ .card-wrapper {
    padding: 2rem 0rem;
  }
}
@media (max-width: 992px) {
  .cid-sMWBFLh3HJ .card-wrapper {
    margin-left: 0rem;
  }
}
.cid-sMWBFLh3HJ .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-sMWBFLh3HJ .mbr-section-title {
  color: #ffffff;
}
.cid-sMWBFLh3HJ .mbr-text {
  color: #6d819b;
}
.cid-sMWBFLh3HJ .mbr-section-subtitle {
  color: #263d5a;
}
.cid-sMWBFLh3HJ table {
  border: 0px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  color: white;
}
.cid-sMWBFLh3HJ table caption {
  font-size: 1.0em;
  margin: .5em 0 .75em;
}
.cid-sMWBFLh3HJ table tr {
  background-color: #f8f8f800;
  border-bottom: 1px solid #ddd;
  padding: .35em;
}
.cid-sMWBFLh3HJ table th,
.cid-sMWBFLh3HJ table td {
  padding: .625em;
  text-align: left;
}
.cid-sMWBFLh3HJ table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
}
@media screen and (max-width: 600px) {
  .cid-sMWBFLh3HJ table {
    border: 0;
  }
  .cid-sMWBFLh3HJ table caption {
    font-size: 1.3em;
  }
  .cid-sMWBFLh3HJ table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .cid-sMWBFLh3HJ table tr {
    border-bottom: 1px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
  .cid-sMWBFLh3HJ table td {
    border-bottom: 0px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  .cid-sMWBFLh3HJ table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  .cid-sMWBFLh3HJ table td:last-child {
    border-bottom: 0;
  }
}
.cid-sMWBFLh3HJ H3 {
  color: #ff3a00;
}
.cid-sMVGyAMPsr {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-sMVGyAMPsr .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sMVGyAMPsr .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-sMVGyAMPsr .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-sMVGyAMPsr .row {
  justify-content: center;
  align-items: center;
}
.cid-sMVGyAMPsr .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sMVGyAMPsr .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-sMVGyAMPsr .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-sMVGyAMPsr .row .foot-menu {
    justify-content: center;
  }
}
.cid-sMVGyAMPsr .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sMVGyAMPsr .row .row-copirayt p {
  width: 100%;
}
.cid-sMVGyAMPsr .mbr-text {
  color: #00e4ff;
  text-align: center;
}
.cid-sMVGyAMPsr .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-sMVCMjVfU5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sMVCMjVfU5 nav.navbar {
  position: fixed;
}
.cid-sMVCMjVfU5 .navbar-nav {
  margin: auto;
}
.cid-sMVCMjVfU5 .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-sMVCMjVfU5 .dropdown-item:hover,
.cid-sMVCMjVfU5 .dropdown-item:focus {
  background: #00e4ff !important;
  color: white !important;
}
.cid-sMVCMjVfU5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sMVCMjVfU5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sMVCMjVfU5 .navbar-short,
.cid-sMVCMjVfU5 .opened {
  background: #052033 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-sMVCMjVfU5 .navbar-short .nav-link,
.cid-sMVCMjVfU5 .opened .nav-link,
.cid-sMVCMjVfU5 .navbar-short .navbar-caption,
.cid-sMVCMjVfU5 .opened .navbar-caption,
.cid-sMVCMjVfU5 .navbar-short .mbr-iconfont,
.cid-sMVCMjVfU5 .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-sMVCMjVfU5 .navbar-short .hamburger span,
.cid-sMVCMjVfU5 .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-sMVCMjVfU5 .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-sMVCMjVfU5 .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-sMVCMjVfU5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sMVCMjVfU5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sMVCMjVfU5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sMVCMjVfU5 .container {
  display: flex;
  margin: auto;
}
.cid-sMVCMjVfU5 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sMVCMjVfU5 .dropdown-menu,
.cid-sMVCMjVfU5 .navbar.opened {
  background: #052033 !important;
}
.cid-sMVCMjVfU5 .nav-item:focus,
.cid-sMVCMjVfU5 .nav-link:focus {
  outline: none;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sMVCMjVfU5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sMVCMjVfU5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sMVCMjVfU5 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #052033;
}
.cid-sMVCMjVfU5 .navbar.opened {
  transition: all 0.3s;
}
.cid-sMVCMjVfU5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sMVCMjVfU5 .navbar .navbar-logo img {
  width: auto;
}
.cid-sMVCMjVfU5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sMVCMjVfU5 .navbar.collapsed {
  justify-content: center;
}
.cid-sMVCMjVfU5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sMVCMjVfU5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sMVCMjVfU5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sMVCMjVfU5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sMVCMjVfU5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sMVCMjVfU5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sMVCMjVfU5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sMVCMjVfU5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sMVCMjVfU5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sMVCMjVfU5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sMVCMjVfU5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sMVCMjVfU5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sMVCMjVfU5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sMVCMjVfU5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sMVCMjVfU5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sMVCMjVfU5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sMVCMjVfU5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sMVCMjVfU5 .dropdown-item.active,
.cid-sMVCMjVfU5 .dropdown-item:active {
  background-color: transparent;
}
.cid-sMVCMjVfU5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sMVCMjVfU5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sMVCMjVfU5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sMVCMjVfU5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #052033;
}
.cid-sMVCMjVfU5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sMVCMjVfU5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sMVCMjVfU5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sMVCMjVfU5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sMVCMjVfU5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sMVCMjVfU5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sMVCMjVfU5 .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-sMVCMjVfU5 .navbar {
    height: 70px;
  }
  .cid-sMVCMjVfU5 .navbar.opened {
    height: auto;
  }
  .cid-sMVCMjVfU5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sMWEyKyzFs {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #036c82;
}
.cid-sMWEyKyzFs .row {
  max-width: 800px;
  margin: auto;
}
.cid-sMWEyKyzFs .btn {
  width: -webkit-fill-available;
}
.cid-sMWEyKyzFs .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  overflow: visible;
  position: relative;
}
@media (max-width: 767px) {
  .cid-sMWEyKyzFs .card-wrapper {
    padding: 2rem 0rem;
  }
}
@media (max-width: 992px) {
  .cid-sMWEyKyzFs .card-wrapper {
    margin-left: 0rem;
  }
}
.cid-sMWEyKyzFs .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-sMWEyKyzFs .mbr-section-title {
  color: #263d5a;
}
.cid-sMWEyKyzFs .mbr-text {
  color: #6d819b;
}
.cid-sMWEyKyzFs .mbr-section-subtitle {
  color: #263d5a;
}
.cid-sMWEyKyzFs table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}
.cid-sMWEyKyzFs table caption {
  font-size: 1.0em;
  margin: .5em 0 .75em;
}
.cid-sMWEyKyzFs table tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: .35em;
}
.cid-sMWEyKyzFs table th,
.cid-sMWEyKyzFs table td {
  padding: .625em;
  text-align: left;
}
.cid-sMWEyKyzFs table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
}
@media screen and (max-width: 600px) {
  .cid-sMWEyKyzFs table {
    border: 0;
  }
  .cid-sMWEyKyzFs table caption {
    font-size: 1.3em;
  }
  .cid-sMWEyKyzFs table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .cid-sMWEyKyzFs table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
  .cid-sMWEyKyzFs table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  .cid-sMWEyKyzFs table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  .cid-sMWEyKyzFs table td:last-child {
    border-bottom: 0;
  }
}
.cid-sMWEyKyzFs H3 {
  color: #000000;
}
.cid-sMWEyKyzFs p {
  color: #000;
}
.cid-sMWEyKyzFs H4 {
  color: #ffffff;
}
.cid-sMWEyKyzFs P {
  color: #f7ffe9;
}
.cid-sMWEyKyzFs H5 {
  color: #ffffff;
}
.cid-sMVGyAMPsr {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-sMVGyAMPsr .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sMVGyAMPsr .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-sMVGyAMPsr .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-sMVGyAMPsr .row {
  justify-content: center;
  align-items: center;
}
.cid-sMVGyAMPsr .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sMVGyAMPsr .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-sMVGyAMPsr .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-sMVGyAMPsr .row .foot-menu {
    justify-content: center;
  }
}
.cid-sMVGyAMPsr .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sMVGyAMPsr .row .row-copirayt p {
  width: 100%;
}
.cid-sMVGyAMPsr .mbr-text {
  color: #00e4ff;
  text-align: center;
}
.cid-sMVGyAMPsr .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-sMVCMjVfU5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sMVCMjVfU5 nav.navbar {
  position: fixed;
}
.cid-sMVCMjVfU5 .navbar-nav {
  margin: auto;
}
.cid-sMVCMjVfU5 .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-sMVCMjVfU5 .dropdown-item:hover,
.cid-sMVCMjVfU5 .dropdown-item:focus {
  background: #00e4ff !important;
  color: white !important;
}
.cid-sMVCMjVfU5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sMVCMjVfU5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sMVCMjVfU5 .navbar-short,
.cid-sMVCMjVfU5 .opened {
  background: #052033 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-sMVCMjVfU5 .navbar-short .nav-link,
.cid-sMVCMjVfU5 .opened .nav-link,
.cid-sMVCMjVfU5 .navbar-short .navbar-caption,
.cid-sMVCMjVfU5 .opened .navbar-caption,
.cid-sMVCMjVfU5 .navbar-short .mbr-iconfont,
.cid-sMVCMjVfU5 .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-sMVCMjVfU5 .navbar-short .hamburger span,
.cid-sMVCMjVfU5 .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-sMVCMjVfU5 .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-sMVCMjVfU5 .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-sMVCMjVfU5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sMVCMjVfU5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sMVCMjVfU5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sMVCMjVfU5 .container {
  display: flex;
  margin: auto;
}
.cid-sMVCMjVfU5 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sMVCMjVfU5 .dropdown-menu,
.cid-sMVCMjVfU5 .navbar.opened {
  background: #052033 !important;
}
.cid-sMVCMjVfU5 .nav-item:focus,
.cid-sMVCMjVfU5 .nav-link:focus {
  outline: none;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sMVCMjVfU5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sMVCMjVfU5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sMVCMjVfU5 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #052033;
}
.cid-sMVCMjVfU5 .navbar.opened {
  transition: all 0.3s;
}
.cid-sMVCMjVfU5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sMVCMjVfU5 .navbar .navbar-logo img {
  width: auto;
}
.cid-sMVCMjVfU5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sMVCMjVfU5 .navbar.collapsed {
  justify-content: center;
}
.cid-sMVCMjVfU5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sMVCMjVfU5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sMVCMjVfU5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sMVCMjVfU5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sMVCMjVfU5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sMVCMjVfU5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sMVCMjVfU5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sMVCMjVfU5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sMVCMjVfU5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sMVCMjVfU5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sMVCMjVfU5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sMVCMjVfU5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sMVCMjVfU5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sMVCMjVfU5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sMVCMjVfU5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sMVCMjVfU5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sMVCMjVfU5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sMVCMjVfU5 .dropdown-item.active,
.cid-sMVCMjVfU5 .dropdown-item:active {
  background-color: transparent;
}
.cid-sMVCMjVfU5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sMVCMjVfU5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sMVCMjVfU5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sMVCMjVfU5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #052033;
}
.cid-sMVCMjVfU5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sMVCMjVfU5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sMVCMjVfU5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sMVCMjVfU5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sMVCMjVfU5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sMVCMjVfU5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sMVCMjVfU5 .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-sMVCMjVfU5 .navbar {
    height: 70px;
  }
  .cid-sMVCMjVfU5 .navbar.opened {
    height: auto;
  }
  .cid-sMVCMjVfU5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sN97LdFVii {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #cdeafa;
}
.cid-sN97LdFVii .row {
  max-width: 800px;
  margin: auto;
}
.cid-sN97LdFVii .btn {
  width: -webkit-fill-available;
}
.cid-sN97LdFVii .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  overflow: visible;
  position: relative;
}
@media (max-width: 767px) {
  .cid-sN97LdFVii .card-wrapper {
    padding: 2rem 0rem;
  }
}
@media (max-width: 992px) {
  .cid-sN97LdFVii .card-wrapper {
    margin-left: 0rem;
  }
}
.cid-sN97LdFVii .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-sN97LdFVii .mbr-section-title {
  color: #263d5a;
}
.cid-sN97LdFVii .mbr-text {
  color: #6d819b;
}
.cid-sN97LdFVii .mbr-section-subtitle {
  color: #263d5a;
}
.cid-sN97LdFVii table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}
.cid-sN97LdFVii table caption {
  font-size: 1.0em;
  margin: .5em 0 .75em;
}
.cid-sN97LdFVii table tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: .35em;
}
.cid-sN97LdFVii table th,
.cid-sN97LdFVii table td {
  padding: .625em;
  text-align: left;
}
.cid-sN97LdFVii table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
}
@media screen and (max-width: 600px) {
  .cid-sN97LdFVii table {
    border: 0;
  }
  .cid-sN97LdFVii table caption {
    font-size: 1.3em;
  }
  .cid-sN97LdFVii table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .cid-sN97LdFVii table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
  .cid-sN97LdFVii table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  .cid-sN97LdFVii table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  .cid-sN97LdFVii table td:last-child {
    border-bottom: 0;
  }
}
.cid-sN97LdFVii H3 {
  color: #ff3a00;
}
.cid-sMVGyAMPsr {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-sMVGyAMPsr .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sMVGyAMPsr .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-sMVGyAMPsr .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-sMVGyAMPsr .row {
  justify-content: center;
  align-items: center;
}
.cid-sMVGyAMPsr .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sMVGyAMPsr .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-sMVGyAMPsr .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-sMVGyAMPsr .row .foot-menu {
    justify-content: center;
  }
}
.cid-sMVGyAMPsr .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sMVGyAMPsr .row .row-copirayt p {
  width: 100%;
}
.cid-sMVGyAMPsr .mbr-text {
  color: #00e4ff;
  text-align: center;
}
.cid-sMVGyAMPsr .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-sMVCMjVfU5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sMVCMjVfU5 nav.navbar {
  position: fixed;
}
.cid-sMVCMjVfU5 .navbar-nav {
  margin: auto;
}
.cid-sMVCMjVfU5 .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-sMVCMjVfU5 .dropdown-item:hover,
.cid-sMVCMjVfU5 .dropdown-item:focus {
  background: #00e4ff !important;
  color: white !important;
}
.cid-sMVCMjVfU5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sMVCMjVfU5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sMVCMjVfU5 .navbar-short,
.cid-sMVCMjVfU5 .opened {
  background: #052033 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-sMVCMjVfU5 .navbar-short .nav-link,
.cid-sMVCMjVfU5 .opened .nav-link,
.cid-sMVCMjVfU5 .navbar-short .navbar-caption,
.cid-sMVCMjVfU5 .opened .navbar-caption,
.cid-sMVCMjVfU5 .navbar-short .mbr-iconfont,
.cid-sMVCMjVfU5 .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-sMVCMjVfU5 .navbar-short .hamburger span,
.cid-sMVCMjVfU5 .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-sMVCMjVfU5 .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-sMVCMjVfU5 .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-sMVCMjVfU5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sMVCMjVfU5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sMVCMjVfU5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sMVCMjVfU5 .container {
  display: flex;
  margin: auto;
}
.cid-sMVCMjVfU5 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sMVCMjVfU5 .dropdown-menu,
.cid-sMVCMjVfU5 .navbar.opened {
  background: #052033 !important;
}
.cid-sMVCMjVfU5 .nav-item:focus,
.cid-sMVCMjVfU5 .nav-link:focus {
  outline: none;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sMVCMjVfU5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sMVCMjVfU5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sMVCMjVfU5 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #052033;
}
.cid-sMVCMjVfU5 .navbar.opened {
  transition: all 0.3s;
}
.cid-sMVCMjVfU5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sMVCMjVfU5 .navbar .navbar-logo img {
  width: auto;
}
.cid-sMVCMjVfU5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sMVCMjVfU5 .navbar.collapsed {
  justify-content: center;
}
.cid-sMVCMjVfU5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sMVCMjVfU5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sMVCMjVfU5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sMVCMjVfU5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sMVCMjVfU5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sMVCMjVfU5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sMVCMjVfU5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sMVCMjVfU5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sMVCMjVfU5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sMVCMjVfU5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sMVCMjVfU5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sMVCMjVfU5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sMVCMjVfU5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sMVCMjVfU5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sMVCMjVfU5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sMVCMjVfU5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sMVCMjVfU5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sMVCMjVfU5 .dropdown-item.active,
.cid-sMVCMjVfU5 .dropdown-item:active {
  background-color: transparent;
}
.cid-sMVCMjVfU5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sMVCMjVfU5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sMVCMjVfU5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sMVCMjVfU5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #052033;
}
.cid-sMVCMjVfU5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sMVCMjVfU5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sMVCMjVfU5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sMVCMjVfU5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sMVCMjVfU5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sMVCMjVfU5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sMVCMjVfU5 .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-sMVCMjVfU5 .navbar {
    height: 70px;
  }
  .cid-sMVCMjVfU5 .navbar.opened {
    height: auto;
  }
  .cid-sMVCMjVfU5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uK1p4ia7Y3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #036c82;
}
.cid-uK1p4ia7Y3 .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uK1p4ia7Y3 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uK1p4ia7Y3 .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-uK1p4ia7Y3 .mbr-text,
.cid-uK1p4ia7Y3 .mbr-section-btn {
  color: #263d5a;
}
.cid-uK1p4ia7Y3 .mbr-section-title {
  color: #263d5a;
}
.cid-uK1p4ia7Y3 H1 {
  text-align: left;
  color: #ffffff;
}
.cid-uK1p4ia7Y3 table {
  color: white;
  text-align: left;
}
.cid-uK1p4ia7Y3 .moje {
  display: flex;
  justify-content: center;
}
.cid-uK1p4ia7Y3 .moje .img-item {
  display: -webkit-flex;
  flex-direction: row;
  justify-content: center;
  width: 50%;
}
.cid-uK1p4ia7Y3 .moje .img-item img {
  width: 50%;
  object-fit: cover;
  border-radius: 30px;
}
.cid-sMVGyAMPsr {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-sMVGyAMPsr .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sMVGyAMPsr .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-sMVGyAMPsr .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-sMVGyAMPsr .row {
  justify-content: center;
  align-items: center;
}
.cid-sMVGyAMPsr .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sMVGyAMPsr .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-sMVGyAMPsr .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-sMVGyAMPsr .row .foot-menu {
    justify-content: center;
  }
}
.cid-sMVGyAMPsr .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sMVGyAMPsr .row .row-copirayt p {
  width: 100%;
}
.cid-sMVGyAMPsr .mbr-text {
  color: #00e4ff;
  text-align: center;
}
.cid-sMVGyAMPsr .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-uQPldMudsf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uQPldMudsf nav.navbar {
  position: fixed;
}
.cid-uQPldMudsf .navbar-nav {
  margin: auto;
}
.cid-uQPldMudsf .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-uQPldMudsf .dropdown-item:hover,
.cid-uQPldMudsf .dropdown-item:focus {
  background: #00e4ff !important;
  color: white !important;
}
.cid-uQPldMudsf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uQPldMudsf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uQPldMudsf .navbar-short,
.cid-uQPldMudsf .opened {
  background: #052033 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-uQPldMudsf .navbar-short .nav-link,
.cid-uQPldMudsf .opened .nav-link,
.cid-uQPldMudsf .navbar-short .navbar-caption,
.cid-uQPldMudsf .opened .navbar-caption,
.cid-uQPldMudsf .navbar-short .mbr-iconfont,
.cid-uQPldMudsf .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-uQPldMudsf .navbar-short .hamburger span,
.cid-uQPldMudsf .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-uQPldMudsf .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-uQPldMudsf .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-uQPldMudsf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uQPldMudsf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uQPldMudsf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQPldMudsf .container {
  display: flex;
  margin: auto;
}
.cid-uQPldMudsf .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uQPldMudsf .dropdown-menu,
.cid-uQPldMudsf .navbar.opened {
  background: #052033 !important;
}
.cid-uQPldMudsf .nav-item:focus,
.cid-uQPldMudsf .nav-link:focus {
  outline: none;
}
.cid-uQPldMudsf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uQPldMudsf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQPldMudsf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uQPldMudsf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQPldMudsf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQPldMudsf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQPldMudsf .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #052033;
}
.cid-uQPldMudsf .navbar.opened {
  transition: all 0.3s;
}
.cid-uQPldMudsf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uQPldMudsf .navbar .navbar-logo img {
  width: auto;
}
.cid-uQPldMudsf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQPldMudsf .navbar.collapsed {
  justify-content: center;
}
.cid-uQPldMudsf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQPldMudsf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQPldMudsf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQPldMudsf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQPldMudsf .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uQPldMudsf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQPldMudsf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uQPldMudsf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQPldMudsf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQPldMudsf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQPldMudsf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQPldMudsf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQPldMudsf .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uQPldMudsf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uQPldMudsf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQPldMudsf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQPldMudsf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQPldMudsf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQPldMudsf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uQPldMudsf .navbar.navbar-short {
  min-height: 60px;
}
.cid-uQPldMudsf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uQPldMudsf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uQPldMudsf .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQPldMudsf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQPldMudsf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQPldMudsf .dropdown-item.active,
.cid-uQPldMudsf .dropdown-item:active {
  background-color: transparent;
}
.cid-uQPldMudsf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQPldMudsf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQPldMudsf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQPldMudsf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #052033;
}
.cid-uQPldMudsf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQPldMudsf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQPldMudsf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQPldMudsf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uQPldMudsf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uQPldMudsf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uQPldMudsf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQPldMudsf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQPldMudsf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQPldMudsf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQPldMudsf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQPldMudsf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQPldMudsf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQPldMudsf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQPldMudsf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uQPldMudsf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uQPldMudsf .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-uQPldMudsf .navbar {
    height: 70px;
  }
  .cid-uQPldMudsf .navbar.opened {
    height: auto;
  }
  .cid-uQPldMudsf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQPldMNUUj {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #cdeafa;
}
.cid-uQPldMNUUj .row {
  max-width: 800px;
  margin: auto;
}
.cid-uQPldMNUUj .btn {
  width: -webkit-fill-available;
}
.cid-uQPldMNUUj .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  overflow: visible;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uQPldMNUUj .card-wrapper {
    padding: 2rem 0rem;
  }
}
@media (max-width: 992px) {
  .cid-uQPldMNUUj .card-wrapper {
    margin-left: 0rem;
  }
}
.cid-uQPldMNUUj .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-uQPldMNUUj .mbr-section-title {
  color: #263d5a;
}
.cid-uQPldMNUUj .mbr-text {
  color: #6d819b;
}
.cid-uQPldMNUUj .mbr-section-subtitle {
  color: #263d5a;
}
.cid-uQPldMNUUj table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}
.cid-uQPldMNUUj table caption {
  font-size: 1.0em;
  margin: .5em 0 .75em;
}
.cid-uQPldMNUUj table tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: .35em;
}
.cid-uQPldMNUUj table th,
.cid-uQPldMNUUj table td {
  padding: .625em;
  text-align: left;
}
.cid-uQPldMNUUj table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
}
@media screen and (max-width: 600px) {
  .cid-uQPldMNUUj table {
    border: 0;
  }
  .cid-uQPldMNUUj table caption {
    font-size: 1.3em;
  }
  .cid-uQPldMNUUj table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .cid-uQPldMNUUj table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
  .cid-uQPldMNUUj table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  .cid-uQPldMNUUj table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  .cid-uQPldMNUUj table td:last-child {
    border-bottom: 0;
  }
}
.cid-uQPldMNUUj H3 {
  color: #000000;
}
.cid-uQPldMNUUj P {
  color: #6d819b;
}
.cid-uQPldN6WKn {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-uQPldN6WKn .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uQPldN6WKn .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uQPldN6WKn .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-uQPldN6WKn .row {
  justify-content: center;
  align-items: center;
}
.cid-uQPldN6WKn .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uQPldN6WKn .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-uQPldN6WKn .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uQPldN6WKn .row .foot-menu {
    justify-content: center;
  }
}
.cid-uQPldN6WKn .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uQPldN6WKn .row .row-copirayt p {
  width: 100%;
}
.cid-uQPldN6WKn .mbr-text {
  color: #00e4ff;
  text-align: center;
}
.cid-uQPldN6WKn .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-sMVCMjVfU5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sMVCMjVfU5 nav.navbar {
  position: fixed;
}
.cid-sMVCMjVfU5 .navbar-nav {
  margin: auto;
}
.cid-sMVCMjVfU5 .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-sMVCMjVfU5 .dropdown-item:hover,
.cid-sMVCMjVfU5 .dropdown-item:focus {
  background: #00e4ff !important;
  color: white !important;
}
.cid-sMVCMjVfU5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sMVCMjVfU5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sMVCMjVfU5 .navbar-short,
.cid-sMVCMjVfU5 .opened {
  background: #052033 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-sMVCMjVfU5 .navbar-short .nav-link,
.cid-sMVCMjVfU5 .opened .nav-link,
.cid-sMVCMjVfU5 .navbar-short .navbar-caption,
.cid-sMVCMjVfU5 .opened .navbar-caption,
.cid-sMVCMjVfU5 .navbar-short .mbr-iconfont,
.cid-sMVCMjVfU5 .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-sMVCMjVfU5 .navbar-short .hamburger span,
.cid-sMVCMjVfU5 .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-sMVCMjVfU5 .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-sMVCMjVfU5 .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-sMVCMjVfU5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sMVCMjVfU5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sMVCMjVfU5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sMVCMjVfU5 .container {
  display: flex;
  margin: auto;
}
.cid-sMVCMjVfU5 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sMVCMjVfU5 .dropdown-menu,
.cid-sMVCMjVfU5 .navbar.opened {
  background: #052033 !important;
}
.cid-sMVCMjVfU5 .nav-item:focus,
.cid-sMVCMjVfU5 .nav-link:focus {
  outline: none;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sMVCMjVfU5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sMVCMjVfU5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sMVCMjVfU5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sMVCMjVfU5 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #052033;
}
.cid-sMVCMjVfU5 .navbar.opened {
  transition: all 0.3s;
}
.cid-sMVCMjVfU5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sMVCMjVfU5 .navbar .navbar-logo img {
  width: auto;
}
.cid-sMVCMjVfU5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sMVCMjVfU5 .navbar.collapsed {
  justify-content: center;
}
.cid-sMVCMjVfU5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sMVCMjVfU5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sMVCMjVfU5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sMVCMjVfU5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sMVCMjVfU5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sMVCMjVfU5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sMVCMjVfU5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sMVCMjVfU5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sMVCMjVfU5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sMVCMjVfU5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sMVCMjVfU5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sMVCMjVfU5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sMVCMjVfU5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sMVCMjVfU5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sMVCMjVfU5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sMVCMjVfU5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sMVCMjVfU5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sMVCMjVfU5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sMVCMjVfU5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sMVCMjVfU5 .dropdown-item.active,
.cid-sMVCMjVfU5 .dropdown-item:active {
  background-color: transparent;
}
.cid-sMVCMjVfU5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sMVCMjVfU5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sMVCMjVfU5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sMVCMjVfU5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #052033;
}
.cid-sMVCMjVfU5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sMVCMjVfU5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sMVCMjVfU5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sMVCMjVfU5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sMVCMjVfU5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMVCMjVfU5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sMVCMjVfU5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMVCMjVfU5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sMVCMjVfU5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sMVCMjVfU5 .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-sMVCMjVfU5 .navbar {
    height: 70px;
  }
  .cid-sMVCMjVfU5 .navbar.opened {
    height: auto;
  }
  .cid-sMVCMjVfU5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uUdaeP45xt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #036c82;
}
.cid-uUdaeP45xt .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  margin-left: 10rem;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uUdaeP45xt .card-wrapper {
    padding: 2rem 0rem;
  }
}
@media (max-width: 992px) {
  .cid-uUdaeP45xt .card-wrapper {
    margin-left: 0rem;
  }
}
.cid-uUdaeP45xt .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-uUdaeP45xt .mbr-section-title {
  color: #263d5a;
}
.cid-uUdaeP45xt .mbr-text {
  color: #263d5a;
}
.cid-sMVGyAMPsr {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-sMVGyAMPsr .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sMVGyAMPsr .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-sMVGyAMPsr .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-sMVGyAMPsr .row {
  justify-content: center;
  align-items: center;
}
.cid-sMVGyAMPsr .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sMVGyAMPsr .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-sMVGyAMPsr .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-sMVGyAMPsr .row .foot-menu {
    justify-content: center;
  }
}
.cid-sMVGyAMPsr .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sMVGyAMPsr .row .row-copirayt p {
  width: 100%;
}
.cid-sMVGyAMPsr .mbr-text {
  color: #00e4ff;
  text-align: center;
}
.cid-sMVGyAMPsr .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-v0axQJedbq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0axQJedbq nav.navbar {
  position: fixed;
}
.cid-v0axQJedbq .navbar-nav {
  margin: auto;
}
.cid-v0axQJedbq .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0axQJedbq .dropdown-item:hover,
.cid-v0axQJedbq .dropdown-item:focus {
  background: #00e4ff !important;
  color: white !important;
}
.cid-v0axQJedbq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0axQJedbq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0axQJedbq .navbar-short,
.cid-v0axQJedbq .opened {
  background: #052033 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-v0axQJedbq .navbar-short .nav-link,
.cid-v0axQJedbq .opened .nav-link,
.cid-v0axQJedbq .navbar-short .navbar-caption,
.cid-v0axQJedbq .opened .navbar-caption,
.cid-v0axQJedbq .navbar-short .mbr-iconfont,
.cid-v0axQJedbq .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-v0axQJedbq .navbar-short .hamburger span,
.cid-v0axQJedbq .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-v0axQJedbq .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-v0axQJedbq .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-v0axQJedbq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0axQJedbq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0axQJedbq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0axQJedbq .container {
  display: flex;
  margin: auto;
}
.cid-v0axQJedbq .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0axQJedbq .dropdown-menu,
.cid-v0axQJedbq .navbar.opened {
  background: #052033 !important;
}
.cid-v0axQJedbq .nav-item:focus,
.cid-v0axQJedbq .nav-link:focus {
  outline: none;
}
.cid-v0axQJedbq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0axQJedbq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0axQJedbq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0axQJedbq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0axQJedbq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0axQJedbq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0axQJedbq .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #052033;
}
.cid-v0axQJedbq .navbar.opened {
  transition: all 0.3s;
}
.cid-v0axQJedbq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0axQJedbq .navbar .navbar-logo img {
  width: auto;
}
.cid-v0axQJedbq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0axQJedbq .navbar.collapsed {
  justify-content: center;
}
.cid-v0axQJedbq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0axQJedbq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v0axQJedbq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0axQJedbq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0axQJedbq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0axQJedbq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0axQJedbq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0axQJedbq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0axQJedbq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0axQJedbq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0axQJedbq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0axQJedbq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0axQJedbq .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0axQJedbq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0axQJedbq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0axQJedbq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0axQJedbq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0axQJedbq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0axQJedbq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0axQJedbq .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0axQJedbq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0axQJedbq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0axQJedbq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0axQJedbq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0axQJedbq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0axQJedbq .dropdown-item.active,
.cid-v0axQJedbq .dropdown-item:active {
  background-color: transparent;
}
.cid-v0axQJedbq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0axQJedbq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0axQJedbq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0axQJedbq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #052033;
}
.cid-v0axQJedbq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0axQJedbq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0axQJedbq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0axQJedbq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0axQJedbq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0axQJedbq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v0axQJedbq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0axQJedbq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0axQJedbq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0axQJedbq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0axQJedbq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0axQJedbq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0axQJedbq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0axQJedbq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0axQJedbq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0axQJedbq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0axQJedbq .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-v0axQJedbq .navbar {
    height: 70px;
  }
  .cid-v0axQJedbq .navbar.opened {
    height: auto;
  }
  .cid-v0axQJedbq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0axQJKg8Y {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #036c82;
}
.cid-v0axQJKg8Y .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-v0axQJKg8Y .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v0axQJKg8Y .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-v0axQJKg8Y .mbr-text,
.cid-v0axQJKg8Y .mbr-section-btn {
  color: #263d5a;
}
.cid-v0axQJKg8Y .mbr-section-title {
  color: #263d5a;
}
.cid-v0axQJKg8Y H1 {
  text-align: left;
  color: #ffffff;
}
.cid-v0axQJKg8Y table {
  color: white;
  text-align: left;
}
.cid-v0axQJKg8Y .moje {
  display: flex;
  justify-content: center;
}
.cid-v0axQJKg8Y .moje .img-item {
  display: -webkit-flex;
  flex-direction: row;
  justify-content: center;
  width: 50%;
}
.cid-v0axQJKg8Y .moje .img-item img {
  width: 50%;
  object-fit: cover;
  border-radius: 30px;
}
.cid-v0axQJKg8Y H5 {
  color: #ffffff;
}
.cid-v0axQJKg8Y td {
  border: none;
  border-bottom: 1px solid #036c82;
  padding: 2px;
}
.cid-v0axQJKg8Y .rasprava {
  background-color: #bbbbbb;
}
.cid-v0axQJKg8Y span {
  color: black;
  font-weight: bold;
}
.cid-v0axQKf27R {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-v0axQKf27R .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v0axQKf27R .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v0axQKf27R .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-v0axQKf27R .row {
  justify-content: center;
  align-items: center;
}
.cid-v0axQKf27R .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v0axQKf27R .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-v0axQKf27R .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v0axQKf27R .row .foot-menu {
    justify-content: center;
  }
}
.cid-v0axQKf27R .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v0axQKf27R .row .row-copirayt p {
  width: 100%;
}
.cid-v0axQKf27R .mbr-text {
  color: #00e4ff;
  text-align: center;
}
.cid-v0axQKf27R .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-v0xeU7DPyR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0xeU7DPyR nav.navbar {
  position: fixed;
}
.cid-v0xeU7DPyR .navbar-nav {
  margin: auto;
}
.cid-v0xeU7DPyR .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0xeU7DPyR .dropdown-item:hover,
.cid-v0xeU7DPyR .dropdown-item:focus {
  background: #00e4ff !important;
  color: white !important;
}
.cid-v0xeU7DPyR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0xeU7DPyR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0xeU7DPyR .navbar-short,
.cid-v0xeU7DPyR .opened {
  background: #052033 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-v0xeU7DPyR .navbar-short .nav-link,
.cid-v0xeU7DPyR .opened .nav-link,
.cid-v0xeU7DPyR .navbar-short .navbar-caption,
.cid-v0xeU7DPyR .opened .navbar-caption,
.cid-v0xeU7DPyR .navbar-short .mbr-iconfont,
.cid-v0xeU7DPyR .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-v0xeU7DPyR .navbar-short .hamburger span,
.cid-v0xeU7DPyR .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-v0xeU7DPyR .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-v0xeU7DPyR .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-v0xeU7DPyR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0xeU7DPyR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0xeU7DPyR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0xeU7DPyR .container {
  display: flex;
  margin: auto;
}
.cid-v0xeU7DPyR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0xeU7DPyR .dropdown-menu,
.cid-v0xeU7DPyR .navbar.opened {
  background: #052033 !important;
}
.cid-v0xeU7DPyR .nav-item:focus,
.cid-v0xeU7DPyR .nav-link:focus {
  outline: none;
}
.cid-v0xeU7DPyR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0xeU7DPyR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0xeU7DPyR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0xeU7DPyR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0xeU7DPyR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0xeU7DPyR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0xeU7DPyR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #052033;
}
.cid-v0xeU7DPyR .navbar.opened {
  transition: all 0.3s;
}
.cid-v0xeU7DPyR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0xeU7DPyR .navbar .navbar-logo img {
  width: auto;
}
.cid-v0xeU7DPyR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0xeU7DPyR .navbar.collapsed {
  justify-content: center;
}
.cid-v0xeU7DPyR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0xeU7DPyR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v0xeU7DPyR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0xeU7DPyR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0xeU7DPyR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0xeU7DPyR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0xeU7DPyR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0xeU7DPyR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0xeU7DPyR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0xeU7DPyR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0xeU7DPyR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0xeU7DPyR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0xeU7DPyR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0xeU7DPyR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0xeU7DPyR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0xeU7DPyR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0xeU7DPyR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0xeU7DPyR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0xeU7DPyR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0xeU7DPyR .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0xeU7DPyR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0xeU7DPyR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0xeU7DPyR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0xeU7DPyR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0xeU7DPyR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0xeU7DPyR .dropdown-item.active,
.cid-v0xeU7DPyR .dropdown-item:active {
  background-color: transparent;
}
.cid-v0xeU7DPyR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0xeU7DPyR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0xeU7DPyR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0xeU7DPyR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #052033;
}
.cid-v0xeU7DPyR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0xeU7DPyR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0xeU7DPyR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0xeU7DPyR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0xeU7DPyR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0xeU7DPyR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v0xeU7DPyR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0xeU7DPyR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0xeU7DPyR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0xeU7DPyR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0xeU7DPyR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0xeU7DPyR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0xeU7DPyR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0xeU7DPyR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0xeU7DPyR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0xeU7DPyR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0xeU7DPyR .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-v0xeU7DPyR .navbar {
    height: 70px;
  }
  .cid-v0xeU7DPyR .navbar.opened {
    height: auto;
  }
  .cid-v0xeU7DPyR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0xeU81o1J {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #036c82;
}
.cid-v0xeU81o1J .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-v0xeU81o1J .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v0xeU81o1J .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-v0xeU81o1J .mbr-text,
.cid-v0xeU81o1J .mbr-section-btn {
  color: #263d5a;
}
.cid-v0xeU81o1J .mbr-section-title {
  color: #263d5a;
}
.cid-v0xeU81o1J H1 {
  text-align: center;
  color: #263d5a;
}
.cid-v0xeU81o1J table {
  color: black;
  text-align: left;
}
.cid-v0xeU81o1J .moje {
  display: flex;
  justify-content: center;
}
.cid-v0xeU81o1J .moje .img-item {
  display: -webkit-flex;
  flex-direction: row;
  justify-content: center;
  width: 50%;
}
.cid-v0xeU81o1J .moje .img-item img {
  width: 50%;
  object-fit: cover;
  border-radius: 30px;
}
.cid-v0xeU81o1J H5 {
  color: #ffffff;
}
.cid-v0xeU81o1J td {
  border: none;
  border-bottom: 1px solid #036c82;
  padding: 2px;
}
.cid-v0xeU81o1J .rasprava {
  background-color: #bbbbbb;
}
.cid-v0xeU81o1J span {
  color: black;
  font-weight: bold;
}
.cid-v0xeU81o1J .javor-1 {
  background-color: #036c82;
  color: white;
  border: none;
  border-radius: 25px;
  width: 20%;
}
.cid-v0xeU81o1J .javor-1:hover,
.cid-v0xeU81o1J .kesten-2:hover {
  opacity: 0.85;
}
.cid-v0xeU8TUV7 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-v0xeU8TUV7 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v0xeU8TUV7 .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v0xeU8TUV7 .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-v0xeU8TUV7 .row {
  justify-content: center;
  align-items: center;
}
.cid-v0xeU8TUV7 .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v0xeU8TUV7 .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-v0xeU8TUV7 .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v0xeU8TUV7 .row .foot-menu {
    justify-content: center;
  }
}
.cid-v0xeU8TUV7 .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v0xeU8TUV7 .row .row-copirayt p {
  width: 100%;
}
.cid-v0xeU8TUV7 .mbr-text {
  color: #00e4ff;
  text-align: center;
}
.cid-v0xeU8TUV7 .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-v0xkj4dhZH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0xkj4dhZH nav.navbar {
  position: fixed;
}
.cid-v0xkj4dhZH .navbar-nav {
  margin: auto;
}
.cid-v0xkj4dhZH .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0xkj4dhZH .dropdown-item:hover,
.cid-v0xkj4dhZH .dropdown-item:focus {
  background: #00e4ff !important;
  color: white !important;
}
.cid-v0xkj4dhZH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0xkj4dhZH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0xkj4dhZH .navbar-short,
.cid-v0xkj4dhZH .opened {
  background: #052033 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-v0xkj4dhZH .navbar-short .nav-link,
.cid-v0xkj4dhZH .opened .nav-link,
.cid-v0xkj4dhZH .navbar-short .navbar-caption,
.cid-v0xkj4dhZH .opened .navbar-caption,
.cid-v0xkj4dhZH .navbar-short .mbr-iconfont,
.cid-v0xkj4dhZH .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-v0xkj4dhZH .navbar-short .hamburger span,
.cid-v0xkj4dhZH .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-v0xkj4dhZH .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-v0xkj4dhZH .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-v0xkj4dhZH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0xkj4dhZH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0xkj4dhZH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0xkj4dhZH .container {
  display: flex;
  margin: auto;
}
.cid-v0xkj4dhZH .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0xkj4dhZH .dropdown-menu,
.cid-v0xkj4dhZH .navbar.opened {
  background: #052033 !important;
}
.cid-v0xkj4dhZH .nav-item:focus,
.cid-v0xkj4dhZH .nav-link:focus {
  outline: none;
}
.cid-v0xkj4dhZH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0xkj4dhZH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0xkj4dhZH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0xkj4dhZH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0xkj4dhZH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0xkj4dhZH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0xkj4dhZH .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #052033;
}
.cid-v0xkj4dhZH .navbar.opened {
  transition: all 0.3s;
}
.cid-v0xkj4dhZH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0xkj4dhZH .navbar .navbar-logo img {
  width: auto;
}
.cid-v0xkj4dhZH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0xkj4dhZH .navbar.collapsed {
  justify-content: center;
}
.cid-v0xkj4dhZH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0xkj4dhZH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v0xkj4dhZH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0xkj4dhZH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0xkj4dhZH .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0xkj4dhZH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0xkj4dhZH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0xkj4dhZH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0xkj4dhZH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0xkj4dhZH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0xkj4dhZH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0xkj4dhZH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0xkj4dhZH .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0xkj4dhZH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0xkj4dhZH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0xkj4dhZH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0xkj4dhZH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0xkj4dhZH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0xkj4dhZH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0xkj4dhZH .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0xkj4dhZH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0xkj4dhZH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0xkj4dhZH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0xkj4dhZH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0xkj4dhZH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0xkj4dhZH .dropdown-item.active,
.cid-v0xkj4dhZH .dropdown-item:active {
  background-color: transparent;
}
.cid-v0xkj4dhZH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0xkj4dhZH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0xkj4dhZH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0xkj4dhZH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #052033;
}
.cid-v0xkj4dhZH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0xkj4dhZH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0xkj4dhZH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0xkj4dhZH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0xkj4dhZH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0xkj4dhZH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v0xkj4dhZH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0xkj4dhZH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0xkj4dhZH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0xkj4dhZH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0xkj4dhZH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0xkj4dhZH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0xkj4dhZH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0xkj4dhZH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0xkj4dhZH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0xkj4dhZH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0xkj4dhZH .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-v0xkj4dhZH .navbar {
    height: 70px;
  }
  .cid-v0xkj4dhZH .navbar.opened {
    height: auto;
  }
  .cid-v0xkj4dhZH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0xkj4C5dE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #036c82;
}
.cid-v0xkj4C5dE .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-v0xkj4C5dE .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v0xkj4C5dE .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-v0xkj4C5dE .mbr-text,
.cid-v0xkj4C5dE .mbr-section-btn {
  color: #263d5a;
}
.cid-v0xkj4C5dE .mbr-section-title {
  color: #263d5a;
}
.cid-v0xkj4C5dE H1 {
  text-align: center;
  color: #263d5a;
}
.cid-v0xkj4C5dE table {
  color: black;
  text-align: left;
}
.cid-v0xkj4C5dE .moje {
  display: flex;
  justify-content: center;
}
.cid-v0xkj4C5dE .moje .img-item {
  display: -webkit-flex;
  flex-direction: row;
  justify-content: center;
  width: 50%;
}
.cid-v0xkj4C5dE .moje .img-item img {
  width: 50%;
  object-fit: cover;
  border-radius: 30px;
}
.cid-v0xkj4C5dE H5 {
  color: #ffffff;
}
.cid-v0xkj4C5dE td {
  border: none;
  border-bottom: 1px solid #036c82;
  padding: 2px;
}
.cid-v0xkj4C5dE .rasprava {
  background-color: #bbbbbb;
}
.cid-v0xkj4C5dE span {
  color: black;
  font-weight: bold;
}
.cid-v0xkj4C5dE .header-row {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 60px;
}
.cid-v0xkj4C5dE .title {
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.cid-v0xkj4C5dE .action-button {
  position: absolute;
  right: 0;
  margin-right: 20px;
}
.cid-v0xkj4C5dE .javor-1 {
  background-color: #036c82;
  color: white;
  border: none;
  border-radius: 25px;
  width: 20%;
}
.cid-v0xkj4C5dE .javor-1:hover,
.cid-v0xkj4C5dE .kesten-2:hover {
  opacity: 0.85;
}
.cid-v0xkj5uQMB {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-v0xkj5uQMB .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v0xkj5uQMB .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v0xkj5uQMB .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-v0xkj5uQMB .row {
  justify-content: center;
  align-items: center;
}
.cid-v0xkj5uQMB .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v0xkj5uQMB .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-v0xkj5uQMB .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v0xkj5uQMB .row .foot-menu {
    justify-content: center;
  }
}
.cid-v0xkj5uQMB .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v0xkj5uQMB .row .row-copirayt p {
  width: 100%;
}
.cid-v0xkj5uQMB .mbr-text {
  color: #00e4ff;
  text-align: center;
}
.cid-v0xkj5uQMB .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-v0xHT1D3Tw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0xHT1D3Tw nav.navbar {
  position: fixed;
}
.cid-v0xHT1D3Tw .navbar-nav {
  margin: auto;
}
.cid-v0xHT1D3Tw .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0xHT1D3Tw .dropdown-item:hover,
.cid-v0xHT1D3Tw .dropdown-item:focus {
  background: #00e4ff !important;
  color: white !important;
}
.cid-v0xHT1D3Tw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0xHT1D3Tw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0xHT1D3Tw .navbar-short,
.cid-v0xHT1D3Tw .opened {
  background: #052033 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-v0xHT1D3Tw .navbar-short .nav-link,
.cid-v0xHT1D3Tw .opened .nav-link,
.cid-v0xHT1D3Tw .navbar-short .navbar-caption,
.cid-v0xHT1D3Tw .opened .navbar-caption,
.cid-v0xHT1D3Tw .navbar-short .mbr-iconfont,
.cid-v0xHT1D3Tw .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-v0xHT1D3Tw .navbar-short .hamburger span,
.cid-v0xHT1D3Tw .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-v0xHT1D3Tw .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-v0xHT1D3Tw .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-v0xHT1D3Tw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0xHT1D3Tw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0xHT1D3Tw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0xHT1D3Tw .container {
  display: flex;
  margin: auto;
}
.cid-v0xHT1D3Tw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0xHT1D3Tw .dropdown-menu,
.cid-v0xHT1D3Tw .navbar.opened {
  background: #052033 !important;
}
.cid-v0xHT1D3Tw .nav-item:focus,
.cid-v0xHT1D3Tw .nav-link:focus {
  outline: none;
}
.cid-v0xHT1D3Tw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0xHT1D3Tw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0xHT1D3Tw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0xHT1D3Tw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0xHT1D3Tw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0xHT1D3Tw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0xHT1D3Tw .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #052033;
}
.cid-v0xHT1D3Tw .navbar.opened {
  transition: all 0.3s;
}
.cid-v0xHT1D3Tw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0xHT1D3Tw .navbar .navbar-logo img {
  width: auto;
}
.cid-v0xHT1D3Tw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0xHT1D3Tw .navbar.collapsed {
  justify-content: center;
}
.cid-v0xHT1D3Tw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0xHT1D3Tw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v0xHT1D3Tw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0xHT1D3Tw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0xHT1D3Tw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0xHT1D3Tw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0xHT1D3Tw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0xHT1D3Tw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0xHT1D3Tw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0xHT1D3Tw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0xHT1D3Tw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0xHT1D3Tw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0xHT1D3Tw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0xHT1D3Tw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0xHT1D3Tw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0xHT1D3Tw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0xHT1D3Tw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0xHT1D3Tw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0xHT1D3Tw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0xHT1D3Tw .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0xHT1D3Tw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0xHT1D3Tw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0xHT1D3Tw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0xHT1D3Tw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0xHT1D3Tw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0xHT1D3Tw .dropdown-item.active,
.cid-v0xHT1D3Tw .dropdown-item:active {
  background-color: transparent;
}
.cid-v0xHT1D3Tw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0xHT1D3Tw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0xHT1D3Tw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0xHT1D3Tw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #052033;
}
.cid-v0xHT1D3Tw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0xHT1D3Tw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0xHT1D3Tw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0xHT1D3Tw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0xHT1D3Tw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0xHT1D3Tw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v0xHT1D3Tw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0xHT1D3Tw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0xHT1D3Tw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0xHT1D3Tw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0xHT1D3Tw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0xHT1D3Tw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0xHT1D3Tw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0xHT1D3Tw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0xHT1D3Tw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0xHT1D3Tw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0xHT1D3Tw .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-v0xHT1D3Tw .navbar {
    height: 70px;
  }
  .cid-v0xHT1D3Tw .navbar.opened {
    height: auto;
  }
  .cid-v0xHT1D3Tw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0xOgIYRk8 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #036c82;
}
.cid-v0xOgIYRk8 .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-v0xOgIYRk8 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v0xOgIYRk8 .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-v0xOgIYRk8 .mbr-text,
.cid-v0xOgIYRk8 .mbr-section-btn {
  color: #263d5a;
}
.cid-v0xOgIYRk8 .mbr-section-title {
  color: #263d5a;
  text-align: center;
}
.cid-v0xOgIYRk8 .javor-1 {
  background-color: #036c82;
  color: white;
  border: none;
  border-radius: 25px;
}
.cid-v0xOgIYRk8 .kesten-2 {
  background-color: #FF9800;
  color: white;
  border: none;
}
.cid-v0xOgIYRk8 .javor-1:hover,
.cid-v0xOgIYRk8 .kesten-2:hover {
  opacity: 0.85;
}
.cid-v0xRMNZmiH {
  padding-top: 9rem;
  padding-bottom: 7rem;
  background-color: #036c82;
}
.cid-v0xRMNZmiH .row {
  justify-content: flex-end;
}
.cid-v0xRMNZmiH .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  margin-left: 10rem;
  overflow: visible;
  position: relative;
}
@media (max-width: 767px) {
  .cid-v0xRMNZmiH .card-wrapper {
    padding: 2rem 0rem;
  }
}
@media (max-width: 992px) {
  .cid-v0xRMNZmiH .card-wrapper {
    margin-left: 0rem;
  }
}
.cid-v0xRMNZmiH .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-v0xRMNZmiH .mbr-section-title {
  color: #263d5a;
}
.cid-v0xRMNZmiH .mbr-text {
  color: #6d819b;
}
.cid-v0xRMNZmiH .mbr-section-subtitle {
  color: #263d5a;
}
.cid-v0xHT2qN79 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-v0xHT2qN79 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v0xHT2qN79 .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v0xHT2qN79 .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-v0xHT2qN79 .row {
  justify-content: center;
  align-items: center;
}
.cid-v0xHT2qN79 .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v0xHT2qN79 .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-v0xHT2qN79 .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v0xHT2qN79 .row .foot-menu {
    justify-content: center;
  }
}
.cid-v0xHT2qN79 .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v0xHT2qN79 .row .row-copirayt p {
  width: 100%;
}
.cid-v0xHT2qN79 .mbr-text {
  color: #00e4ff;
  text-align: center;
}
.cid-v0xHT2qN79 .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-v0UWFF6kzZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0UWFF6kzZ nav.navbar {
  position: fixed;
}
.cid-v0UWFF6kzZ .navbar-nav {
  margin: auto;
}
.cid-v0UWFF6kzZ .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0UWFF6kzZ .dropdown-item:hover,
.cid-v0UWFF6kzZ .dropdown-item:focus {
  background: #00e4ff !important;
  color: white !important;
}
.cid-v0UWFF6kzZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0UWFF6kzZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0UWFF6kzZ .navbar-short,
.cid-v0UWFF6kzZ .opened {
  background: #052033 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-v0UWFF6kzZ .navbar-short .nav-link,
.cid-v0UWFF6kzZ .opened .nav-link,
.cid-v0UWFF6kzZ .navbar-short .navbar-caption,
.cid-v0UWFF6kzZ .opened .navbar-caption,
.cid-v0UWFF6kzZ .navbar-short .mbr-iconfont,
.cid-v0UWFF6kzZ .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-v0UWFF6kzZ .navbar-short .hamburger span,
.cid-v0UWFF6kzZ .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-v0UWFF6kzZ .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-v0UWFF6kzZ .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-v0UWFF6kzZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0UWFF6kzZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0UWFF6kzZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0UWFF6kzZ .container {
  display: flex;
  margin: auto;
}
.cid-v0UWFF6kzZ .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0UWFF6kzZ .dropdown-menu,
.cid-v0UWFF6kzZ .navbar.opened {
  background: #052033 !important;
}
.cid-v0UWFF6kzZ .nav-item:focus,
.cid-v0UWFF6kzZ .nav-link:focus {
  outline: none;
}
.cid-v0UWFF6kzZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0UWFF6kzZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0UWFF6kzZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0UWFF6kzZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0UWFF6kzZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0UWFF6kzZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0UWFF6kzZ .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #052033;
}
.cid-v0UWFF6kzZ .navbar.opened {
  transition: all 0.3s;
}
.cid-v0UWFF6kzZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0UWFF6kzZ .navbar .navbar-logo img {
  width: auto;
}
.cid-v0UWFF6kzZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0UWFF6kzZ .navbar.collapsed {
  justify-content: center;
}
.cid-v0UWFF6kzZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0UWFF6kzZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v0UWFF6kzZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0UWFF6kzZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0UWFF6kzZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0UWFF6kzZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0UWFF6kzZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0UWFF6kzZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0UWFF6kzZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0UWFF6kzZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0UWFF6kzZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0UWFF6kzZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0UWFF6kzZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0UWFF6kzZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0UWFF6kzZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0UWFF6kzZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0UWFF6kzZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0UWFF6kzZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0UWFF6kzZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0UWFF6kzZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0UWFF6kzZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0UWFF6kzZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0UWFF6kzZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0UWFF6kzZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0UWFF6kzZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0UWFF6kzZ .dropdown-item.active,
.cid-v0UWFF6kzZ .dropdown-item:active {
  background-color: transparent;
}
.cid-v0UWFF6kzZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0UWFF6kzZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0UWFF6kzZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0UWFF6kzZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #052033;
}
.cid-v0UWFF6kzZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0UWFF6kzZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0UWFF6kzZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0UWFF6kzZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0UWFF6kzZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0UWFF6kzZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v0UWFF6kzZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0UWFF6kzZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0UWFF6kzZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0UWFF6kzZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0UWFF6kzZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0UWFF6kzZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0UWFF6kzZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0UWFF6kzZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0UWFF6kzZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0UWFF6kzZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0UWFF6kzZ .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-v0UWFF6kzZ .navbar {
    height: 70px;
  }
  .cid-v0UWFF6kzZ .navbar.opened {
    height: auto;
  }
  .cid-v0UWFF6kzZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0UWFFtr7W {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #036c82;
}
.cid-v0UWFFtr7W .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-v0UWFFtr7W .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v0UWFFtr7W .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-v0UWFFtr7W .mbr-text,
.cid-v0UWFFtr7W .mbr-section-btn {
  color: #263d5a;
}
.cid-v0UWFFtr7W .mbr-section-title {
  color: #263d5a;
}
.cid-v0UWFFtr7W H1 {
  text-align: center;
  color: #263d5a;
}
.cid-v0UWFFtr7W table {
  color: black;
  text-align: left;
}
.cid-v0UWFFtr7W .moje {
  display: flex;
  justify-content: center;
}
.cid-v0UWFFtr7W .moje .img-item {
  display: -webkit-flex;
  flex-direction: row;
  justify-content: center;
  width: 50%;
}
.cid-v0UWFFtr7W .moje .img-item img {
  width: 50%;
  object-fit: cover;
  border-radius: 30px;
}
.cid-v0UWFFtr7W H5 {
  color: #ffffff;
}
.cid-v0UWFFtr7W td {
  border: none;
  border-bottom: 1px solid #036c82;
  padding: 2px;
}
.cid-v0UWFFtr7W .rasprava {
  background-color: #bbbbbb;
}
.cid-v0UWFFtr7W span {
  color: black;
  font-weight: bold;
}
.cid-v0UWFFtr7W .image-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-v0UWFFtr7W .image-row img {
  width: 100%;
  max-width: 200px;
  height: auto;
}
@media (max-width: 600px) {
  .cid-v0UWFFtr7W .image-row img {
    max-width: 120px;
  }
}
.cid-v0UWFGceF4 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-v0UWFGceF4 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v0UWFGceF4 .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v0UWFGceF4 .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-v0UWFGceF4 .row {
  justify-content: center;
  align-items: center;
}
.cid-v0UWFGceF4 .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v0UWFGceF4 .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-v0UWFGceF4 .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v0UWFGceF4 .row .foot-menu {
    justify-content: center;
  }
}
.cid-v0UWFGceF4 .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v0UWFGceF4 .row .row-copirayt p {
  width: 100%;
}
.cid-v0UWFGceF4 .mbr-text {
  color: #00e4ff;
  text-align: center;
}
.cid-v0UWFGceF4 .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-v29DWzjJgD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v29DWzjJgD nav.navbar {
  position: fixed;
}
.cid-v29DWzjJgD .navbar-nav {
  margin: auto;
}
.cid-v29DWzjJgD .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-v29DWzjJgD .dropdown-item:hover,
.cid-v29DWzjJgD .dropdown-item:focus {
  background: #00e4ff !important;
  color: white !important;
}
.cid-v29DWzjJgD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v29DWzjJgD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v29DWzjJgD .navbar-short,
.cid-v29DWzjJgD .opened {
  background: #052033 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-v29DWzjJgD .navbar-short .nav-link,
.cid-v29DWzjJgD .opened .nav-link,
.cid-v29DWzjJgD .navbar-short .navbar-caption,
.cid-v29DWzjJgD .opened .navbar-caption,
.cid-v29DWzjJgD .navbar-short .mbr-iconfont,
.cid-v29DWzjJgD .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-v29DWzjJgD .navbar-short .hamburger span,
.cid-v29DWzjJgD .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-v29DWzjJgD .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-v29DWzjJgD .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-v29DWzjJgD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v29DWzjJgD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v29DWzjJgD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v29DWzjJgD .container {
  display: flex;
  margin: auto;
}
.cid-v29DWzjJgD .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v29DWzjJgD .dropdown-menu,
.cid-v29DWzjJgD .navbar.opened {
  background: #052033 !important;
}
.cid-v29DWzjJgD .nav-item:focus,
.cid-v29DWzjJgD .nav-link:focus {
  outline: none;
}
.cid-v29DWzjJgD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v29DWzjJgD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v29DWzjJgD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v29DWzjJgD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v29DWzjJgD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v29DWzjJgD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v29DWzjJgD .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #052033;
}
.cid-v29DWzjJgD .navbar.opened {
  transition: all 0.3s;
}
.cid-v29DWzjJgD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v29DWzjJgD .navbar .navbar-logo img {
  width: auto;
}
.cid-v29DWzjJgD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v29DWzjJgD .navbar.collapsed {
  justify-content: center;
}
.cid-v29DWzjJgD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v29DWzjJgD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v29DWzjJgD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v29DWzjJgD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v29DWzjJgD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v29DWzjJgD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v29DWzjJgD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v29DWzjJgD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v29DWzjJgD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v29DWzjJgD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v29DWzjJgD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v29DWzjJgD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v29DWzjJgD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v29DWzjJgD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v29DWzjJgD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v29DWzjJgD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v29DWzjJgD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v29DWzjJgD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v29DWzjJgD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v29DWzjJgD .navbar.navbar-short {
  min-height: 60px;
}
.cid-v29DWzjJgD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v29DWzjJgD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v29DWzjJgD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v29DWzjJgD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v29DWzjJgD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v29DWzjJgD .dropdown-item.active,
.cid-v29DWzjJgD .dropdown-item:active {
  background-color: transparent;
}
.cid-v29DWzjJgD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v29DWzjJgD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v29DWzjJgD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v29DWzjJgD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #052033;
}
.cid-v29DWzjJgD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v29DWzjJgD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v29DWzjJgD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v29DWzjJgD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v29DWzjJgD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v29DWzjJgD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v29DWzjJgD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v29DWzjJgD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29DWzjJgD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29DWzjJgD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v29DWzjJgD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29DWzjJgD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v29DWzjJgD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v29DWzjJgD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29DWzjJgD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v29DWzjJgD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v29DWzjJgD .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-v29DWzjJgD .navbar {
    height: 70px;
  }
  .cid-v29DWzjJgD .navbar.opened {
    height: auto;
  }
  .cid-v29DWzjJgD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v29DWAExvh {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #036c82;
}
.cid-v29DWAExvh .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-v29DWAExvh .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v29DWAExvh .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-v29DWAExvh .mbr-text,
.cid-v29DWAExvh .mbr-section-btn {
  color: #263d5a;
}
.cid-v29DWAExvh .mbr-section-title {
  color: #263d5a;
}
.cid-v29DWAExvh H1 {
  text-align: center;
  color: #263d5a;
}
.cid-v29DWAExvh table {
  color: black;
  text-align: left;
}
.cid-v29DWAExvh .moje {
  display: flex;
  justify-content: center;
}
.cid-v29DWAExvh .moje .img-item {
  display: -webkit-flex;
  flex-direction: row;
  justify-content: center;
  width: 50%;
}
.cid-v29DWAExvh .moje .img-item img {
  width: 50%;
  object-fit: cover;
  border-radius: 30px;
}
.cid-v29DWAExvh H5 {
  color: #ffffff;
}
.cid-v29DWAExvh td {
  border: none;
  border-bottom: 1px solid #036c82;
  padding: 2px;
}
.cid-v29DWAExvh .rasprava {
  background-color: #bbbbbb;
}
.cid-v29DWAExvh span {
  color: black;
  font-weight: bold;
}
.cid-v29DWAExvh .javor-1 {
  background-color: #036c82;
  color: white;
  border: none;
  border-radius: 25px;
  width: 20%;
}
.cid-v29DWAExvh .javor-1:hover,
.cid-v29DWAExvh .kesten-2:hover {
  opacity: 0.85;
}
.cid-v29DWCIqrl {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-v29DWCIqrl .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v29DWCIqrl .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v29DWCIqrl .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-v29DWCIqrl .row {
  justify-content: center;
  align-items: center;
}
.cid-v29DWCIqrl .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v29DWCIqrl .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-v29DWCIqrl .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v29DWCIqrl .row .foot-menu {
    justify-content: center;
  }
}
.cid-v29DWCIqrl .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v29DWCIqrl .row .row-copirayt p {
  width: 100%;
}
.cid-v29DWCIqrl .mbr-text {
  color: #00e4ff;
  text-align: center;
}
.cid-v29DWCIqrl .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-v29DZbs9KA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v29DZbs9KA nav.navbar {
  position: fixed;
}
.cid-v29DZbs9KA .navbar-nav {
  margin: auto;
}
.cid-v29DZbs9KA .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-v29DZbs9KA .dropdown-item:hover,
.cid-v29DZbs9KA .dropdown-item:focus {
  background: #00e4ff !important;
  color: white !important;
}
.cid-v29DZbs9KA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v29DZbs9KA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v29DZbs9KA .navbar-short,
.cid-v29DZbs9KA .opened {
  background: #052033 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-v29DZbs9KA .navbar-short .nav-link,
.cid-v29DZbs9KA .opened .nav-link,
.cid-v29DZbs9KA .navbar-short .navbar-caption,
.cid-v29DZbs9KA .opened .navbar-caption,
.cid-v29DZbs9KA .navbar-short .mbr-iconfont,
.cid-v29DZbs9KA .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-v29DZbs9KA .navbar-short .hamburger span,
.cid-v29DZbs9KA .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-v29DZbs9KA .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-v29DZbs9KA .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-v29DZbs9KA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v29DZbs9KA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v29DZbs9KA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v29DZbs9KA .container {
  display: flex;
  margin: auto;
}
.cid-v29DZbs9KA .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v29DZbs9KA .dropdown-menu,
.cid-v29DZbs9KA .navbar.opened {
  background: #052033 !important;
}
.cid-v29DZbs9KA .nav-item:focus,
.cid-v29DZbs9KA .nav-link:focus {
  outline: none;
}
.cid-v29DZbs9KA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v29DZbs9KA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v29DZbs9KA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v29DZbs9KA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v29DZbs9KA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v29DZbs9KA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v29DZbs9KA .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #052033;
}
.cid-v29DZbs9KA .navbar.opened {
  transition: all 0.3s;
}
.cid-v29DZbs9KA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v29DZbs9KA .navbar .navbar-logo img {
  width: auto;
}
.cid-v29DZbs9KA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v29DZbs9KA .navbar.collapsed {
  justify-content: center;
}
.cid-v29DZbs9KA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v29DZbs9KA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v29DZbs9KA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v29DZbs9KA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v29DZbs9KA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v29DZbs9KA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v29DZbs9KA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v29DZbs9KA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v29DZbs9KA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v29DZbs9KA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v29DZbs9KA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v29DZbs9KA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v29DZbs9KA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v29DZbs9KA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v29DZbs9KA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v29DZbs9KA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v29DZbs9KA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v29DZbs9KA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v29DZbs9KA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v29DZbs9KA .navbar.navbar-short {
  min-height: 60px;
}
.cid-v29DZbs9KA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v29DZbs9KA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v29DZbs9KA .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v29DZbs9KA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v29DZbs9KA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v29DZbs9KA .dropdown-item.active,
.cid-v29DZbs9KA .dropdown-item:active {
  background-color: transparent;
}
.cid-v29DZbs9KA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v29DZbs9KA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v29DZbs9KA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v29DZbs9KA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #052033;
}
.cid-v29DZbs9KA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v29DZbs9KA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v29DZbs9KA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v29DZbs9KA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v29DZbs9KA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v29DZbs9KA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v29DZbs9KA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v29DZbs9KA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29DZbs9KA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29DZbs9KA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v29DZbs9KA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29DZbs9KA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v29DZbs9KA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v29DZbs9KA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29DZbs9KA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v29DZbs9KA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v29DZbs9KA .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-v29DZbs9KA .navbar {
    height: 70px;
  }
  .cid-v29DZbs9KA .navbar.opened {
    height: auto;
  }
  .cid-v29DZbs9KA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v29DZenwY1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #036c82;
}
.cid-v29DZenwY1 .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-v29DZenwY1 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v29DZenwY1 .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-v29DZenwY1 .mbr-text,
.cid-v29DZenwY1 .mbr-section-btn {
  color: #263d5a;
}
.cid-v29DZenwY1 .mbr-section-title {
  color: #263d5a;
}
.cid-v29DZenwY1 H1 {
  text-align: center;
  color: #263d5a;
}
.cid-v29DZenwY1 table {
  color: black;
  text-align: left;
}
.cid-v29DZenwY1 .moje {
  display: flex;
  justify-content: center;
}
.cid-v29DZenwY1 .moje .img-item {
  display: -webkit-flex;
  flex-direction: row;
  justify-content: center;
  width: 50%;
}
.cid-v29DZenwY1 .moje .img-item img {
  width: 50%;
  object-fit: cover;
  border-radius: 30px;
}
.cid-v29DZenwY1 H5 {
  color: #ffffff;
}
.cid-v29DZenwY1 td {
  border: none;
  border-bottom: 1px solid #036c82;
  padding: 2px;
}
.cid-v29DZenwY1 .rasprava {
  background-color: #bbbbbb;
}
.cid-v29DZenwY1 span {
  color: black;
  font-weight: bold;
}
.cid-v29DZenwY1 .javor-1 {
  background-color: #036c82;
  color: white;
  border: none;
  border-radius: 25px;
  width: 20%;
}
.cid-v29DZenwY1 .javor-1:hover,
.cid-v29DZenwY1 .kesten-2:hover {
  opacity: 0.85;
}
.cid-v29DZgvkHj {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-v29DZgvkHj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v29DZgvkHj .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v29DZgvkHj .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-v29DZgvkHj .row {
  justify-content: center;
  align-items: center;
}
.cid-v29DZgvkHj .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v29DZgvkHj .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-v29DZgvkHj .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v29DZgvkHj .row .foot-menu {
    justify-content: center;
  }
}
.cid-v29DZgvkHj .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v29DZgvkHj .row .row-copirayt p {
  width: 100%;
}
.cid-v29DZgvkHj .mbr-text {
  color: #00e4ff;
  text-align: center;
}
.cid-v29DZgvkHj .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-v29E2cFJa4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v29E2cFJa4 nav.navbar {
  position: fixed;
}
.cid-v29E2cFJa4 .navbar-nav {
  margin: auto;
}
.cid-v29E2cFJa4 .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-v29E2cFJa4 .dropdown-item:hover,
.cid-v29E2cFJa4 .dropdown-item:focus {
  background: #00e4ff !important;
  color: white !important;
}
.cid-v29E2cFJa4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v29E2cFJa4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v29E2cFJa4 .navbar-short,
.cid-v29E2cFJa4 .opened {
  background: #052033 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-v29E2cFJa4 .navbar-short .nav-link,
.cid-v29E2cFJa4 .opened .nav-link,
.cid-v29E2cFJa4 .navbar-short .navbar-caption,
.cid-v29E2cFJa4 .opened .navbar-caption,
.cid-v29E2cFJa4 .navbar-short .mbr-iconfont,
.cid-v29E2cFJa4 .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-v29E2cFJa4 .navbar-short .hamburger span,
.cid-v29E2cFJa4 .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-v29E2cFJa4 .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-v29E2cFJa4 .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-v29E2cFJa4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v29E2cFJa4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v29E2cFJa4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v29E2cFJa4 .container {
  display: flex;
  margin: auto;
}
.cid-v29E2cFJa4 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v29E2cFJa4 .dropdown-menu,
.cid-v29E2cFJa4 .navbar.opened {
  background: #052033 !important;
}
.cid-v29E2cFJa4 .nav-item:focus,
.cid-v29E2cFJa4 .nav-link:focus {
  outline: none;
}
.cid-v29E2cFJa4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v29E2cFJa4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v29E2cFJa4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v29E2cFJa4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v29E2cFJa4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v29E2cFJa4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v29E2cFJa4 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #052033;
}
.cid-v29E2cFJa4 .navbar.opened {
  transition: all 0.3s;
}
.cid-v29E2cFJa4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v29E2cFJa4 .navbar .navbar-logo img {
  width: auto;
}
.cid-v29E2cFJa4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v29E2cFJa4 .navbar.collapsed {
  justify-content: center;
}
.cid-v29E2cFJa4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v29E2cFJa4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v29E2cFJa4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v29E2cFJa4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v29E2cFJa4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v29E2cFJa4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v29E2cFJa4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v29E2cFJa4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v29E2cFJa4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v29E2cFJa4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v29E2cFJa4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v29E2cFJa4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v29E2cFJa4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v29E2cFJa4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v29E2cFJa4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v29E2cFJa4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v29E2cFJa4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v29E2cFJa4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v29E2cFJa4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v29E2cFJa4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v29E2cFJa4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v29E2cFJa4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v29E2cFJa4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v29E2cFJa4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v29E2cFJa4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v29E2cFJa4 .dropdown-item.active,
.cid-v29E2cFJa4 .dropdown-item:active {
  background-color: transparent;
}
.cid-v29E2cFJa4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v29E2cFJa4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v29E2cFJa4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v29E2cFJa4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #052033;
}
.cid-v29E2cFJa4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v29E2cFJa4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v29E2cFJa4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v29E2cFJa4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v29E2cFJa4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v29E2cFJa4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v29E2cFJa4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v29E2cFJa4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29E2cFJa4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29E2cFJa4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v29E2cFJa4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29E2cFJa4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v29E2cFJa4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v29E2cFJa4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29E2cFJa4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v29E2cFJa4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v29E2cFJa4 .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-v29E2cFJa4 .navbar {
    height: 70px;
  }
  .cid-v29E2cFJa4 .navbar.opened {
    height: auto;
  }
  .cid-v29E2cFJa4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v29E2ewTxE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #036c82;
}
.cid-v29E2ewTxE .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-v29E2ewTxE .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v29E2ewTxE .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-v29E2ewTxE .mbr-text,
.cid-v29E2ewTxE .mbr-section-btn {
  color: #263d5a;
}
.cid-v29E2ewTxE .mbr-section-title {
  color: #263d5a;
}
.cid-v29E2ewTxE H1 {
  text-align: center;
  color: #263d5a;
}
.cid-v29E2ewTxE table {
  color: black;
  text-align: left;
}
.cid-v29E2ewTxE .moje {
  display: flex;
  justify-content: center;
}
.cid-v29E2ewTxE .moje .img-item {
  display: -webkit-flex;
  flex-direction: row;
  justify-content: center;
  width: 50%;
}
.cid-v29E2ewTxE .moje .img-item img {
  width: 50%;
  object-fit: cover;
  border-radius: 30px;
}
.cid-v29E2ewTxE H5 {
  color: #ffffff;
}
.cid-v29E2ewTxE td {
  border: none;
  border-bottom: 1px solid #036c82;
  padding: 2px;
}
.cid-v29E2ewTxE .rasprava {
  background-color: #bbbbbb;
}
.cid-v29E2ewTxE span {
  color: black;
  font-weight: bold;
}
.cid-v29E2ewTxE .javor-1 {
  background-color: #036c82;
  color: white;
  border: none;
  border-radius: 25px;
  width: 20%;
}
.cid-v29E2ewTxE .javor-1:hover,
.cid-v29E2ewTxE .kesten-2:hover {
  opacity: 0.85;
}
.cid-v29E2gKlhX {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-v29E2gKlhX .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v29E2gKlhX .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v29E2gKlhX .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-v29E2gKlhX .row {
  justify-content: center;
  align-items: center;
}
.cid-v29E2gKlhX .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v29E2gKlhX .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-v29E2gKlhX .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v29E2gKlhX .row .foot-menu {
    justify-content: center;
  }
}
.cid-v29E2gKlhX .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v29E2gKlhX .row .row-copirayt p {
  width: 100%;
}
.cid-v29E2gKlhX .mbr-text {
  color: #00e4ff;
  text-align: center;
}
.cid-v29E2gKlhX .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-v29E4LZtdB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v29E4LZtdB nav.navbar {
  position: fixed;
}
.cid-v29E4LZtdB .navbar-nav {
  margin: auto;
}
.cid-v29E4LZtdB .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-v29E4LZtdB .dropdown-item:hover,
.cid-v29E4LZtdB .dropdown-item:focus {
  background: #00e4ff !important;
  color: white !important;
}
.cid-v29E4LZtdB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v29E4LZtdB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v29E4LZtdB .navbar-short,
.cid-v29E4LZtdB .opened {
  background: #052033 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-v29E4LZtdB .navbar-short .nav-link,
.cid-v29E4LZtdB .opened .nav-link,
.cid-v29E4LZtdB .navbar-short .navbar-caption,
.cid-v29E4LZtdB .opened .navbar-caption,
.cid-v29E4LZtdB .navbar-short .mbr-iconfont,
.cid-v29E4LZtdB .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-v29E4LZtdB .navbar-short .hamburger span,
.cid-v29E4LZtdB .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-v29E4LZtdB .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-v29E4LZtdB .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-v29E4LZtdB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v29E4LZtdB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v29E4LZtdB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v29E4LZtdB .container {
  display: flex;
  margin: auto;
}
.cid-v29E4LZtdB .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v29E4LZtdB .dropdown-menu,
.cid-v29E4LZtdB .navbar.opened {
  background: #052033 !important;
}
.cid-v29E4LZtdB .nav-item:focus,
.cid-v29E4LZtdB .nav-link:focus {
  outline: none;
}
.cid-v29E4LZtdB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v29E4LZtdB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v29E4LZtdB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v29E4LZtdB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v29E4LZtdB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v29E4LZtdB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v29E4LZtdB .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #052033;
}
.cid-v29E4LZtdB .navbar.opened {
  transition: all 0.3s;
}
.cid-v29E4LZtdB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v29E4LZtdB .navbar .navbar-logo img {
  width: auto;
}
.cid-v29E4LZtdB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v29E4LZtdB .navbar.collapsed {
  justify-content: center;
}
.cid-v29E4LZtdB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v29E4LZtdB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v29E4LZtdB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v29E4LZtdB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v29E4LZtdB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v29E4LZtdB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v29E4LZtdB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v29E4LZtdB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v29E4LZtdB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v29E4LZtdB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v29E4LZtdB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v29E4LZtdB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v29E4LZtdB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v29E4LZtdB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v29E4LZtdB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v29E4LZtdB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v29E4LZtdB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v29E4LZtdB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v29E4LZtdB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v29E4LZtdB .navbar.navbar-short {
  min-height: 60px;
}
.cid-v29E4LZtdB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v29E4LZtdB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v29E4LZtdB .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v29E4LZtdB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v29E4LZtdB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v29E4LZtdB .dropdown-item.active,
.cid-v29E4LZtdB .dropdown-item:active {
  background-color: transparent;
}
.cid-v29E4LZtdB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v29E4LZtdB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v29E4LZtdB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v29E4LZtdB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #052033;
}
.cid-v29E4LZtdB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v29E4LZtdB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v29E4LZtdB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v29E4LZtdB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v29E4LZtdB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v29E4LZtdB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v29E4LZtdB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v29E4LZtdB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29E4LZtdB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29E4LZtdB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v29E4LZtdB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29E4LZtdB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v29E4LZtdB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v29E4LZtdB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29E4LZtdB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v29E4LZtdB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v29E4LZtdB .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-v29E4LZtdB .navbar {
    height: 70px;
  }
  .cid-v29E4LZtdB .navbar.opened {
    height: auto;
  }
  .cid-v29E4LZtdB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v29E4OiJur {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #036c82;
}
.cid-v29E4OiJur .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-v29E4OiJur .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v29E4OiJur .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-v29E4OiJur .mbr-text,
.cid-v29E4OiJur .mbr-section-btn {
  color: #263d5a;
}
.cid-v29E4OiJur .mbr-section-title {
  color: #263d5a;
}
.cid-v29E4OiJur H1 {
  text-align: center;
  color: #263d5a;
}
.cid-v29E4OiJur table {
  color: black;
  text-align: left;
}
.cid-v29E4OiJur .moje {
  display: flex;
  justify-content: center;
}
.cid-v29E4OiJur .moje .img-item {
  display: -webkit-flex;
  flex-direction: row;
  justify-content: center;
  width: 50%;
}
.cid-v29E4OiJur .moje .img-item img {
  width: 50%;
  object-fit: cover;
  border-radius: 30px;
}
.cid-v29E4OiJur H5 {
  color: #ffffff;
}
.cid-v29E4OiJur td {
  border: none;
  border-bottom: 1px solid #036c82;
  padding: 2px;
}
.cid-v29E4OiJur .rasprava {
  background-color: #bbbbbb;
}
.cid-v29E4OiJur span {
  color: black;
  font-weight: bold;
}
.cid-v29E4OiJur .javor-1 {
  background-color: #036c82;
  color: white;
  border: none;
  border-radius: 25px;
  width: 20%;
}
.cid-v29E4OiJur .javor-1:hover,
.cid-v29E4OiJur .kesten-2:hover {
  opacity: 0.85;
}
.cid-v29E4Q0kkw {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-v29E4Q0kkw .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v29E4Q0kkw .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v29E4Q0kkw .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-v29E4Q0kkw .row {
  justify-content: center;
  align-items: center;
}
.cid-v29E4Q0kkw .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v29E4Q0kkw .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-v29E4Q0kkw .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v29E4Q0kkw .row .foot-menu {
    justify-content: center;
  }
}
.cid-v29E4Q0kkw .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v29E4Q0kkw .row .row-copirayt p {
  width: 100%;
}
.cid-v29E4Q0kkw .mbr-text {
  color: #00e4ff;
  text-align: center;
}
.cid-v29E4Q0kkw .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-v29GOTaUtl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v29GOTaUtl nav.navbar {
  position: fixed;
}
.cid-v29GOTaUtl .navbar-nav {
  margin: auto;
}
.cid-v29GOTaUtl .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-v29GOTaUtl .dropdown-item:hover,
.cid-v29GOTaUtl .dropdown-item:focus {
  background: #00e4ff !important;
  color: white !important;
}
.cid-v29GOTaUtl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v29GOTaUtl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v29GOTaUtl .navbar-short,
.cid-v29GOTaUtl .opened {
  background: #052033 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-v29GOTaUtl .navbar-short .nav-link,
.cid-v29GOTaUtl .opened .nav-link,
.cid-v29GOTaUtl .navbar-short .navbar-caption,
.cid-v29GOTaUtl .opened .navbar-caption,
.cid-v29GOTaUtl .navbar-short .mbr-iconfont,
.cid-v29GOTaUtl .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-v29GOTaUtl .navbar-short .hamburger span,
.cid-v29GOTaUtl .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-v29GOTaUtl .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-v29GOTaUtl .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-v29GOTaUtl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v29GOTaUtl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v29GOTaUtl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v29GOTaUtl .container {
  display: flex;
  margin: auto;
}
.cid-v29GOTaUtl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v29GOTaUtl .dropdown-menu,
.cid-v29GOTaUtl .navbar.opened {
  background: #052033 !important;
}
.cid-v29GOTaUtl .nav-item:focus,
.cid-v29GOTaUtl .nav-link:focus {
  outline: none;
}
.cid-v29GOTaUtl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v29GOTaUtl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v29GOTaUtl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v29GOTaUtl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v29GOTaUtl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v29GOTaUtl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v29GOTaUtl .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #052033;
}
.cid-v29GOTaUtl .navbar.opened {
  transition: all 0.3s;
}
.cid-v29GOTaUtl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v29GOTaUtl .navbar .navbar-logo img {
  width: auto;
}
.cid-v29GOTaUtl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v29GOTaUtl .navbar.collapsed {
  justify-content: center;
}
.cid-v29GOTaUtl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v29GOTaUtl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v29GOTaUtl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v29GOTaUtl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v29GOTaUtl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v29GOTaUtl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v29GOTaUtl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v29GOTaUtl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v29GOTaUtl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v29GOTaUtl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v29GOTaUtl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v29GOTaUtl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v29GOTaUtl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v29GOTaUtl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v29GOTaUtl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v29GOTaUtl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v29GOTaUtl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v29GOTaUtl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v29GOTaUtl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v29GOTaUtl .navbar.navbar-short {
  min-height: 60px;
}
.cid-v29GOTaUtl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v29GOTaUtl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v29GOTaUtl .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v29GOTaUtl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v29GOTaUtl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v29GOTaUtl .dropdown-item.active,
.cid-v29GOTaUtl .dropdown-item:active {
  background-color: transparent;
}
.cid-v29GOTaUtl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v29GOTaUtl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v29GOTaUtl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v29GOTaUtl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #052033;
}
.cid-v29GOTaUtl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v29GOTaUtl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v29GOTaUtl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v29GOTaUtl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v29GOTaUtl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v29GOTaUtl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v29GOTaUtl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v29GOTaUtl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29GOTaUtl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29GOTaUtl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v29GOTaUtl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29GOTaUtl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v29GOTaUtl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v29GOTaUtl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29GOTaUtl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v29GOTaUtl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v29GOTaUtl .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-v29GOTaUtl .navbar {
    height: 70px;
  }
  .cid-v29GOTaUtl .navbar.opened {
    height: auto;
  }
  .cid-v29GOTaUtl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v29GOUjjbY {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #036c82;
}
.cid-v29GOUjjbY .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-v29GOUjjbY .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v29GOUjjbY .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-v29GOUjjbY .mbr-text,
.cid-v29GOUjjbY .mbr-section-btn {
  color: #263d5a;
}
.cid-v29GOUjjbY .mbr-section-title {
  color: #263d5a;
  text-align: center;
}
.cid-v29GOUjjbY .javor-1 {
  background-color: #036c82;
  color: white;
  border: none;
  border-radius: 25px;
}
.cid-v29GOUjjbY .kesten-2 {
  background-color: #FF9800;
  color: white;
  border: none;
}
.cid-v29GOUjjbY .javor-1:hover,
.cid-v29GOUjjbY .kesten-2:hover {
  opacity: 0.85;
}
.cid-v29GOUjjbY H1 {
  color: #263d5a;
}
.cid-v29GOUTlsa {
  padding-top: 9rem;
  padding-bottom: 7rem;
  background-color: #036c82;
}
.cid-v29GOUTlsa .row {
  justify-content: flex-end;
}
.cid-v29GOUTlsa .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  margin-left: 10rem;
  overflow: visible;
  position: relative;
}
@media (max-width: 767px) {
  .cid-v29GOUTlsa .card-wrapper {
    padding: 2rem 0rem;
  }
}
@media (max-width: 992px) {
  .cid-v29GOUTlsa .card-wrapper {
    margin-left: 0rem;
  }
}
.cid-v29GOUTlsa .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-v29GOUTlsa .mbr-section-title {
  color: #263d5a;
}
.cid-v29GOUTlsa .mbr-text {
  color: #6d819b;
}
.cid-v29GOUTlsa .mbr-section-subtitle {
  color: #263d5a;
}
.cid-v29GOVrjhQ {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-v29GOVrjhQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v29GOVrjhQ .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v29GOVrjhQ .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-v29GOVrjhQ .row {
  justify-content: center;
  align-items: center;
}
.cid-v29GOVrjhQ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v29GOVrjhQ .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-v29GOVrjhQ .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v29GOVrjhQ .row .foot-menu {
    justify-content: center;
  }
}
.cid-v29GOVrjhQ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v29GOVrjhQ .row .row-copirayt p {
  width: 100%;
}
.cid-v29GOVrjhQ .mbr-text {
  color: #00e4ff;
  text-align: center;
}
.cid-v29GOVrjhQ .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-v29NHw11nL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v29NHw11nL nav.navbar {
  position: fixed;
}
.cid-v29NHw11nL .navbar-nav {
  margin: auto;
}
.cid-v29NHw11nL .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-v29NHw11nL .dropdown-item:hover,
.cid-v29NHw11nL .dropdown-item:focus {
  background: #00e4ff !important;
  color: white !important;
}
.cid-v29NHw11nL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v29NHw11nL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v29NHw11nL .navbar-short,
.cid-v29NHw11nL .opened {
  background: #052033 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-v29NHw11nL .navbar-short .nav-link,
.cid-v29NHw11nL .opened .nav-link,
.cid-v29NHw11nL .navbar-short .navbar-caption,
.cid-v29NHw11nL .opened .navbar-caption,
.cid-v29NHw11nL .navbar-short .mbr-iconfont,
.cid-v29NHw11nL .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-v29NHw11nL .navbar-short .hamburger span,
.cid-v29NHw11nL .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-v29NHw11nL .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-v29NHw11nL .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-v29NHw11nL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v29NHw11nL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v29NHw11nL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v29NHw11nL .container {
  display: flex;
  margin: auto;
}
.cid-v29NHw11nL .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v29NHw11nL .dropdown-menu,
.cid-v29NHw11nL .navbar.opened {
  background: #052033 !important;
}
.cid-v29NHw11nL .nav-item:focus,
.cid-v29NHw11nL .nav-link:focus {
  outline: none;
}
.cid-v29NHw11nL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v29NHw11nL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v29NHw11nL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v29NHw11nL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v29NHw11nL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v29NHw11nL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v29NHw11nL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #052033;
}
.cid-v29NHw11nL .navbar.opened {
  transition: all 0.3s;
}
.cid-v29NHw11nL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v29NHw11nL .navbar .navbar-logo img {
  width: auto;
}
.cid-v29NHw11nL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v29NHw11nL .navbar.collapsed {
  justify-content: center;
}
.cid-v29NHw11nL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v29NHw11nL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v29NHw11nL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v29NHw11nL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v29NHw11nL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v29NHw11nL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v29NHw11nL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v29NHw11nL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v29NHw11nL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v29NHw11nL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v29NHw11nL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v29NHw11nL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v29NHw11nL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v29NHw11nL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v29NHw11nL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v29NHw11nL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v29NHw11nL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v29NHw11nL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v29NHw11nL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v29NHw11nL .navbar.navbar-short {
  min-height: 60px;
}
.cid-v29NHw11nL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v29NHw11nL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v29NHw11nL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v29NHw11nL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v29NHw11nL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v29NHw11nL .dropdown-item.active,
.cid-v29NHw11nL .dropdown-item:active {
  background-color: transparent;
}
.cid-v29NHw11nL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v29NHw11nL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v29NHw11nL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v29NHw11nL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #052033;
}
.cid-v29NHw11nL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v29NHw11nL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v29NHw11nL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v29NHw11nL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v29NHw11nL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v29NHw11nL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v29NHw11nL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v29NHw11nL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29NHw11nL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29NHw11nL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v29NHw11nL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29NHw11nL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v29NHw11nL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v29NHw11nL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29NHw11nL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v29NHw11nL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v29NHw11nL .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-v29NHw11nL .navbar {
    height: 70px;
  }
  .cid-v29NHw11nL .navbar.opened {
    height: auto;
  }
  .cid-v29NHw11nL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v29NHxmubQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #036c82;
}
.cid-v29NHxmubQ .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-v29NHxmubQ .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v29NHxmubQ .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-v29NHxmubQ .mbr-text,
.cid-v29NHxmubQ .mbr-section-btn {
  color: #263d5a;
}
.cid-v29NHxmubQ .mbr-section-title {
  color: #263d5a;
}
.cid-v29NHxmubQ H1 {
  text-align: center;
  color: #263d5a;
}
.cid-v29NHxmubQ table {
  color: black;
  text-align: left;
}
.cid-v29NHxmubQ .moje {
  display: flex;
  justify-content: center;
}
.cid-v29NHxmubQ .moje .img-item {
  display: -webkit-flex;
  flex-direction: row;
  justify-content: center;
  width: 50%;
}
.cid-v29NHxmubQ .moje .img-item img {
  width: 50%;
  object-fit: cover;
  border-radius: 30px;
}
.cid-v29NHxmubQ H5 {
  color: #ffffff;
}
.cid-v29NHxmubQ td {
  border: none;
  border-bottom: 1px solid #036c82;
  padding: 2px;
}
.cid-v29NHxmubQ .rasprava {
  background-color: #bbbbbb;
}
.cid-v29NHxmubQ span {
  color: black;
  font-weight: bold;
}
.cid-v29NHxmubQ .javor-1 {
  background-color: #036c82;
  color: white;
  border: none;
  border-radius: 25px;
  width: 20%;
}
.cid-v29NHxmubQ .javor-1:hover,
.cid-v29NHxmubQ .kesten-2:hover {
  opacity: 0.85;
}
.cid-v29NHzdjyI {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-v29NHzdjyI .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v29NHzdjyI .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v29NHzdjyI .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-v29NHzdjyI .row {
  justify-content: center;
  align-items: center;
}
.cid-v29NHzdjyI .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v29NHzdjyI .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-v29NHzdjyI .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v29NHzdjyI .row .foot-menu {
    justify-content: center;
  }
}
.cid-v29NHzdjyI .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v29NHzdjyI .row .row-copirayt p {
  width: 100%;
}
.cid-v29NHzdjyI .mbr-text {
  color: #00e4ff;
  text-align: center;
}
.cid-v29NHzdjyI .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-v29TQydEKr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v29TQydEKr nav.navbar {
  position: fixed;
}
.cid-v29TQydEKr .navbar-nav {
  margin: auto;
}
.cid-v29TQydEKr .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-v29TQydEKr .dropdown-item:hover,
.cid-v29TQydEKr .dropdown-item:focus {
  background: #00e4ff !important;
  color: white !important;
}
.cid-v29TQydEKr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v29TQydEKr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v29TQydEKr .navbar-short,
.cid-v29TQydEKr .opened {
  background: #052033 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-v29TQydEKr .navbar-short .nav-link,
.cid-v29TQydEKr .opened .nav-link,
.cid-v29TQydEKr .navbar-short .navbar-caption,
.cid-v29TQydEKr .opened .navbar-caption,
.cid-v29TQydEKr .navbar-short .mbr-iconfont,
.cid-v29TQydEKr .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-v29TQydEKr .navbar-short .hamburger span,
.cid-v29TQydEKr .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-v29TQydEKr .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-v29TQydEKr .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-v29TQydEKr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v29TQydEKr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v29TQydEKr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v29TQydEKr .container {
  display: flex;
  margin: auto;
}
.cid-v29TQydEKr .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v29TQydEKr .dropdown-menu,
.cid-v29TQydEKr .navbar.opened {
  background: #052033 !important;
}
.cid-v29TQydEKr .nav-item:focus,
.cid-v29TQydEKr .nav-link:focus {
  outline: none;
}
.cid-v29TQydEKr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v29TQydEKr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v29TQydEKr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v29TQydEKr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v29TQydEKr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v29TQydEKr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v29TQydEKr .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #052033;
}
.cid-v29TQydEKr .navbar.opened {
  transition: all 0.3s;
}
.cid-v29TQydEKr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v29TQydEKr .navbar .navbar-logo img {
  width: auto;
}
.cid-v29TQydEKr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v29TQydEKr .navbar.collapsed {
  justify-content: center;
}
.cid-v29TQydEKr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v29TQydEKr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v29TQydEKr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v29TQydEKr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v29TQydEKr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v29TQydEKr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v29TQydEKr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v29TQydEKr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v29TQydEKr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v29TQydEKr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v29TQydEKr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v29TQydEKr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v29TQydEKr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v29TQydEKr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v29TQydEKr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v29TQydEKr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v29TQydEKr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v29TQydEKr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v29TQydEKr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v29TQydEKr .navbar.navbar-short {
  min-height: 60px;
}
.cid-v29TQydEKr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v29TQydEKr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v29TQydEKr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v29TQydEKr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v29TQydEKr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v29TQydEKr .dropdown-item.active,
.cid-v29TQydEKr .dropdown-item:active {
  background-color: transparent;
}
.cid-v29TQydEKr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v29TQydEKr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v29TQydEKr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v29TQydEKr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #052033;
}
.cid-v29TQydEKr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v29TQydEKr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v29TQydEKr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v29TQydEKr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v29TQydEKr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v29TQydEKr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v29TQydEKr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v29TQydEKr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29TQydEKr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29TQydEKr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v29TQydEKr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29TQydEKr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v29TQydEKr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v29TQydEKr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29TQydEKr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v29TQydEKr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v29TQydEKr .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-v29TQydEKr .navbar {
    height: 70px;
  }
  .cid-v29TQydEKr .navbar.opened {
    height: auto;
  }
  .cid-v29TQydEKr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v29TQyx8yK {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #036c82;
}
.cid-v29TQyx8yK .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-v29TQyx8yK .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v29TQyx8yK .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-v29TQyx8yK .mbr-text,
.cid-v29TQyx8yK .mbr-section-btn {
  color: #263d5a;
}
.cid-v29TQyx8yK .mbr-section-title {
  color: #263d5a;
  text-align: center;
}
.cid-v29TQyx8yK .javor-1 {
  background-color: #036c82;
  color: white;
  border: none;
  border-radius: 25px;
}
.cid-v29TQyx8yK .kesten-2 {
  background-color: #FF9800;
  color: white;
  border: none;
}
.cid-v29TQyx8yK .javor-1:hover,
.cid-v29TQyx8yK .kesten-2:hover {
  opacity: 0.85;
}
.cid-v29TQyx8yK H1 {
  color: #263d5a;
}
.cid-v29TQyJf4p {
  padding-top: 9rem;
  padding-bottom: 7rem;
  background-color: #036c82;
}
.cid-v29TQyJf4p .row {
  justify-content: flex-end;
}
.cid-v29TQyJf4p .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  margin-left: 10rem;
  overflow: visible;
  position: relative;
}
@media (max-width: 767px) {
  .cid-v29TQyJf4p .card-wrapper {
    padding: 2rem 0rem;
  }
}
@media (max-width: 992px) {
  .cid-v29TQyJf4p .card-wrapper {
    margin-left: 0rem;
  }
}
.cid-v29TQyJf4p .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-v29TQyJf4p .mbr-section-title {
  color: #263d5a;
}
.cid-v29TQyJf4p .mbr-text {
  color: #6d819b;
}
.cid-v29TQyJf4p .mbr-section-subtitle {
  color: #263d5a;
}
.cid-v29TQyVbE9 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-v29TQyVbE9 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v29TQyVbE9 .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v29TQyVbE9 .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-v29TQyVbE9 .row {
  justify-content: center;
  align-items: center;
}
.cid-v29TQyVbE9 .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v29TQyVbE9 .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-v29TQyVbE9 .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v29TQyVbE9 .row .foot-menu {
    justify-content: center;
  }
}
.cid-v29TQyVbE9 .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v29TQyVbE9 .row .row-copirayt p {
  width: 100%;
}
.cid-v29TQyVbE9 .mbr-text {
  color: #00e4ff;
  text-align: center;
}
.cid-v29TQyVbE9 .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-v29VemhkBk {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v29VemhkBk nav.navbar {
  position: fixed;
}
.cid-v29VemhkBk .navbar-nav {
  margin: auto;
}
.cid-v29VemhkBk .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-v29VemhkBk .dropdown-item:hover,
.cid-v29VemhkBk .dropdown-item:focus {
  background: #00e4ff !important;
  color: white !important;
}
.cid-v29VemhkBk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v29VemhkBk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v29VemhkBk .navbar-short,
.cid-v29VemhkBk .opened {
  background: #052033 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-v29VemhkBk .navbar-short .nav-link,
.cid-v29VemhkBk .opened .nav-link,
.cid-v29VemhkBk .navbar-short .navbar-caption,
.cid-v29VemhkBk .opened .navbar-caption,
.cid-v29VemhkBk .navbar-short .mbr-iconfont,
.cid-v29VemhkBk .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-v29VemhkBk .navbar-short .hamburger span,
.cid-v29VemhkBk .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-v29VemhkBk .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-v29VemhkBk .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-v29VemhkBk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v29VemhkBk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v29VemhkBk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v29VemhkBk .container {
  display: flex;
  margin: auto;
}
.cid-v29VemhkBk .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v29VemhkBk .dropdown-menu,
.cid-v29VemhkBk .navbar.opened {
  background: #052033 !important;
}
.cid-v29VemhkBk .nav-item:focus,
.cid-v29VemhkBk .nav-link:focus {
  outline: none;
}
.cid-v29VemhkBk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v29VemhkBk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v29VemhkBk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v29VemhkBk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v29VemhkBk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v29VemhkBk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v29VemhkBk .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #052033;
}
.cid-v29VemhkBk .navbar.opened {
  transition: all 0.3s;
}
.cid-v29VemhkBk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v29VemhkBk .navbar .navbar-logo img {
  width: auto;
}
.cid-v29VemhkBk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v29VemhkBk .navbar.collapsed {
  justify-content: center;
}
.cid-v29VemhkBk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v29VemhkBk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v29VemhkBk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v29VemhkBk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v29VemhkBk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v29VemhkBk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v29VemhkBk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v29VemhkBk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v29VemhkBk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v29VemhkBk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v29VemhkBk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v29VemhkBk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v29VemhkBk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v29VemhkBk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v29VemhkBk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v29VemhkBk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v29VemhkBk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v29VemhkBk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v29VemhkBk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v29VemhkBk .navbar.navbar-short {
  min-height: 60px;
}
.cid-v29VemhkBk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v29VemhkBk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v29VemhkBk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v29VemhkBk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v29VemhkBk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v29VemhkBk .dropdown-item.active,
.cid-v29VemhkBk .dropdown-item:active {
  background-color: transparent;
}
.cid-v29VemhkBk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v29VemhkBk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v29VemhkBk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v29VemhkBk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #052033;
}
.cid-v29VemhkBk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v29VemhkBk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v29VemhkBk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v29VemhkBk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v29VemhkBk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v29VemhkBk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v29VemhkBk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v29VemhkBk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29VemhkBk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29VemhkBk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v29VemhkBk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29VemhkBk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v29VemhkBk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v29VemhkBk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29VemhkBk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v29VemhkBk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v29VemhkBk .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-v29VemhkBk .navbar {
    height: 70px;
  }
  .cid-v29VemhkBk .navbar.opened {
    height: auto;
  }
  .cid-v29VemhkBk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v29VemASEr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #036c82;
}
.cid-v29VemASEr .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-v29VemASEr .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v29VemASEr .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-v29VemASEr .mbr-text,
.cid-v29VemASEr .mbr-section-btn {
  color: #263d5a;
}
.cid-v29VemASEr .mbr-section-title {
  color: #263d5a;
}
.cid-v29VemASEr H1 {
  text-align: center;
  color: #263d5a;
}
.cid-v29VemASEr table {
  color: black;
  text-align: left;
}
.cid-v29VemASEr .moje {
  display: flex;
  justify-content: center;
}
.cid-v29VemASEr .moje .img-item {
  display: -webkit-flex;
  flex-direction: row;
  justify-content: center;
  width: 50%;
}
.cid-v29VemASEr .moje .img-item img {
  width: 50%;
  object-fit: cover;
  border-radius: 30px;
}
.cid-v29VemASEr H5 {
  color: #ffffff;
}
.cid-v29VemASEr td {
  border: none;
  border-bottom: 1px solid #036c82;
  padding: 2px;
}
.cid-v29VemASEr .rasprava {
  background-color: #bbbbbb;
}
.cid-v29VemASEr span {
  color: black;
  font-weight: bold;
}
.cid-v29VemASEr .header-row {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 60px;
}
.cid-v29VemASEr .title {
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.cid-v29VemASEr .action-button {
  position: absolute;
  right: 0;
  margin-right: 20px;
}
.cid-v29VemASEr .javor-1 {
  background-color: #036c82;
  color: white;
  border: none;
  border-radius: 25px;
  width: 20%;
}
.cid-v29VemASEr .javor-1:hover,
.cid-v29VemASEr .kesten-2:hover {
  opacity: 0.85;
}
.cid-v29Ven0N8O {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-v29Ven0N8O .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v29Ven0N8O .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v29Ven0N8O .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-v29Ven0N8O .row {
  justify-content: center;
  align-items: center;
}
.cid-v29Ven0N8O .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v29Ven0N8O .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-v29Ven0N8O .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v29Ven0N8O .row .foot-menu {
    justify-content: center;
  }
}
.cid-v29Ven0N8O .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v29Ven0N8O .row .row-copirayt p {
  width: 100%;
}
.cid-v29Ven0N8O .mbr-text {
  color: #00e4ff;
  text-align: center;
}
.cid-v29Ven0N8O .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-v29Vn7UtCp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v29Vn7UtCp nav.navbar {
  position: fixed;
}
.cid-v29Vn7UtCp .navbar-nav {
  margin: auto;
}
.cid-v29Vn7UtCp .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-v29Vn7UtCp .dropdown-item:hover,
.cid-v29Vn7UtCp .dropdown-item:focus {
  background: #00e4ff !important;
  color: white !important;
}
.cid-v29Vn7UtCp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v29Vn7UtCp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v29Vn7UtCp .navbar-short,
.cid-v29Vn7UtCp .opened {
  background: #052033 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-v29Vn7UtCp .navbar-short .nav-link,
.cid-v29Vn7UtCp .opened .nav-link,
.cid-v29Vn7UtCp .navbar-short .navbar-caption,
.cid-v29Vn7UtCp .opened .navbar-caption,
.cid-v29Vn7UtCp .navbar-short .mbr-iconfont,
.cid-v29Vn7UtCp .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-v29Vn7UtCp .navbar-short .hamburger span,
.cid-v29Vn7UtCp .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-v29Vn7UtCp .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-v29Vn7UtCp .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-v29Vn7UtCp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v29Vn7UtCp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v29Vn7UtCp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v29Vn7UtCp .container {
  display: flex;
  margin: auto;
}
.cid-v29Vn7UtCp .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v29Vn7UtCp .dropdown-menu,
.cid-v29Vn7UtCp .navbar.opened {
  background: #052033 !important;
}
.cid-v29Vn7UtCp .nav-item:focus,
.cid-v29Vn7UtCp .nav-link:focus {
  outline: none;
}
.cid-v29Vn7UtCp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v29Vn7UtCp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v29Vn7UtCp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v29Vn7UtCp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v29Vn7UtCp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v29Vn7UtCp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v29Vn7UtCp .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #052033;
}
.cid-v29Vn7UtCp .navbar.opened {
  transition: all 0.3s;
}
.cid-v29Vn7UtCp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v29Vn7UtCp .navbar .navbar-logo img {
  width: auto;
}
.cid-v29Vn7UtCp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v29Vn7UtCp .navbar.collapsed {
  justify-content: center;
}
.cid-v29Vn7UtCp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v29Vn7UtCp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v29Vn7UtCp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v29Vn7UtCp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v29Vn7UtCp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v29Vn7UtCp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v29Vn7UtCp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v29Vn7UtCp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v29Vn7UtCp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v29Vn7UtCp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v29Vn7UtCp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v29Vn7UtCp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v29Vn7UtCp .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v29Vn7UtCp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v29Vn7UtCp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v29Vn7UtCp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v29Vn7UtCp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v29Vn7UtCp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v29Vn7UtCp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v29Vn7UtCp .navbar.navbar-short {
  min-height: 60px;
}
.cid-v29Vn7UtCp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v29Vn7UtCp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v29Vn7UtCp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v29Vn7UtCp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v29Vn7UtCp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v29Vn7UtCp .dropdown-item.active,
.cid-v29Vn7UtCp .dropdown-item:active {
  background-color: transparent;
}
.cid-v29Vn7UtCp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v29Vn7UtCp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v29Vn7UtCp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v29Vn7UtCp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #052033;
}
.cid-v29Vn7UtCp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v29Vn7UtCp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v29Vn7UtCp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v29Vn7UtCp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v29Vn7UtCp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v29Vn7UtCp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v29Vn7UtCp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v29Vn7UtCp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29Vn7UtCp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29Vn7UtCp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v29Vn7UtCp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29Vn7UtCp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v29Vn7UtCp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v29Vn7UtCp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29Vn7UtCp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v29Vn7UtCp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v29Vn7UtCp .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-v29Vn7UtCp .navbar {
    height: 70px;
  }
  .cid-v29Vn7UtCp .navbar.opened {
    height: auto;
  }
  .cid-v29Vn7UtCp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v29Vn8r9rt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #036c82;
}
.cid-v29Vn8r9rt .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-v29Vn8r9rt .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v29Vn8r9rt .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-v29Vn8r9rt .mbr-text,
.cid-v29Vn8r9rt .mbr-section-btn {
  color: #263d5a;
}
.cid-v29Vn8r9rt .mbr-section-title {
  color: #263d5a;
}
.cid-v29Vn8r9rt H1 {
  text-align: center;
  color: #263d5a;
}
.cid-v29Vn8r9rt table {
  color: black;
  text-align: left;
}
.cid-v29Vn8r9rt .moje {
  display: flex;
  justify-content: center;
}
.cid-v29Vn8r9rt .moje .img-item {
  display: -webkit-flex;
  flex-direction: row;
  justify-content: center;
  width: 50%;
}
.cid-v29Vn8r9rt .moje .img-item img {
  width: 50%;
  object-fit: cover;
  border-radius: 30px;
}
.cid-v29Vn8r9rt H5 {
  color: #ffffff;
}
.cid-v29Vn8r9rt td {
  border: none;
  border-bottom: 1px solid #036c82;
  padding: 2px;
}
.cid-v29Vn8r9rt .rasprava {
  background-color: #bbbbbb;
}
.cid-v29Vn8r9rt span {
  color: black;
  font-weight: bold;
}
.cid-v29Vn8r9rt .header-row {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 60px;
}
.cid-v29Vn8r9rt .title {
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.cid-v29Vn8r9rt .action-button {
  position: absolute;
  right: 0;
  margin-right: 20px;
}
.cid-v29Vn8r9rt .javor-1 {
  background-color: #036c82;
  color: white;
  border: none;
  border-radius: 25px;
  width: 20%;
}
.cid-v29Vn8r9rt .javor-1:hover,
.cid-v29Vn8r9rt .kesten-2:hover {
  opacity: 0.85;
}
.cid-v29Vn941qp {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-v29Vn941qp .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v29Vn941qp .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v29Vn941qp .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-v29Vn941qp .row {
  justify-content: center;
  align-items: center;
}
.cid-v29Vn941qp .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v29Vn941qp .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-v29Vn941qp .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v29Vn941qp .row .foot-menu {
    justify-content: center;
  }
}
.cid-v29Vn941qp .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v29Vn941qp .row .row-copirayt p {
  width: 100%;
}
.cid-v29Vn941qp .mbr-text {
  color: #00e4ff;
  text-align: center;
}
.cid-v29Vn941qp .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-v29VqGJLer {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v29VqGJLer nav.navbar {
  position: fixed;
}
.cid-v29VqGJLer .navbar-nav {
  margin: auto;
}
.cid-v29VqGJLer .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-v29VqGJLer .dropdown-item:hover,
.cid-v29VqGJLer .dropdown-item:focus {
  background: #00e4ff !important;
  color: white !important;
}
.cid-v29VqGJLer .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v29VqGJLer .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v29VqGJLer .navbar-short,
.cid-v29VqGJLer .opened {
  background: #052033 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-v29VqGJLer .navbar-short .nav-link,
.cid-v29VqGJLer .opened .nav-link,
.cid-v29VqGJLer .navbar-short .navbar-caption,
.cid-v29VqGJLer .opened .navbar-caption,
.cid-v29VqGJLer .navbar-short .mbr-iconfont,
.cid-v29VqGJLer .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-v29VqGJLer .navbar-short .hamburger span,
.cid-v29VqGJLer .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-v29VqGJLer .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-v29VqGJLer .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-v29VqGJLer .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v29VqGJLer .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v29VqGJLer .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v29VqGJLer .container {
  display: flex;
  margin: auto;
}
.cid-v29VqGJLer .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v29VqGJLer .dropdown-menu,
.cid-v29VqGJLer .navbar.opened {
  background: #052033 !important;
}
.cid-v29VqGJLer .nav-item:focus,
.cid-v29VqGJLer .nav-link:focus {
  outline: none;
}
.cid-v29VqGJLer .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v29VqGJLer .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v29VqGJLer .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v29VqGJLer .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v29VqGJLer .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v29VqGJLer .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v29VqGJLer .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #052033;
}
.cid-v29VqGJLer .navbar.opened {
  transition: all 0.3s;
}
.cid-v29VqGJLer .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v29VqGJLer .navbar .navbar-logo img {
  width: auto;
}
.cid-v29VqGJLer .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v29VqGJLer .navbar.collapsed {
  justify-content: center;
}
.cid-v29VqGJLer .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v29VqGJLer .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v29VqGJLer .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v29VqGJLer .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v29VqGJLer .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v29VqGJLer .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v29VqGJLer .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v29VqGJLer .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v29VqGJLer .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v29VqGJLer .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v29VqGJLer .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v29VqGJLer .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v29VqGJLer .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v29VqGJLer .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v29VqGJLer .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v29VqGJLer .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v29VqGJLer .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v29VqGJLer .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v29VqGJLer .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v29VqGJLer .navbar.navbar-short {
  min-height: 60px;
}
.cid-v29VqGJLer .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v29VqGJLer .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v29VqGJLer .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v29VqGJLer .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v29VqGJLer .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v29VqGJLer .dropdown-item.active,
.cid-v29VqGJLer .dropdown-item:active {
  background-color: transparent;
}
.cid-v29VqGJLer .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v29VqGJLer .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v29VqGJLer .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v29VqGJLer .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #052033;
}
.cid-v29VqGJLer .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v29VqGJLer .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v29VqGJLer ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v29VqGJLer .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v29VqGJLer button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v29VqGJLer button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v29VqGJLer button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v29VqGJLer button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29VqGJLer button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29VqGJLer button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v29VqGJLer nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29VqGJLer nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v29VqGJLer nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v29VqGJLer nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29VqGJLer .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v29VqGJLer a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v29VqGJLer .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-v29VqGJLer .navbar {
    height: 70px;
  }
  .cid-v29VqGJLer .navbar.opened {
    height: auto;
  }
  .cid-v29VqGJLer .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v29VqH5Y8R {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #036c82;
}
.cid-v29VqH5Y8R .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-v29VqH5Y8R .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v29VqH5Y8R .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-v29VqH5Y8R .mbr-text,
.cid-v29VqH5Y8R .mbr-section-btn {
  color: #263d5a;
}
.cid-v29VqH5Y8R .mbr-section-title {
  color: #263d5a;
}
.cid-v29VqH5Y8R H1 {
  text-align: center;
  color: #263d5a;
}
.cid-v29VqH5Y8R table {
  color: black;
  text-align: left;
}
.cid-v29VqH5Y8R .moje {
  display: flex;
  justify-content: center;
}
.cid-v29VqH5Y8R .moje .img-item {
  display: -webkit-flex;
  flex-direction: row;
  justify-content: center;
  width: 50%;
}
.cid-v29VqH5Y8R .moje .img-item img {
  width: 50%;
  object-fit: cover;
  border-radius: 30px;
}
.cid-v29VqH5Y8R H5 {
  color: #ffffff;
}
.cid-v29VqH5Y8R td {
  border: none;
  border-bottom: 1px solid #036c82;
  padding: 2px;
}
.cid-v29VqH5Y8R .rasprava {
  background-color: #bbbbbb;
}
.cid-v29VqH5Y8R span {
  color: black;
  font-weight: bold;
}
.cid-v29VqH5Y8R .header-row {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 60px;
}
.cid-v29VqH5Y8R .title {
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.cid-v29VqH5Y8R .action-button {
  position: absolute;
  right: 0;
  margin-right: 20px;
}
.cid-v29VqH5Y8R .javor-1 {
  background-color: #036c82;
  color: white;
  border: none;
  border-radius: 25px;
  width: 20%;
}
.cid-v29VqH5Y8R .javor-1:hover,
.cid-v29VqH5Y8R .kesten-2:hover {
  opacity: 0.85;
}
.cid-v29VqHu6VR {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-v29VqHu6VR .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v29VqHu6VR .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v29VqHu6VR .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-v29VqHu6VR .row {
  justify-content: center;
  align-items: center;
}
.cid-v29VqHu6VR .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v29VqHu6VR .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-v29VqHu6VR .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v29VqHu6VR .row .foot-menu {
    justify-content: center;
  }
}
.cid-v29VqHu6VR .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v29VqHu6VR .row .row-copirayt p {
  width: 100%;
}
.cid-v29VqHu6VR .mbr-text {
  color: #00e4ff;
  text-align: center;
}
.cid-v29VqHu6VR .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
.cid-v29VoSDv3x {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v29VoSDv3x nav.navbar {
  position: fixed;
}
.cid-v29VoSDv3x .navbar-nav {
  margin: auto;
}
.cid-v29VoSDv3x .dropdown-item {
  color: #ffffff !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-v29VoSDv3x .dropdown-item:hover,
.cid-v29VoSDv3x .dropdown-item:focus {
  background: #00e4ff !important;
  color: white !important;
}
.cid-v29VoSDv3x .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v29VoSDv3x .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v29VoSDv3x .navbar-short,
.cid-v29VoSDv3x .opened {
  background: #052033 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-v29VoSDv3x .navbar-short .nav-link,
.cid-v29VoSDv3x .opened .nav-link,
.cid-v29VoSDv3x .navbar-short .navbar-caption,
.cid-v29VoSDv3x .opened .navbar-caption,
.cid-v29VoSDv3x .navbar-short .mbr-iconfont,
.cid-v29VoSDv3x .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-v29VoSDv3x .navbar-short .hamburger span,
.cid-v29VoSDv3x .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-v29VoSDv3x .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-v29VoSDv3x .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-v29VoSDv3x .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v29VoSDv3x .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v29VoSDv3x .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v29VoSDv3x .container {
  display: flex;
  margin: auto;
}
.cid-v29VoSDv3x .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v29VoSDv3x .dropdown-menu,
.cid-v29VoSDv3x .navbar.opened {
  background: #052033 !important;
}
.cid-v29VoSDv3x .nav-item:focus,
.cid-v29VoSDv3x .nav-link:focus {
  outline: none;
}
.cid-v29VoSDv3x .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v29VoSDv3x .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v29VoSDv3x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v29VoSDv3x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v29VoSDv3x .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v29VoSDv3x .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v29VoSDv3x .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #052033;
}
.cid-v29VoSDv3x .navbar.opened {
  transition: all 0.3s;
}
.cid-v29VoSDv3x .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v29VoSDv3x .navbar .navbar-logo img {
  width: auto;
}
.cid-v29VoSDv3x .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v29VoSDv3x .navbar.collapsed {
  justify-content: center;
}
.cid-v29VoSDv3x .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v29VoSDv3x .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v29VoSDv3x .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v29VoSDv3x .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v29VoSDv3x .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v29VoSDv3x .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v29VoSDv3x .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v29VoSDv3x .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v29VoSDv3x .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v29VoSDv3x .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v29VoSDv3x .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v29VoSDv3x .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v29VoSDv3x .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v29VoSDv3x .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v29VoSDv3x .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v29VoSDv3x .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v29VoSDv3x .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v29VoSDv3x .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v29VoSDv3x .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v29VoSDv3x .navbar.navbar-short {
  min-height: 60px;
}
.cid-v29VoSDv3x .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v29VoSDv3x .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v29VoSDv3x .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v29VoSDv3x .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v29VoSDv3x .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v29VoSDv3x .dropdown-item.active,
.cid-v29VoSDv3x .dropdown-item:active {
  background-color: transparent;
}
.cid-v29VoSDv3x .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v29VoSDv3x .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v29VoSDv3x .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v29VoSDv3x .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #052033;
}
.cid-v29VoSDv3x .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v29VoSDv3x .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v29VoSDv3x ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v29VoSDv3x .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v29VoSDv3x button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v29VoSDv3x button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v29VoSDv3x button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v29VoSDv3x button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29VoSDv3x button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29VoSDv3x button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v29VoSDv3x nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29VoSDv3x nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v29VoSDv3x nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v29VoSDv3x nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29VoSDv3x .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v29VoSDv3x a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v29VoSDv3x .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-v29VoSDv3x .navbar {
    height: 70px;
  }
  .cid-v29VoSDv3x .navbar.opened {
    height: auto;
  }
  .cid-v29VoSDv3x .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v29VoSXXCf {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #036c82;
}
.cid-v29VoSXXCf .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-v29VoSXXCf .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v29VoSXXCf .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-v29VoSXXCf .mbr-text,
.cid-v29VoSXXCf .mbr-section-btn {
  color: #263d5a;
}
.cid-v29VoSXXCf .mbr-section-title {
  color: #263d5a;
}
.cid-v29VoSXXCf H1 {
  text-align: center;
  color: #263d5a;
}
.cid-v29VoSXXCf table {
  color: black;
  text-align: left;
}
.cid-v29VoSXXCf .moje {
  display: flex;
  justify-content: center;
}
.cid-v29VoSXXCf .moje .img-item {
  display: -webkit-flex;
  flex-direction: row;
  justify-content: center;
  width: 50%;
}
.cid-v29VoSXXCf .moje .img-item img {
  width: 50%;
  object-fit: cover;
  border-radius: 30px;
}
.cid-v29VoSXXCf H5 {
  color: #ffffff;
}
.cid-v29VoSXXCf td {
  border: none;
  border-bottom: 1px solid #036c82;
  padding: 2px;
}
.cid-v29VoSXXCf .rasprava {
  background-color: #bbbbbb;
}
.cid-v29VoSXXCf span {
  color: black;
  font-weight: bold;
}
.cid-v29VoSXXCf .header-row {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 60px;
}
.cid-v29VoSXXCf .title {
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.cid-v29VoSXXCf .action-button {
  position: absolute;
  right: 0;
  margin-right: 20px;
}
.cid-v29VoSXXCf .javor-1 {
  background-color: #036c82;
  color: white;
  border: none;
  border-radius: 25px;
  width: 20%;
}
.cid-v29VoSXXCf .javor-1:hover,
.cid-v29VoSXXCf .kesten-2:hover {
  opacity: 0.85;
}
.cid-v29VoTlKWF {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #036c82;
}
.cid-v29VoTlKWF .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v29VoTlKWF .social-row {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v29VoTlKWF .align-left {
    text-align: center;
    padding-bottom: 1rem;
  }
}
.cid-v29VoTlKWF .row {
  justify-content: center;
  align-items: center;
}
.cid-v29VoTlKWF .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v29VoTlKWF .row .foot-menu li {
  padding-left: 1.5rem;
}
.cid-v29VoTlKWF .row .foot-menu li a {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v29VoTlKWF .row .foot-menu {
    justify-content: center;
  }
}
.cid-v29VoTlKWF .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v29VoTlKWF .row .row-copirayt p {
  width: 100%;
}
.cid-v29VoTlKWF .mbr-text {
  color: #00e4ff;
  text-align: center;
}
.cid-v29VoTlKWF .foot-menu-item {
  color: #263d5a;
  text-align: right;
}
