.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #4caf50 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #2362f1 !important;
  border-color: #2362f1 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #608df1!important;
  border-color: #608df1 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2362f1 !important;
  border-color: #2362f1!important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #a81af1 !important;
  border-color: #a81af1 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #cd82f4 !important;
  border-color: #cd82f4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #6965e6;
  color: #6965e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2822d2 !important;
  background-color: transparent!important;
  border-color: #2822d2 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6965e6 !important;
  border-color: #6965e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  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: #148cca !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: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  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: #ffd10a !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: #ff9966;
  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: #ff5f0f !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: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #0f7ae2 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !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: #3f8c43 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6965e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6965e6;
  border-color: #6965e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6965e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.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: 'Roboto Condensed', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #6965e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6965e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6965e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6965e6;
}
.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: #6965e6;
  border-bottom-color: #6965e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6965e6 !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: #ff6666 !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='%236965e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-te0CYz4U0Z .navbar-dropdown {
  position: relative !important;
}
.cid-te0CYz4U0Z .navbar-dropdown {
  position: absolute !important;
}
.cid-te0CYz4U0Z .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-te0CYz4U0Z .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-te0CYz4U0Z .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-te0CYz4U0Z .dropdown-item:hover,
.cid-te0CYz4U0Z .dropdown-item:focus {
  background: #6965e6 !important;
  color: white !important;
}
.cid-te0CYz4U0Z .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-te0CYz4U0Z .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-te0CYz4U0Z .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-te0CYz4U0Z .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-te0CYz4U0Z .nav-link {
  position: relative;
}
.cid-te0CYz4U0Z .container {
  display: flex;
  margin: auto;
}
.cid-te0CYz4U0Z .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-te0CYz4U0Z .dropdown-menu,
.cid-te0CYz4U0Z .navbar.opened {
  background: #ffffff !important;
}
.cid-te0CYz4U0Z .nav-item:focus,
.cid-te0CYz4U0Z .nav-link:focus {
  outline: none;
}
.cid-te0CYz4U0Z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-te0CYz4U0Z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-te0CYz4U0Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-te0CYz4U0Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-te0CYz4U0Z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-te0CYz4U0Z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-te0CYz4U0Z .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-te0CYz4U0Z .navbar.opened {
  transition: all 0.3s;
}
.cid-te0CYz4U0Z .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-te0CYz4U0Z .navbar .navbar-logo img {
  width: auto;
}
.cid-te0CYz4U0Z .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-te0CYz4U0Z .navbar.collapsed {
  justify-content: center;
}
.cid-te0CYz4U0Z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-te0CYz4U0Z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-te0CYz4U0Z .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-te0CYz4U0Z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-te0CYz4U0Z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-te0CYz4U0Z .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-te0CYz4U0Z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-te0CYz4U0Z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-te0CYz4U0Z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-te0CYz4U0Z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-te0CYz4U0Z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-te0CYz4U0Z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-te0CYz4U0Z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-te0CYz4U0Z .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-te0CYz4U0Z .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-te0CYz4U0Z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-te0CYz4U0Z .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-te0CYz4U0Z .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-te0CYz4U0Z .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-te0CYz4U0Z .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-te0CYz4U0Z .navbar.navbar-short {
  min-height: 60px;
}
.cid-te0CYz4U0Z .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-te0CYz4U0Z .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-te0CYz4U0Z .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-te0CYz4U0Z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-te0CYz4U0Z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-te0CYz4U0Z .dropdown-item.active,
.cid-te0CYz4U0Z .dropdown-item:active {
  background-color: transparent;
}
.cid-te0CYz4U0Z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-te0CYz4U0Z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-te0CYz4U0Z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-te0CYz4U0Z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-te0CYz4U0Z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-te0CYz4U0Z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-te0CYz4U0Z ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-te0CYz4U0Z .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-te0CYz4U0Z button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-te0CYz4U0Z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-te0CYz4U0Z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-te0CYz4U0Z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-te0CYz4U0Z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-te0CYz4U0Z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-te0CYz4U0Z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-te0CYz4U0Z nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-te0CYz4U0Z nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-te0CYz4U0Z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-te0CYz4U0Z .navbar-dropdown {
  padding: 0 1rem;
}
.cid-te0CYz4U0Z a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-te0CYz4U0Z .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-te0CYz4U0Z .navbar {
    height: 70px;
  }
  .cid-te0CYz4U0Z .navbar.opened {
    height: auto;
  }
  .cid-te0CYz4U0Z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-te0CYzJuMY {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../images/dopomoga-2000x1600.jpg");
}
.cid-te0CYzJuMY .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-te0CYzJuMY .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-te0CYzJuMY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-te0CYzJuMY .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-te0CYzJuMY .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-te0CYzJuMY .mbr-text,
.cid-te0CYzJuMY .mbr-section-btn {
  color: #fafafa;
}
.cid-te0CYzJuMY .mbr-section-title {
  color: #000000;
}
.cid-te0CYAs8Sx {
  padding-top: 8rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
@media (min-width: 1500px) {
  .cid-te0CYAs8Sx .container {
    max-width: 1400px;
  }
}
.cid-te0CYAs8Sx .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #4479d9;
  margin-bottom: 2rem;
}
.cid-te0CYAs8Sx .card-wrapper {
  margin-top: 3rem;
}
.cid-te0CYAs8Sx .row {
  justify-content: center;
}
.cid-te0CYAs8Sx .card-title,
.cid-te0CYAs8Sx .iconfont-wrapper {
  color: #000000;
}
.cid-te0CYAs8Sx .card-text {
  color: #000000;
}
.cid-te0CYAs8Sx .mbr-section-title {
  color: #000000;
}
.cid-te0CYAZrvZ {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-te0CYAZrvZ .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-te0CYAZrvZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-te0CYAZrvZ .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-te0CYAZrvZ .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-te0CYBzhkM {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-te0CYBzhkM img,
.cid-te0CYBzhkM .item-img {
  width: 100%;
}
.cid-te0CYBzhkM .item:focus,
.cid-te0CYBzhkM span:focus {
  outline: none;
}
.cid-te0CYBzhkM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-te0CYBzhkM .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-te0CYBzhkM .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-te0CYBzhkM .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-te0CYBzhkM .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-te0CYBzhkM .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-te0CYBzhkM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-te0CYBzhkM .mbr-section-title {
  color: #000000;
}
.cid-te0CYBzhkM .mbr-text,
.cid-te0CYBzhkM .mbr-section-btn {
  text-align: left;
}
.cid-te0CYBzhkM .item-title {
  text-align: left;
}
.cid-te0CYBzhkM .item-subtitle {
  text-align: left;
}
.cid-te0CYC4GSh {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-te0CYCunO0 {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-te0CYD4KWS {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background: #fafafa;
}
.cid-te0CYD4KWS .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-te0CYD4KWS .plan-body {
  padding-bottom: 2rem;
}
.cid-te0CYD4KWS .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-te0CYD4KWS .price {
  color: #4479d9;
}
.cid-te0CYD4KWS .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-te0CYD4KWS .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-te0CYD4KWS .plan .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.cid-te0CYD4KWS .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-te0CYD4KWS .plan {
    margin-bottom: 2rem;
  }
}
.cid-te0CYEajTT {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background: #ffffff;
}
.cid-te0CYEajTT .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-te0CYEajTT .team-card:hover {
  transform: translateY(-10px);
}
.cid-te0CYEajTT .card-wrap {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-te0CYEajTT .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-te0CYEajTT .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-te0CYEajTT .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-te0CYEajTT .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-te0CYEajTT .social-row {
  text-align: center;
}
.cid-te0CYEajTT .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-te0CYEajTT .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-te0CYEajTT .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-te0CYEajTT .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-te0CYEajTT .mbr-section-title {
  color: #000000;
}
.cid-te0CYEajTT .mbr-section-title1 {
  color: #000000;
}
.cid-te0CYF0gbr {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-te0CYF0gbr .media-container-row {
  justify-content: space-between;
}
.cid-te0CYF0gbr .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-te0CYF0gbr .text-content {
    max-width: none;
  }
}
.cid-te0CYF0gbr .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #4479d9;
  border: 2px solid #4479d9;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-te0CYF0gbr .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-te0CYF0gbr .mbr-iconfont-social:hover {
  background-color: #4479d9;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-te0CYF0gbr .icons {
    justify-content: center !important;
  }
  .cid-te0CYF0gbr .text-content * {
    text-align: center;
  }
}
.cid-te0CYF0gbr .mbr-section-title {
  color: #353535;
}
.cid-te0CYF0gbr P {
  color: #000000;
}
.cid-te0CYFV9c6 {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-te0CYFV9c6 .item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.cid-te0CYFV9c6 .item .icon-wrap {
  text-align: center;
}
.cid-te0CYFV9c6 .item span {
  font-size: 2rem;
  color: #ffffff;
  line-height: 60px;
}
.cid-te0CYFV9c6 .item::before {
  content: "\e96b";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: -15px;
  top: 12%;
  color: #4479d9;
}
.cid-te0CYFV9c6 .item.first:before {
  display: none;
}
.cid-te0CYFV9c6 .item.five:before {
  display: none;
}
.cid-te0CYFV9c6 .icon-box {
  background: #4479d9;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
}
.cid-te0CYFV9c6 .text-box {
  margin-top: 1rem;
  text-align: center;
}
.cid-te0CYFV9c6 .mbr-iconfont {
  color: #6965e6 !important;
  position: absolute;
  top: 50%;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-te0CYFV9c6 .item:before {
    display: none;
  }
  .cid-te0CYFV9c6 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-te0CYGBW5u {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-te0CYGBW5u .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-te0CYGBW5u form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-te0CYGBW5u form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-te0CYGBW5u form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-te0CYGBW5u .mbr-section-title {
  color: #000000;
}
.cid-te0CYGBW5u .mbr-section-subtitle {
  color: #000000;
}
.cid-te0CYH9Qp7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-te0CYH9Qp7 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-te0CYH9Qp7 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-te0CYH9Qp7 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-te0CYH9Qp7 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-te0CYH9Qp7 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6965e6;
}
.cid-te0CYHDAjB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-te0CYHDAjB .google-map {
  height: 30rem;
  position: relative;
}
.cid-te0CYHDAjB .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-te0CYHDAjB .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-te0CYHDAjB .google-map[data-state] {
  background: #e9e5dc;
}
.cid-te0CYHDAjB .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-te0CYIeF6z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-te0CYIeF6z .row-links {
  width: 100%;
  justify-content: center;
}
.cid-te0CYIeF6z .social-row {
  width: 100%;
  justify-content: center;
}
.cid-te0CYIeF6z .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-te0CYIeF6z .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-te0CYIeF6z .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-te0CYIeF6z .row .foot-menu li p {
  margin: 0;
}
.cid-te0CYIeF6z .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-te0CYIeF6z .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-te0CYIeF6z .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-te0CYIeF6z .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-te0CYIeF6z .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-te0CYIeF6z .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-te0CYIeF6z .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-te0CYIeF6z .row .row-copirayt p {
  width: 100%;
}
.cid-te0CYIOXZN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
@media (min-width: 991px) {
  .cid-te0CYIOXZN .container-fluid {
    padding-left: 0;
  }
}
.cid-te0CYIOXZN .mbr-text,
.cid-te0CYIOXZN .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-te0CYIOXZN .mbr-text,
  .cid-te0CYIOXZN .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-te0CYIOXZN .mbr-text,
  .cid-te0CYIOXZN .mbr-section-title {
    text-align: center;
  }
}
.cid-te0CYIOXZN a.btn {
  height: 100%;
  margin: 0;
}
.cid-te0CYIOXZN .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-te0CYIOXZN .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-te0CYIOXZN .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-te0CYIOXZN .justify-content-center {
  align-items: center;
}
.cid-te0CYJhf3G {
  background-color: #fafafa;
}
.cid-te0CYJhf3G .mbr-text,
.cid-te0CYJhf3G .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-te0CYJhf3G .mbr-text,
  .cid-te0CYJhf3G .mbr-section-title {
    text-align: center;
  }
}
.cid-te0CYJhf3G a.btn {
  height: 100%;
  margin: 0;
}
.cid-te0CYJhf3G .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-te0CYJhf3G .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-te0CYJhf3G .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-te0CYJhf3G .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-te0CYJhf3G .justify-content-center {
  align-items: center;
}
.cid-te0CYJMgw9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-te0CYJMgw9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-te0CYJMgw9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-te0CYJMgw9 .mbr-text,
.cid-te0CYJMgw9 .mbr-section-btn {
  color: #232323;
}
.cid-te0CYJMgw9 .btn {
  width: 100%;
}
.cid-te0CYJMgw9 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-te0CYJMgw9 H1 {
  text-align: center;
}
.cid-te0CYKiIqP {
  background-image: url("../../images/background2.jpg");
}
.cid-te0CYKiIqP .mbr-fallback-image.disabled {
  display: none;
}
.cid-te0CYKiIqP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-te0CYKiIqP .mbr-text,
.cid-te0CYKiIqP .mbr-section-btn {
  color: #232323;
}
.cid-te0CYKiIqP .btn {
  width: 100%;
}
.cid-te0CYKiIqP .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-te0CYKMXOO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-te0CYKMXOO .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 992px) {
  .cid-te0CYKMXOO form {
    width: 50%;
  }
}
.cid-te0CYKMXOO form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-te0CYKMXOO form .mbr-section-btn .btn {
  width: 100%;
}
.cid-tfgjCOjbBN {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tfgjCOjbBN .showAlerts {
  display: block !important;
}
.cid-tfgjCOjbBN .rowflexrev {
  display: -webkit-flex;
}
.cid-tfgjCOjbBN .title {
  margin-bottom: 2rem;
}
.cid-tfgjCOjbBN .mbr-section-subtitle {
  color: #767676;
}
.cid-tfgjCOjbBN textarea.form-control {
  min-height: 188px;
}
.cid-tfgjCOjbBN LABEL {
  color: #232323;
  display: initial;
}
.cid-tfgjCOjbBN .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tfgjCOjbBN .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-tfgjCOjbBN .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tfgjCOjbBN .mbr-section-gdpr {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tfgjCOjbBN .alert {
  margin-bottom: 0;
}
.cid-tfgjCOjbBN .alert-success {
  background-color: #70c770;
}
.cid-tfgjCOjbBN .alert-danger {
  background-color: #ff4a52;
}
.cid-tfgjCOjbBN .btn {
  display: inline-flex;
}
.cid-tfgjCOjbBN .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-tfgjCOjbBN .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-tfgjD5Yfll {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tfgjD5Yfll .showAlerts {
  display: block !important;
}
.cid-tfgjD5Yfll .rowflexrev {
  display: -webkit-flex;
}
.cid-tfgjD5Yfll .title {
  margin-bottom: 2rem;
}
.cid-tfgjD5Yfll .mbr-section-subtitle {
  color: #767676;
}
.cid-tfgjD5Yfll textarea.form-control {
  min-height: 188px;
}
.cid-tfgjD5Yfll LABEL {
  color: #232323;
  display: initial;
}
.cid-tfgjD5Yfll .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tfgjD5Yfll .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-tfgjD5Yfll .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tfgjD5Yfll .mbr-section-gdpr {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-tfgjD5Yfll .alert {
  margin-bottom: 0;
}
.cid-tfgjD5Yfll .alert-success {
  background-color: #70c770;
}
.cid-tfgjD5Yfll .alert-danger {
  background-color: #ff4a52;
}
.cid-tfgjD5Yfll .btn {
  display: inline-flex;
}
.cid-tfgjD5Yfll .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-tfgjD5Yfll .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-tfgjELDcj0 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tfgjELDcj0 .showAlerts {
  display: block !important;
}
.cid-tfgjELDcj0 .mbr-section-subtitle {
  color: #767676;
}
.cid-tfgjELDcj0 .form-control {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.cid-tfgjELDcj0 .input-group-btn .btn {
  margin: 0 !important;
}
.cid-tfgjELDcj0 a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-tfgjELDcj0 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
@media (max-width: 768px) {
  .cid-tfgjELDcj0 .mbr-form .row {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tfgjELDcj0 .form-group,
  .cid-tfgjELDcj0 .input-group-btn,
  .cid-tfgjELDcj0 .input-group-btn .btn {
    max-width: 300px;
    width: 100%;
  }
  .cid-tfgjELDcj0 .rcpContainer {
    margin-top: 1rem !important;
  }
}
.cid-tfgjELDcj0 .mbr-section-terms {
  text-align: center;
  margin-bottom: 0px;
}
.cid-tfgjELDcj0 .alert {
  margin-bottom: 0;
}
.cid-tfgjELDcj0 .alert-success {
  background-color: #70c770;
}
.cid-tfgjELDcj0 .alert-danger {
  background-color: #ff4a52;
}
.cid-tfgjELDcj0 .rcpContainer {
  width: 304px;
  margin: 0 auto;
}
.cid-tfgjELDcj0 .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-tfgjELDcj0 .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-te2uLBAr4r .navbar-dropdown {
  position: relative !important;
}
.cid-te2uLBAr4r .navbar-dropdown {
  position: absolute !important;
}
.cid-te2uLBAr4r .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-te2uLBAr4r .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-te2uLBAr4r .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-te2uLBAr4r .dropdown-item:hover,
.cid-te2uLBAr4r .dropdown-item:focus {
  background: #6965e6 !important;
  color: white !important;
}
.cid-te2uLBAr4r .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-te2uLBAr4r .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-te2uLBAr4r .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-te2uLBAr4r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-te2uLBAr4r .nav-link {
  position: relative;
}
.cid-te2uLBAr4r .container {
  display: flex;
  margin: auto;
}
.cid-te2uLBAr4r .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-te2uLBAr4r .dropdown-menu,
.cid-te2uLBAr4r .navbar.opened {
  background: #ffffff !important;
}
.cid-te2uLBAr4r .nav-item:focus,
.cid-te2uLBAr4r .nav-link:focus {
  outline: none;
}
.cid-te2uLBAr4r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-te2uLBAr4r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-te2uLBAr4r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-te2uLBAr4r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-te2uLBAr4r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-te2uLBAr4r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-te2uLBAr4r .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-te2uLBAr4r .navbar.opened {
  transition: all 0.3s;
}
.cid-te2uLBAr4r .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-te2uLBAr4r .navbar .navbar-logo img {
  width: auto;
}
.cid-te2uLBAr4r .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-te2uLBAr4r .navbar.collapsed {
  justify-content: center;
}
.cid-te2uLBAr4r .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-te2uLBAr4r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-te2uLBAr4r .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-te2uLBAr4r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-te2uLBAr4r .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-te2uLBAr4r .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-te2uLBAr4r .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-te2uLBAr4r .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-te2uLBAr4r .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-te2uLBAr4r .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-te2uLBAr4r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-te2uLBAr4r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-te2uLBAr4r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-te2uLBAr4r .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-te2uLBAr4r .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-te2uLBAr4r .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-te2uLBAr4r .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-te2uLBAr4r .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-te2uLBAr4r .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-te2uLBAr4r .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-te2uLBAr4r .navbar.navbar-short {
  min-height: 60px;
}
.cid-te2uLBAr4r .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-te2uLBAr4r .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-te2uLBAr4r .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-te2uLBAr4r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-te2uLBAr4r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-te2uLBAr4r .dropdown-item.active,
.cid-te2uLBAr4r .dropdown-item:active {
  background-color: transparent;
}
.cid-te2uLBAr4r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-te2uLBAr4r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-te2uLBAr4r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-te2uLBAr4r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-te2uLBAr4r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-te2uLBAr4r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-te2uLBAr4r ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-te2uLBAr4r .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-te2uLBAr4r button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-te2uLBAr4r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-te2uLBAr4r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-te2uLBAr4r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-te2uLBAr4r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-te2uLBAr4r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-te2uLBAr4r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-te2uLBAr4r nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-te2uLBAr4r nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-te2uLBAr4r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-te2uLBAr4r .navbar-dropdown {
  padding: 0 1rem;
}
.cid-te2uLBAr4r a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-te2uLBAr4r .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-te2uLBAr4r .navbar {
    height: 70px;
  }
  .cid-te2uLBAr4r .navbar.opened {
    height: auto;
  }
  .cid-te2uLBAr4r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-te2uLBXIpO {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../images/dopomoga-2000x1600.jpg");
}
.cid-te2uLBXIpO .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-te2uLBXIpO .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-te2uLBXIpO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-te2uLBXIpO .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-te2uLBXIpO .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-te2uLBXIpO .mbr-text,
.cid-te2uLBXIpO .mbr-section-btn {
  color: #fafafa;
}
.cid-te2uLBXIpO .mbr-section-title {
  color: #000000;
}
.cid-te2uLChPDD {
  padding-top: 8rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
@media (min-width: 1500px) {
  .cid-te2uLChPDD .container {
    max-width: 1400px;
  }
}
.cid-te2uLChPDD .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #4479d9;
  margin-bottom: 2rem;
}
.cid-te2uLChPDD .card-wrapper {
  margin-top: 3rem;
}
.cid-te2uLChPDD .row {
  justify-content: center;
}
.cid-te2uLChPDD .card-title,
.cid-te2uLChPDD .iconfont-wrapper {
  color: #000000;
}
.cid-te2uLChPDD .card-text {
  color: #000000;
}
.cid-te2uLChPDD .mbr-section-title {
  color: #000000;
}
.cid-te2uLCF3fu {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-te2uLCF3fu .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-te2uLCF3fu .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-te2uLCF3fu .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-te2uLCF3fu .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-te2uLCWRU7 {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-te2uLCWRU7 img,
.cid-te2uLCWRU7 .item-img {
  width: 100%;
}
.cid-te2uLCWRU7 .item:focus,
.cid-te2uLCWRU7 span:focus {
  outline: none;
}
.cid-te2uLCWRU7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-te2uLCWRU7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-te2uLCWRU7 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-te2uLCWRU7 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-te2uLCWRU7 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-te2uLCWRU7 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-te2uLCWRU7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-te2uLCWRU7 .mbr-section-title {
  color: #000000;
}
.cid-te2uLCWRU7 .mbr-text,
.cid-te2uLCWRU7 .mbr-section-btn {
  text-align: left;
}
.cid-te2uLCWRU7 .item-title {
  text-align: left;
}
.cid-te2uLCWRU7 .item-subtitle {
  text-align: left;
}
.cid-te2uLDq1aU {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-te2uLDFQiJ {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-te2uLDWtLo {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background: #fafafa;
}
.cid-te2uLDWtLo .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-te2uLDWtLo .plan-body {
  padding-bottom: 2rem;
}
.cid-te2uLDWtLo .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-te2uLDWtLo .price {
  color: #4479d9;
}
.cid-te2uLDWtLo .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-te2uLDWtLo .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-te2uLDWtLo .plan .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.cid-te2uLDWtLo .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-te2uLDWtLo .plan {
    margin-bottom: 2rem;
  }
}
.cid-te2uLEpPqY {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background: #ffffff;
}
.cid-te2uLEpPqY .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-te2uLEpPqY .team-card:hover {
  transform: translateY(-10px);
}
.cid-te2uLEpPqY .card-wrap {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-te2uLEpPqY .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-te2uLEpPqY .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-te2uLEpPqY .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-te2uLEpPqY .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-te2uLEpPqY .social-row {
  text-align: center;
}
.cid-te2uLEpPqY .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-te2uLEpPqY .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-te2uLEpPqY .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-te2uLEpPqY .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-te2uLEpPqY .mbr-section-title {
  color: #000000;
}
.cid-te2uLEpPqY .mbr-section-title1 {
  color: #000000;
}
.cid-te2uLFf1Db {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-te2uLFf1Db .media-container-row {
  justify-content: space-between;
}
.cid-te2uLFf1Db .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-te2uLFf1Db .text-content {
    max-width: none;
  }
}
.cid-te2uLFf1Db .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #4479d9;
  border: 2px solid #4479d9;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-te2uLFf1Db .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-te2uLFf1Db .mbr-iconfont-social:hover {
  background-color: #4479d9;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-te2uLFf1Db .icons {
    justify-content: center !important;
  }
  .cid-te2uLFf1Db .text-content * {
    text-align: center;
  }
}
.cid-te2uLFf1Db .mbr-section-title {
  color: #353535;
}
.cid-te2uLFf1Db P {
  color: #000000;
}
.cid-te2uLFELoX {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-te2uLFELoX .item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.cid-te2uLFELoX .item .icon-wrap {
  text-align: center;
}
.cid-te2uLFELoX .item span {
  font-size: 2rem;
  color: #ffffff;
  line-height: 60px;
}
.cid-te2uLFELoX .item::before {
  content: "\e96b";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: -15px;
  top: 12%;
  color: #4479d9;
}
.cid-te2uLFELoX .item.first:before {
  display: none;
}
.cid-te2uLFELoX .item.five:before {
  display: none;
}
.cid-te2uLFELoX .icon-box {
  background: #4479d9;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
}
.cid-te2uLFELoX .text-box {
  margin-top: 1rem;
  text-align: center;
}
.cid-te2uLFELoX .mbr-iconfont {
  color: #6965e6 !important;
  position: absolute;
  top: 50%;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-te2uLFELoX .item:before {
    display: none;
  }
  .cid-te2uLFELoX .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-te2uLGewnN {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-te2uLGewnN .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-te2uLGewnN form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-te2uLGewnN form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-te2uLGewnN form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-te2uLGewnN .mbr-section-title {
  color: #000000;
}
.cid-te2uLGewnN .mbr-section-subtitle {
  color: #000000;
}
.cid-te2uLGyXsN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-te2uLGyXsN .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-te2uLGyXsN .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-te2uLGyXsN .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-te2uLGyXsN .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-te2uLGyXsN .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6965e6;
}
.cid-te2uLH7GC9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-te2uLH7GC9 .google-map {
  height: 30rem;
  position: relative;
}
.cid-te2uLH7GC9 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-te2uLH7GC9 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-te2uLH7GC9 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-te2uLH7GC9 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-te2uLHVMqD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-te2uLHVMqD .row-links {
  width: 100%;
  justify-content: center;
}
.cid-te2uLHVMqD .social-row {
  width: 100%;
  justify-content: center;
}
.cid-te2uLHVMqD .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-te2uLHVMqD .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-te2uLHVMqD .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-te2uLHVMqD .row .foot-menu li p {
  margin: 0;
}
.cid-te2uLHVMqD .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-te2uLHVMqD .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-te2uLHVMqD .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-te2uLHVMqD .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-te2uLHVMqD .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-te2uLHVMqD .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-te2uLHVMqD .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-te2uLHVMqD .row .row-copirayt p {
  width: 100%;
}
.cid-te2uLIrBOR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
@media (min-width: 991px) {
  .cid-te2uLIrBOR .container-fluid {
    padding-left: 0;
  }
}
.cid-te2uLIrBOR .mbr-text,
.cid-te2uLIrBOR .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-te2uLIrBOR .mbr-text,
  .cid-te2uLIrBOR .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-te2uLIrBOR .mbr-text,
  .cid-te2uLIrBOR .mbr-section-title {
    text-align: center;
  }
}
.cid-te2uLIrBOR a.btn {
  height: 100%;
  margin: 0;
}
.cid-te2uLIrBOR .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-te2uLIrBOR .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-te2uLIrBOR .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-te2uLIrBOR .justify-content-center {
  align-items: center;
}
.cid-te2uLIMA2s {
  background-color: #fafafa;
}
.cid-te2uLIMA2s .mbr-text,
.cid-te2uLIMA2s .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-te2uLIMA2s .mbr-text,
  .cid-te2uLIMA2s .mbr-section-title {
    text-align: center;
  }
}
.cid-te2uLIMA2s a.btn {
  height: 100%;
  margin: 0;
}
.cid-te2uLIMA2s .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-te2uLIMA2s .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-te2uLIMA2s .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-te2uLIMA2s .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-te2uLIMA2s .justify-content-center {
  align-items: center;
}
.cid-te2uLJ7Tfe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-te2uLJ7Tfe .mbr-fallback-image.disabled {
  display: none;
}
.cid-te2uLJ7Tfe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-te2uLJ7Tfe .mbr-text,
.cid-te2uLJ7Tfe .mbr-section-btn {
  color: #232323;
}
.cid-te2uLJ7Tfe .btn {
  width: 100%;
}
.cid-te2uLJ7Tfe .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-te2uLJ7Tfe H1 {
  text-align: center;
}
.cid-te2uLJzyE7 {
  background-image: url("../../images/background2.jpg");
}
.cid-te2uLJzyE7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-te2uLJzyE7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-te2uLJzyE7 .mbr-text,
.cid-te2uLJzyE7 .mbr-section-btn {
  color: #232323;
}
.cid-te2uLJzyE7 .btn {
  width: 100%;
}
.cid-te2uLJzyE7 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-te2uLJZqXE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-te2uLJZqXE .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 992px) {
  .cid-te2uLJZqXE form {
    width: 50%;
  }
}
.cid-te2uLJZqXE form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-te2uLJZqXE form .mbr-section-btn .btn {
  width: 100%;
}
.cid-tedAibowwc .navbar-dropdown {
  position: relative !important;
}
.cid-tedAibowwc .navbar-dropdown {
  position: absolute !important;
}
.cid-tedAibowwc .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-tedAibowwc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tedAibowwc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tedAibowwc .dropdown-item:hover,
.cid-tedAibowwc .dropdown-item:focus {
  background: #6965e6 !important;
  color: white !important;
}
.cid-tedAibowwc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tedAibowwc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tedAibowwc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tedAibowwc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tedAibowwc .nav-link {
  position: relative;
}
.cid-tedAibowwc .container {
  display: flex;
  margin: auto;
}
.cid-tedAibowwc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tedAibowwc .dropdown-menu,
.cid-tedAibowwc .navbar.opened {
  background: #ffffff !important;
}
.cid-tedAibowwc .nav-item:focus,
.cid-tedAibowwc .nav-link:focus {
  outline: none;
}
.cid-tedAibowwc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tedAibowwc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tedAibowwc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tedAibowwc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tedAibowwc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tedAibowwc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tedAibowwc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-tedAibowwc .navbar.opened {
  transition: all 0.3s;
}
.cid-tedAibowwc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tedAibowwc .navbar .navbar-logo img {
  width: auto;
}
.cid-tedAibowwc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tedAibowwc .navbar.collapsed {
  justify-content: center;
}
.cid-tedAibowwc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tedAibowwc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tedAibowwc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tedAibowwc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tedAibowwc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tedAibowwc .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-tedAibowwc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tedAibowwc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tedAibowwc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tedAibowwc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tedAibowwc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tedAibowwc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tedAibowwc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tedAibowwc .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-tedAibowwc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tedAibowwc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tedAibowwc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tedAibowwc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tedAibowwc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tedAibowwc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tedAibowwc .navbar.navbar-short {
  min-height: 60px;
}
.cid-tedAibowwc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tedAibowwc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tedAibowwc .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-tedAibowwc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tedAibowwc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tedAibowwc .dropdown-item.active,
.cid-tedAibowwc .dropdown-item:active {
  background-color: transparent;
}
.cid-tedAibowwc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tedAibowwc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tedAibowwc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tedAibowwc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tedAibowwc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tedAibowwc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tedAibowwc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tedAibowwc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tedAibowwc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tedAibowwc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tedAibowwc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tedAibowwc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tedAibowwc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tedAibowwc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tedAibowwc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tedAibowwc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tedAibowwc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tedAibowwc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tedAibowwc .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tedAibowwc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tedAibowwc .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-tedAibowwc .navbar {
    height: 70px;
  }
  .cid-tedAibowwc .navbar.opened {
    height: auto;
  }
  .cid-tedAibowwc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tedAibNmXm {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../images/dopomoga-2000x1600.jpg");
}
.cid-tedAibNmXm .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tedAibNmXm .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tedAibNmXm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tedAibNmXm .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tedAibNmXm .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tedAibNmXm .mbr-text,
.cid-tedAibNmXm .mbr-section-btn {
  color: #fafafa;
}
.cid-tedAibNmXm .mbr-section-title {
  color: #000000;
}
.cid-tedAic4vcH {
  padding-top: 8rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
@media (min-width: 1500px) {
  .cid-tedAic4vcH .container {
    max-width: 1400px;
  }
}
.cid-tedAic4vcH .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #4479d9;
  margin-bottom: 2rem;
}
.cid-tedAic4vcH .card-wrapper {
  margin-top: 3rem;
}
.cid-tedAic4vcH .row {
  justify-content: center;
}
.cid-tedAic4vcH .card-title,
.cid-tedAic4vcH .iconfont-wrapper {
  color: #000000;
}
.cid-tedAic4vcH .card-text {
  color: #000000;
}
.cid-tedAic4vcH .mbr-section-title {
  color: #000000;
}
.cid-tedAicsnpK {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tedAicsnpK .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tedAicsnpK .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tedAicsnpK .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tedAicsnpK .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tedAicJiK9 {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-tedAicJiK9 img,
.cid-tedAicJiK9 .item-img {
  width: 100%;
}
.cid-tedAicJiK9 .item:focus,
.cid-tedAicJiK9 span:focus {
  outline: none;
}
.cid-tedAicJiK9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tedAicJiK9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tedAicJiK9 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tedAicJiK9 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tedAicJiK9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tedAicJiK9 .mbr-section-title {
  color: #000000;
}
.cid-tedAicJiK9 .mbr-text,
.cid-tedAicJiK9 .mbr-section-btn {
  text-align: left;
}
.cid-tedAicJiK9 .item-title {
  text-align: left;
}
.cid-tedAicJiK9 .item-subtitle {
  text-align: left;
}
.cid-tedAid9xNp {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background: #ffffff;
}
.cid-tedAid9xNp .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tedAid9xNp .team-card:hover {
  transform: translateY(-10px);
}
.cid-tedAid9xNp .card-wrap {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tedAid9xNp .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tedAid9xNp .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tedAid9xNp .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tedAid9xNp .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-tedAid9xNp .social-row {
  text-align: center;
}
.cid-tedAid9xNp .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tedAid9xNp .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-tedAid9xNp .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tedAid9xNp .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tedAid9xNp .mbr-section-title {
  color: #000000;
}
.cid-tedAid9xNp .mbr-section-title1 {
  color: #000000;
}
.cid-tedAidUmMU {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-tedAidUmMU .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tedAidUmMU form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tedAidUmMU form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tedAidUmMU form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tedAidUmMU .mbr-section-title {
  color: #000000;
}
.cid-tedAidUmMU .mbr-section-subtitle {
  color: #000000;
}
.cid-tedAief3eA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tedAief3eA .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tedAief3eA .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-tedAief3eA .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tedAief3eA .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tedAief3eA .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6965e6;
}
.cid-tedAieHTVr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tedAieHTVr .google-map {
  height: 30rem;
  position: relative;
}
.cid-tedAieHTVr .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tedAieHTVr .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tedAieHTVr .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tedAieHTVr .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tedAifngVJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tedAifngVJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tedAifngVJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tedAifngVJ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tedAifngVJ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tedAifngVJ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tedAifngVJ .row .foot-menu li p {
  margin: 0;
}
.cid-tedAifngVJ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tedAifngVJ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tedAifngVJ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tedAifngVJ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tedAifngVJ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tedAifngVJ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tedAifngVJ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tedAifngVJ .row .row-copirayt p {
  width: 100%;
}
.cid-tedAifSFBy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
@media (min-width: 991px) {
  .cid-tedAifSFBy .container-fluid {
    padding-left: 0;
  }
}
.cid-tedAifSFBy .mbr-text,
.cid-tedAifSFBy .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-tedAifSFBy .mbr-text,
  .cid-tedAifSFBy .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tedAifSFBy .mbr-text,
  .cid-tedAifSFBy .mbr-section-title {
    text-align: center;
  }
}
.cid-tedAifSFBy a.btn {
  height: 100%;
  margin: 0;
}
.cid-tedAifSFBy .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-tedAifSFBy .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tedAifSFBy .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tedAifSFBy .justify-content-center {
  align-items: center;
}
.cid-tedAiggCse {
  background-color: #fafafa;
}
.cid-tedAiggCse .mbr-text,
.cid-tedAiggCse .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-tedAiggCse .mbr-text,
  .cid-tedAiggCse .mbr-section-title {
    text-align: center;
  }
}
.cid-tedAiggCse a.btn {
  height: 100%;
  margin: 0;
}
.cid-tedAiggCse .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-tedAiggCse .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tedAiggCse .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-tedAiggCse .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-tedAiggCse .justify-content-center {
  align-items: center;
}
.cid-tedAigBAdX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tedAigBAdX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tedAigBAdX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tedAigBAdX .mbr-text,
.cid-tedAigBAdX .mbr-section-btn {
  color: #232323;
}
.cid-tedAigBAdX .btn {
  width: 100%;
}
.cid-tedAigBAdX .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-tedAigBAdX H1 {
  text-align: center;
}
.cid-tedAigXZza {
  background-image: url("../../images/background2.jpg");
}
.cid-tedAigXZza .mbr-fallback-image.disabled {
  display: none;
}
.cid-tedAigXZza .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tedAigXZza .mbr-text,
.cid-tedAigXZza .mbr-section-btn {
  color: #232323;
}
.cid-tedAigXZza .btn {
  width: 100%;
}
.cid-tedAigXZza .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-tedAiho3eN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tedAiho3eN .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 992px) {
  .cid-tedAiho3eN form {
    width: 50%;
  }
}
.cid-tedAiho3eN form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tedAiho3eN form .mbr-section-btn .btn {
  width: 100%;
}
.cid-tetUVIb7y8 .navbar-dropdown {
  position: relative !important;
}
.cid-tetUVIb7y8 .navbar-dropdown {
  position: absolute !important;
}
.cid-tetUVIb7y8 .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-tetUVIb7y8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tetUVIb7y8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tetUVIb7y8 .dropdown-item:hover,
.cid-tetUVIb7y8 .dropdown-item:focus {
  background: #6965e6 !important;
  color: white !important;
}
.cid-tetUVIb7y8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tetUVIb7y8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tetUVIb7y8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tetUVIb7y8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tetUVIb7y8 .nav-link {
  position: relative;
}
.cid-tetUVIb7y8 .container {
  display: flex;
  margin: auto;
}
.cid-tetUVIb7y8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tetUVIb7y8 .dropdown-menu,
.cid-tetUVIb7y8 .navbar.opened {
  background: #ffffff !important;
}
.cid-tetUVIb7y8 .nav-item:focus,
.cid-tetUVIb7y8 .nav-link:focus {
  outline: none;
}
.cid-tetUVIb7y8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tetUVIb7y8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tetUVIb7y8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tetUVIb7y8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tetUVIb7y8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tetUVIb7y8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tetUVIb7y8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-tetUVIb7y8 .navbar.opened {
  transition: all 0.3s;
}
.cid-tetUVIb7y8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tetUVIb7y8 .navbar .navbar-logo img {
  width: auto;
}
.cid-tetUVIb7y8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tetUVIb7y8 .navbar.collapsed {
  justify-content: center;
}
.cid-tetUVIb7y8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tetUVIb7y8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tetUVIb7y8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tetUVIb7y8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tetUVIb7y8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tetUVIb7y8 .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-tetUVIb7y8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tetUVIb7y8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tetUVIb7y8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tetUVIb7y8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tetUVIb7y8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tetUVIb7y8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tetUVIb7y8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tetUVIb7y8 .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-tetUVIb7y8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tetUVIb7y8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tetUVIb7y8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tetUVIb7y8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tetUVIb7y8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tetUVIb7y8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tetUVIb7y8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tetUVIb7y8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tetUVIb7y8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tetUVIb7y8 .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-tetUVIb7y8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tetUVIb7y8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tetUVIb7y8 .dropdown-item.active,
.cid-tetUVIb7y8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tetUVIb7y8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tetUVIb7y8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tetUVIb7y8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tetUVIb7y8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tetUVIb7y8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tetUVIb7y8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tetUVIb7y8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tetUVIb7y8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tetUVIb7y8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tetUVIb7y8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tetUVIb7y8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tetUVIb7y8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tetUVIb7y8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tetUVIb7y8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tetUVIb7y8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tetUVIb7y8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tetUVIb7y8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tetUVIb7y8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tetUVIb7y8 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tetUVIb7y8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tetUVIb7y8 .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-tetUVIb7y8 .navbar {
    height: 70px;
  }
  .cid-tetUVIb7y8 .navbar.opened {
    height: auto;
  }
  .cid-tetUVIb7y8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tetUVKYRU7 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-tetUVKYRU7 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tetUVKYRU7 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tetUVKYRU7 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tetUVKYRU7 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tetUVKYRU7 .mbr-section-title {
  color: #000000;
}
.cid-tetUVKYRU7 .mbr-section-subtitle {
  color: #000000;
}
.cid-tetUVNd9eG {
  background-color: #fafafa;
}
.cid-tetUVNd9eG .mbr-text,
.cid-tetUVNd9eG .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-tetUVNd9eG .mbr-text,
  .cid-tetUVNd9eG .mbr-section-title {
    text-align: center;
  }
}
.cid-tetUVNd9eG a.btn {
  height: 100%;
  margin: 0;
}
.cid-tetUVNd9eG .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-tetUVNd9eG .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tetUVNd9eG .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-tetUVNd9eG .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-tetUVNd9eG .justify-content-center {
  align-items: center;
}
.cid-tetUVMlSUI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tetUVMlSUI .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tetUVMlSUI .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tetUVMlSUI .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tetUVMlSUI .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tetUVMlSUI .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tetUVMlSUI .row .foot-menu li p {
  margin: 0;
}
.cid-tetUVMlSUI .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tetUVMlSUI .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tetUVMlSUI .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tetUVMlSUI .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tetUVMlSUI .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tetUVMlSUI .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tetUVMlSUI .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tetUVMlSUI .row .row-copirayt p {
  width: 100%;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  position: relative !important;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  position: absolute !important;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #6965e6 !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #ffffff !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFCw1qGFAI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sFzxmVl7J6 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../images/dopomoga-2000x1600.jpg");
}
.cid-sFzxmVl7J6 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sFzxmVl7J6 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .mbr-text,
.cid-sFzxmVl7J6 .mbr-section-btn {
  color: #fafafa;
}
.cid-sFzxmVl7J6 .mbr-section-title {
  color: #000000;
}
.cid-sFzyUE9AaP {
  padding-top: 8rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
@media (min-width: 1500px) {
  .cid-sFzyUE9AaP .container {
    max-width: 1400px;
  }
}
.cid-sFzyUE9AaP .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0f7ae2;
  margin-bottom: 2rem;
}
.cid-sFzyUE9AaP .card-wrapper {
  margin-top: 3rem;
}
.cid-sFzyUE9AaP .row {
  justify-content: center;
}
.cid-sFzyUE9AaP .card-title,
.cid-sFzyUE9AaP .iconfont-wrapper {
  color: #000000;
}
.cid-sFzyUE9AaP .card-text {
  color: #000000;
}
.cid-sFzyUE9AaP .mbr-section-title {
  color: #000000;
}
.cid-sFzz5E692j {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sFzz5E692j .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzz5E692j .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sFzz5E692j .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sFzz5E692j .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzFvgBfc0 {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-sFzFvgBfc0 img,
.cid-sFzFvgBfc0 .item-img {
  width: 100%;
}
.cid-sFzFvgBfc0 .item:focus,
.cid-sFzFvgBfc0 span:focus {
  outline: none;
}
.cid-sFzFvgBfc0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sFzFvgBfc0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sFzFvgBfc0 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFzFvgBfc0 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sFzFvgBfc0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sFzFvgBfc0 .mbr-section-title {
  color: #000000;
}
.cid-sFzFvgBfc0 .mbr-text,
.cid-sFzFvgBfc0 .mbr-section-btn {
  text-align: left;
}
.cid-sFzFvgBfc0 .item-title {
  text-align: left;
}
.cid-sFzFvgBfc0 .item-subtitle {
  text-align: left;
}
.cid-sFzErVWEaH {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background: #ffffff;
}
.cid-sFzErVWEaH .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sFzErVWEaH .team-card:hover {
  transform: translateY(-10px);
}
.cid-sFzErVWEaH .card-wrap {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sFzErVWEaH .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sFzErVWEaH .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sFzErVWEaH .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sFzErVWEaH .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sFzErVWEaH .social-row {
  text-align: center;
}
.cid-sFzErVWEaH .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sFzErVWEaH .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-sFzErVWEaH .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sFzErVWEaH .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sFzErVWEaH .mbr-section-title {
  color: #000000;
}
.cid-sFzErVWEaH .mbr-section-title1 {
  color: #000000;
}
.cid-sFzIA7KGYz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-sFzIA7KGYz .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sFzIA7KGYz .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sFzIA7KGYz .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFzIA7KGYz .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sFzIA7KGYz .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #0f7ae2;
}
.cid-tdL92XGgHt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tdL92XGgHt .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 992px) {
  .cid-tdL92XGgHt form {
    width: 50%;
  }
}
.cid-tdL92XGgHt form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tdL92XGgHt form .mbr-section-btn .btn {
  width: 100%;
}
.cid-sFAxp7Y5iM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sFAxp7Y5iM .google-map {
  height: 30rem;
  position: relative;
}
.cid-sFAxp7Y5iM .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sFAxp7Y5iM .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sFAxp7Y5iM .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sFAxp7Y5iM .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sFCygHrmNf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sFCygHrmNf .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sFCygHrmNf .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sFCygHrmNf .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sFCygHrmNf .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sFCygHrmNf .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sFCygHrmNf .row .foot-menu li p {
  margin: 0;
}
.cid-sFCygHrmNf .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sFCygHrmNf .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sFCygHrmNf .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sFCygHrmNf .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sFCygHrmNf .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sFCygHrmNf .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sFCygHrmNf .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sFCygHrmNf .row .row-copirayt p {
  width: 100%;
}
.cid-teAEutg6l8 .navbar-dropdown {
  position: relative !important;
}
.cid-teAEutg6l8 .navbar-dropdown {
  position: absolute !important;
}
.cid-teAEutg6l8 .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-teAEutg6l8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-teAEutg6l8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-teAEutg6l8 .dropdown-item:hover,
.cid-teAEutg6l8 .dropdown-item:focus {
  background: #6965e6 !important;
  color: white !important;
}
.cid-teAEutg6l8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-teAEutg6l8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-teAEutg6l8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-teAEutg6l8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-teAEutg6l8 .nav-link {
  position: relative;
}
.cid-teAEutg6l8 .container {
  display: flex;
  margin: auto;
}
.cid-teAEutg6l8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-teAEutg6l8 .dropdown-menu,
.cid-teAEutg6l8 .navbar.opened {
  background: #ffffff !important;
}
.cid-teAEutg6l8 .nav-item:focus,
.cid-teAEutg6l8 .nav-link:focus {
  outline: none;
}
.cid-teAEutg6l8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-teAEutg6l8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-teAEutg6l8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-teAEutg6l8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-teAEutg6l8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-teAEutg6l8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-teAEutg6l8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-teAEutg6l8 .navbar.opened {
  transition: all 0.3s;
}
.cid-teAEutg6l8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-teAEutg6l8 .navbar .navbar-logo img {
  width: auto;
}
.cid-teAEutg6l8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-teAEutg6l8 .navbar.collapsed {
  justify-content: center;
}
.cid-teAEutg6l8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-teAEutg6l8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-teAEutg6l8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-teAEutg6l8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-teAEutg6l8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-teAEutg6l8 .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-teAEutg6l8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-teAEutg6l8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-teAEutg6l8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-teAEutg6l8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-teAEutg6l8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-teAEutg6l8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-teAEutg6l8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-teAEutg6l8 .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-teAEutg6l8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-teAEutg6l8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-teAEutg6l8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-teAEutg6l8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-teAEutg6l8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-teAEutg6l8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-teAEutg6l8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-teAEutg6l8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-teAEutg6l8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-teAEutg6l8 .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-teAEutg6l8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-teAEutg6l8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-teAEutg6l8 .dropdown-item.active,
.cid-teAEutg6l8 .dropdown-item:active {
  background-color: transparent;
}
.cid-teAEutg6l8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-teAEutg6l8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-teAEutg6l8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-teAEutg6l8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-teAEutg6l8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-teAEutg6l8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-teAEutg6l8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-teAEutg6l8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-teAEutg6l8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-teAEutg6l8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-teAEutg6l8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-teAEutg6l8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-teAEutg6l8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-teAEutg6l8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-teAEutg6l8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-teAEutg6l8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-teAEutg6l8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-teAEutg6l8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-teAEutg6l8 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-teAEutg6l8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-teAEutg6l8 .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-teAEutg6l8 .navbar {
    height: 70px;
  }
  .cid-teAEutg6l8 .navbar.opened {
    height: auto;
  }
  .cid-teAEutg6l8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-teAEutFp4I {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../images/dopomoga-2000x1600.jpg");
}
.cid-teAEutFp4I .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-teAEutFp4I .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-teAEutFp4I .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-teAEutFp4I .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-teAEutFp4I .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-teAEutFp4I .mbr-text,
.cid-teAEutFp4I .mbr-section-btn {
  color: #fafafa;
}
.cid-teAEutFp4I .mbr-section-title {
  color: #000000;
}
.cid-teAEuu6VKS {
  padding-top: 8rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
@media (min-width: 1500px) {
  .cid-teAEuu6VKS .container {
    max-width: 1400px;
  }
}
.cid-teAEuu6VKS .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #4479d9;
  margin-bottom: 2rem;
}
.cid-teAEuu6VKS .card-wrapper {
  margin-top: 3rem;
}
.cid-teAEuu6VKS .row {
  justify-content: center;
}
.cid-teAEuu6VKS .card-title,
.cid-teAEuu6VKS .iconfont-wrapper {
  color: #000000;
}
.cid-teAEuu6VKS .card-text {
  color: #000000;
}
.cid-teAEuu6VKS .mbr-section-title {
  color: #000000;
}
.cid-teAEuuv8qP {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-teAEuuv8qP .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-teAEuuv8qP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-teAEuuv8qP .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-teAEuuv8qP .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-teAEuv2QqY {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-teAEuv2QqY img,
.cid-teAEuv2QqY .item-img {
  width: 100%;
}
.cid-teAEuv2QqY .item:focus,
.cid-teAEuv2QqY span:focus {
  outline: none;
}
.cid-teAEuv2QqY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-teAEuv2QqY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-teAEuv2QqY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-teAEuv2QqY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-teAEuv2QqY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-teAEuv2QqY .mbr-section-title {
  color: #000000;
}
.cid-teAEuv2QqY .mbr-text,
.cid-teAEuv2QqY .mbr-section-btn {
  text-align: left;
}
.cid-teAEuv2QqY .item-title {
  text-align: left;
}
.cid-teAEuv2QqY .item-subtitle {
  text-align: left;
}
.cid-teAEuvWAyt {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background: #ffffff;
}
.cid-teAEuvWAyt .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-teAEuvWAyt .team-card:hover {
  transform: translateY(-10px);
}
.cid-teAEuvWAyt .card-wrap {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-teAEuvWAyt .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-teAEuvWAyt .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-teAEuvWAyt .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-teAEuvWAyt .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-teAEuvWAyt .social-row {
  text-align: center;
}
.cid-teAEuvWAyt .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-teAEuvWAyt .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-teAEuvWAyt .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-teAEuvWAyt .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-teAEuvWAyt .mbr-section-title {
  color: #000000;
}
.cid-teAEuvWAyt .mbr-section-title1 {
  color: #000000;
}
.cid-teAEuwM736 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-teAEuwM736 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-teAEuwM736 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-teAEuwM736 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-teAEuwM736 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-teAEuwM736 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6965e6;
}
.cid-teAEuxcLo7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-teAEuxcLo7 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 992px) {
  .cid-teAEuxcLo7 form {
    width: 50%;
  }
}
.cid-teAEuxcLo7 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-teAEuxcLo7 form .mbr-section-btn .btn {
  width: 100%;
}
.cid-teAEuxxIrX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-teAEuxxIrX .google-map {
  height: 30rem;
  position: relative;
}
.cid-teAEuxxIrX .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-teAEuxxIrX .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-teAEuxxIrX .google-map[data-state] {
  background: #e9e5dc;
}
.cid-teAEuxxIrX .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-teAEuy5nfW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-teAEuy5nfW .row-links {
  width: 100%;
  justify-content: center;
}
.cid-teAEuy5nfW .social-row {
  width: 100%;
  justify-content: center;
}
.cid-teAEuy5nfW .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-teAEuy5nfW .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-teAEuy5nfW .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-teAEuy5nfW .row .foot-menu li p {
  margin: 0;
}
.cid-teAEuy5nfW .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-teAEuy5nfW .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-teAEuy5nfW .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-teAEuy5nfW .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-teAEuy5nfW .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-teAEuy5nfW .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-teAEuy5nfW .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-teAEuy5nfW .row .row-copirayt p {
  width: 100%;
}
.cid-thjRXuSCE4 .navbar-dropdown {
  position: relative !important;
}
.cid-thjRXuSCE4 .navbar-dropdown {
  position: absolute !important;
}
.cid-thjRXuSCE4 .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-thjRXuSCE4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-thjRXuSCE4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-thjRXuSCE4 .dropdown-item:hover,
.cid-thjRXuSCE4 .dropdown-item:focus {
  background: #6965e6 !important;
  color: white !important;
}
.cid-thjRXuSCE4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-thjRXuSCE4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-thjRXuSCE4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-thjRXuSCE4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-thjRXuSCE4 .nav-link {
  position: relative;
}
.cid-thjRXuSCE4 .container {
  display: flex;
  margin: auto;
}
.cid-thjRXuSCE4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-thjRXuSCE4 .dropdown-menu,
.cid-thjRXuSCE4 .navbar.opened {
  background: #ffffff !important;
}
.cid-thjRXuSCE4 .nav-item:focus,
.cid-thjRXuSCE4 .nav-link:focus {
  outline: none;
}
.cid-thjRXuSCE4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-thjRXuSCE4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-thjRXuSCE4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-thjRXuSCE4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-thjRXuSCE4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-thjRXuSCE4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-thjRXuSCE4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-thjRXuSCE4 .navbar.opened {
  transition: all 0.3s;
}
.cid-thjRXuSCE4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-thjRXuSCE4 .navbar .navbar-logo img {
  width: auto;
}
.cid-thjRXuSCE4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-thjRXuSCE4 .navbar.collapsed {
  justify-content: center;
}
.cid-thjRXuSCE4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-thjRXuSCE4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-thjRXuSCE4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-thjRXuSCE4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-thjRXuSCE4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-thjRXuSCE4 .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-thjRXuSCE4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-thjRXuSCE4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-thjRXuSCE4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-thjRXuSCE4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-thjRXuSCE4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-thjRXuSCE4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-thjRXuSCE4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-thjRXuSCE4 .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-thjRXuSCE4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-thjRXuSCE4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-thjRXuSCE4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-thjRXuSCE4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-thjRXuSCE4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-thjRXuSCE4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-thjRXuSCE4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-thjRXuSCE4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-thjRXuSCE4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-thjRXuSCE4 .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-thjRXuSCE4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-thjRXuSCE4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-thjRXuSCE4 .dropdown-item.active,
.cid-thjRXuSCE4 .dropdown-item:active {
  background-color: transparent;
}
.cid-thjRXuSCE4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-thjRXuSCE4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-thjRXuSCE4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-thjRXuSCE4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-thjRXuSCE4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-thjRXuSCE4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-thjRXuSCE4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-thjRXuSCE4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-thjRXuSCE4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-thjRXuSCE4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-thjRXuSCE4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-thjRXuSCE4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-thjRXuSCE4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-thjRXuSCE4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-thjRXuSCE4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-thjRXuSCE4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-thjRXuSCE4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-thjRXuSCE4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-thjRXuSCE4 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-thjRXuSCE4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-thjRXuSCE4 .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-thjRXuSCE4 .navbar {
    height: 70px;
  }
  .cid-thjRXuSCE4 .navbar.opened {
    height: auto;
  }
  .cid-thjRXuSCE4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-thjRXvJ3rA {
  background-color: #fafafa;
}
.cid-thjRXvJ3rA .mbr-text,
.cid-thjRXvJ3rA .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-thjRXvJ3rA .mbr-text,
  .cid-thjRXvJ3rA .mbr-section-title {
    text-align: center;
  }
}
.cid-thjRXvJ3rA a.btn {
  height: 100%;
  margin: 0;
}
.cid-thjRXvJ3rA .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-thjRXvJ3rA .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-thjRXvJ3rA .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-thjRXvJ3rA .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-thjRXvJ3rA .justify-content-center {
  align-items: center;
}
.cid-thjRXw5uGG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-thjRXw5uGG .row-links {
  width: 100%;
  justify-content: center;
}
.cid-thjRXw5uGG .social-row {
  width: 100%;
  justify-content: center;
}
.cid-thjRXw5uGG .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-thjRXw5uGG .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-thjRXw5uGG .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-thjRXw5uGG .row .foot-menu li p {
  margin: 0;
}
.cid-thjRXw5uGG .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-thjRXw5uGG .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-thjRXw5uGG .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-thjRXw5uGG .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-thjRXw5uGG .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-thjRXw5uGG .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-thjRXw5uGG .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-thjRXw5uGG .row .row-copirayt p {
  width: 100%;
}
.cid-thjTquuelO .navbar-dropdown {
  position: relative !important;
}
.cid-thjTquuelO .navbar-dropdown {
  position: absolute !important;
}
.cid-thjTquuelO .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-thjTquuelO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-thjTquuelO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-thjTquuelO .dropdown-item:hover,
.cid-thjTquuelO .dropdown-item:focus {
  background: #6965e6 !important;
  color: white !important;
}
.cid-thjTquuelO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-thjTquuelO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-thjTquuelO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-thjTquuelO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-thjTquuelO .nav-link {
  position: relative;
}
.cid-thjTquuelO .container {
  display: flex;
  margin: auto;
}
.cid-thjTquuelO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-thjTquuelO .dropdown-menu,
.cid-thjTquuelO .navbar.opened {
  background: #ffffff !important;
}
.cid-thjTquuelO .nav-item:focus,
.cid-thjTquuelO .nav-link:focus {
  outline: none;
}
.cid-thjTquuelO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-thjTquuelO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-thjTquuelO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-thjTquuelO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-thjTquuelO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-thjTquuelO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-thjTquuelO .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-thjTquuelO .navbar.opened {
  transition: all 0.3s;
}
.cid-thjTquuelO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-thjTquuelO .navbar .navbar-logo img {
  width: auto;
}
.cid-thjTquuelO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-thjTquuelO .navbar.collapsed {
  justify-content: center;
}
.cid-thjTquuelO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-thjTquuelO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-thjTquuelO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-thjTquuelO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-thjTquuelO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-thjTquuelO .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-thjTquuelO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-thjTquuelO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-thjTquuelO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-thjTquuelO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-thjTquuelO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-thjTquuelO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-thjTquuelO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-thjTquuelO .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-thjTquuelO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-thjTquuelO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-thjTquuelO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-thjTquuelO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-thjTquuelO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-thjTquuelO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-thjTquuelO .navbar.navbar-short {
  min-height: 60px;
}
.cid-thjTquuelO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-thjTquuelO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-thjTquuelO .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-thjTquuelO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-thjTquuelO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-thjTquuelO .dropdown-item.active,
.cid-thjTquuelO .dropdown-item:active {
  background-color: transparent;
}
.cid-thjTquuelO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-thjTquuelO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-thjTquuelO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-thjTquuelO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-thjTquuelO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-thjTquuelO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-thjTquuelO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-thjTquuelO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-thjTquuelO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-thjTquuelO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-thjTquuelO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-thjTquuelO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-thjTquuelO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-thjTquuelO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-thjTquuelO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-thjTquuelO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-thjTquuelO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-thjTquuelO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-thjTquuelO .navbar-dropdown {
  padding: 0 1rem;
}
.cid-thjTquuelO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-thjTquuelO .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-thjTquuelO .navbar {
    height: 70px;
  }
  .cid-thjTquuelO .navbar.opened {
    height: auto;
  }
  .cid-thjTquuelO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-thjTquZRtN {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-thjTquZRtN .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-thjTquZRtN form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-thjTquZRtN form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-thjTquZRtN form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-thjTquZRtN .mbr-section-title {
  color: #000000;
}
.cid-thjTquZRtN .mbr-section-subtitle {
  color: #000000;
}
.cid-thjTqvjVZa {
  background-color: #fafafa;
}
.cid-thjTqvjVZa .mbr-text,
.cid-thjTqvjVZa .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-thjTqvjVZa .mbr-text,
  .cid-thjTqvjVZa .mbr-section-title {
    text-align: center;
  }
}
.cid-thjTqvjVZa a.btn {
  height: 100%;
  margin: 0;
}
.cid-thjTqvjVZa .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-thjTqvjVZa .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-thjTqvjVZa .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-thjTqvjVZa .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-thjTqvjVZa .justify-content-center {
  align-items: center;
}
.cid-thjTqvFh3n {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-thjTqvFh3n .row-links {
  width: 100%;
  justify-content: center;
}
.cid-thjTqvFh3n .social-row {
  width: 100%;
  justify-content: center;
}
.cid-thjTqvFh3n .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-thjTqvFh3n .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-thjTqvFh3n .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-thjTqvFh3n .row .foot-menu li p {
  margin: 0;
}
.cid-thjTqvFh3n .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-thjTqvFh3n .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-thjTqvFh3n .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-thjTqvFh3n .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-thjTqvFh3n .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-thjTqvFh3n .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-thjTqvFh3n .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-thjTqvFh3n .row .row-copirayt p {
  width: 100%;
}
