body {
    font-family: 'Inter Tight', sans-serif;
    --zelena: 	hsl(210, 99%, 69%);
    --plava: #00a2ae;
  }
  .display-1 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 4rem;
    line-height: 1.1;
  }
  .display-1 > .mbr-iconfont {
    font-size: 5rem;
  }
  .display-2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.6rem;
    line-height: 1.4;
  }
  .display-22 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .display-2 > .mbr-iconfont {
    font-size: 3.5rem;
  }
  .display-4 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.3rem;
    line-height: 1.6;
  }
  .display-4 > .mbr-iconfont {
    font-size: 1.375rem;
  }
  .display-5 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.7rem;
    line-height: 1.5;
  }
  .display-5 > .mbr-iconfont {
    font-size: 2.125rem;
  }
  .display-7 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .futerko .display-7 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.7rem;
    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.24rem;
      font-size: calc( 1.63rem + (2.8 - 1.63) * ((77vw - 20rem) / (48 - 20)));
      line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-4 {
      font-size: 1.2rem;
     
      line-height: calc( 1.6 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-5 {
      font-size: 1.36rem;
      font-size: calc( 1.245rem + (1.7 - 1.245) * ((70vw - 20rem) / (48 - 20)));
      line-height: calc( 1.4 * (1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20))));
    }
    .display-7 {
      font-size: 0.96rem;
      font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
      line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
    }
    .futerko .display-7 {
      font-size: 0.6rem;
      font-size: calc( .6rem + (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: #36187d !important;
  }
  .bg-success {
    background-color: #35b8fc !important;
  }
  .bg-info {
    background-color: #47b5ed !important;
  }
  .bg-warning {
    background-color: #6c758f !important;
  }
  .bg-danger {
    background-color: #36187d !important;
  }
  .btn-primary,
  .btn-primary:active {
    background-color: var(--zelena) !important;
    
    color: #ffffff !important;
  }
  .btn-primary:hover,
  .btn-primary:focus,
  .btn-primary.focus,
  .btn-primary.active {
    color: #ffffff !important;
    background-color: #241052 !important;
    border-color: #241052 !important;
  }
  .btn-primary.disabled,
  .btn-primary:disabled {
    color: #ffffff !important;
    background-color: #241052 !important;
    border-color: #241052 !important;
  }
  .btn-secondary,
  .btn-secondary:active {
    background-color: #ea2396 !important;
    border-color: #ea2396 !important;
    color: #ffffff !important;
  }
  .btn-secondary:hover,
  .btn-secondary:focus,
  .btn-secondary.focus,
  .btn-secondary.active {
    color: #ffffff !important;
    background-color: #c7137b !important;
    border-color: #c7137b !important;
  }
  .btn-secondary.disabled,
  .btn-secondary:disabled {
    color: #ffffff !important;
    background-color: #c7137b !important;
    border-color: #c7137b !important;
  }
  .btn-info,
  .btn-info:active {
    background-color: #47b5ed !important;
    border-color: #47b5ed !important;
    color: #ffffff !important;
  }
  .btn-info:hover,
  .btn-info:focus,
  .btn-info.focus,
  .btn-info.active {
    color: #ffffff !important;
    background-color: #19a2e8 !important;
    border-color: #19a2e8 !important;
  }
  .btn-info.disabled,
  .btn-info:disabled {
    color: #ffffff !important;
    background-color: #19a2e8 !important;
    border-color: #19a2e8 !important;
  }
  .btn-success,
  .btn-success:active {
    
    background-color: var(--zelena) !important;
    border-color: #35b8fc !important;
    color: #ffffff !important;
  }
  .btn-success:hover,
  .btn-success:focus,
  .btn-success.focus,
  .btn-success.active {
    color: #ffffff !important;
    
    background-color: var(--plava) !important;
    border-color: #04a6fa !important;
  }
  .btn-success.disabled,
  .btn-success:disabled {
    color: #ffffff !important;
    background-color: #04a6fa !important;
    border-color: #04a6fa !important;
  }
  .btn-warning,
  .btn-warning:active {
    background-color: #6c758f !important;
    border-color: #6c758f !important;
    color: #ffffff !important;
  }
  .btn-warning:hover,
  .btn-warning:focus,
  .btn-warning.focus,
  .btn-warning.active {
    color: #ffffff !important;
    background-color: #565d72 !important;
    border-color: #565d72 !important;
  }
  .btn-warning.disabled,
  .btn-warning:disabled {
    color: #ffffff !important;
    background-color: #565d72 !important;
    border-color: #565d72 !important;
  }
  .btn-danger,
  .btn-danger:active {
    background-color: #36187d !important;
    border-color: #36187d !important;
    color: #ffffff !important;
  }
  .btn-danger:hover,
  .btn-danger:focus,
  .btn-danger.focus,
  .btn-danger.active {
    color: #ffffff !important;
    background-color: #241052 !important;
    border-color: #241052 !important;
  }
  .btn-danger.disabled,
  .btn-danger:disabled {
    color: #ffffff !important;
    background-color: #241052 !important;
    border-color: #241052 !important;
  }
  .btn-white,
  .btn-white:active {
    background-color: #fafafa !important;
    border-color: #fafafa !important;
    color: #7a7a7a !important;
  }
  .btn-white:hover,
  .btn-white:focus,
  .btn-white.focus,
  .btn-white.active {
    color: #616161 !important;
    background-color: #e1e1e1 !important;
    border-color: #e1e1e1 !important;
  }
  .btn-white.disabled,
  .btn-white:disabled {
    color: #7a7a7a !important;
    background-color: #e1e1e1 !important;
    border-color: #e1e1e1 !important;
  }
  .btn-black,
  .btn-black:active {
    background-color: #232323 !important;
    border-color: #232323 !important;
    color: #ffffff !important;
  }
  .btn-black:hover,
  .btn-black:focus,
  .btn-black.focus,
  .btn-black.active {
    color: #ffffff !important;
    background-color: #0a0a0a !important;
    border-color: #0a0a0a !important;
  }
  .btn-black.disabled,
  .btn-black:disabled {
    color: #ffffff !important;
    background-color: #0a0a0a !important;
    border-color: #0a0a0a !important;
  }
  .btn-primary-outline,
  .btn-primary-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #36187d;
  }
  .btn-primary-outline:hover,
  .btn-primary-outline:focus,
  .btn-primary-outline.focus,
  .btn-primary-outline.active {
    color: #170a34 !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
  }
  .btn-primary-outline.disabled,
  .btn-primary-outline:disabled {
    color: #ffffff !important;
    background-color: #36187d !important;
    border-color: #36187d !important;
  }
  .btn-secondary-outline,
  .btn-secondary-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #ea2396;
  }
  .btn-secondary-outline:hover,
  .btn-secondary-outline:focus,
  .btn-secondary-outline.focus,
  .btn-secondary-outline.active {
    color: #a61067 !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
  }
  .btn-secondary-outline.disabled,
  .btn-secondary-outline:disabled {
    color: #ffffff !important;
    background-color: #ea2396 !important;
    border-color: #ea2396 !important;
  }
  .btn-info-outline,
  .btn-info-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #47b5ed;
  }
  .btn-info-outline:hover,
  .btn-info-outline:focus,
  .btn-info-outline.focus,
  .btn-info-outline.active {
    color: #148cca !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
  }
  .btn-info-outline.disabled,
  .btn-info-outline:disabled {
    color: #ffffff !important;
    background-color: #47b5ed !important;
    border-color: #47b5ed !important;
  }
  .btn-success-outline,
  .btn-success-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #35b8fc;
  }
  .btn-success-outline:hover,
  .btn-success-outline:focus,
  .btn-success-outline.focus,
  .btn-success-outline.active {
    color: #038fd7 !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
  }
  .btn-success-outline.disabled,
  .btn-success-outline:disabled {
    color: #ffffff !important;
    background-color: #35b8fc !important;
    border-color: #35b8fc !important;
  }
  .btn-warning-outline,
  .btn-warning-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #6c758f;
  }
  .btn-warning-outline:hover,
  .btn-warning-outline:focus,
  .btn-warning-outline.focus,
  .btn-warning-outline.active {
    color: #474d5e !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
  }
  .btn-warning-outline.disabled,
  .btn-warning-outline:disabled {
    color: #ffffff !important;
    background-color: #6c758f !important;
    border-color: #6c758f !important;
  }
  .btn-danger-outline,
  .btn-danger-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #36187d;
  }
  .btn-danger-outline:hover,
  .btn-danger-outline:focus,
  .btn-danger-outline.focus,
  .btn-danger-outline.active {
    color: #170a34 !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
  }
  .btn-danger-outline.disabled,
  .btn-danger-outline:disabled {
    color: #ffffff !important;
    background-color: #36187d !important;
    border-color: #36187d !important;
  }
  .btn-black-outline,
  .btn-black-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #232323;
  }
  .btn-black-outline:hover,
  .btn-black-outline:focus,
  .btn-black-outline.focus,
  .btn-black-outline.active {
    color: #000000 !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
  }
  .btn-black-outline.disabled,
  .btn-black-outline:disabled {
    color: #ffffff !important;
    background-color: #232323 !important;
    border-color: #232323 !important;
  }
  .btn-white-outline,
  .btn-white-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #fafafa;
  }
  .btn-white-outline:hover,
  .btn-white-outline:focus,
  .btn-white-outline.focus,
  .btn-white-outline.active {
    color: #cfcfcf !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
  }
  .btn-white-outline.disabled,
  .btn-white-outline:disabled {
    color: #7a7a7a !important;
    background-color: #fafafa !important;
    border-color: #fafafa !important;
  }
  .text-primary {
    color: black;
  }
  .text-secondary {
    color: #ea2396 !important;
  }
  .text-success {
    color: #35b8fc !important;
  }
  .text-info {
    color: #47b5ed !important;
  }
  .text-warning {
    color: #6c758f !important;
  }
  .text-danger {
    color: #36187d !important;
  }
  .text-white {
    color: #fafafa !important;
  }
  .text-black {
    color: #232323 !important;
  }
  a.text-primary:hover,
  a.text-primary:focus,
  a.text-primary.active {
    color: #ffffff !important;
    text-shadow: #007079 1px 0px 2px;
  }
  a.text-secondary:hover,
  a.text-secondary:focus,
  a.text-secondary.active {
    color: #980f5e !important;
  }
  a.text-success:hover,
  a.text-success:focus,
  a.text-success.active {
    color: #0385c8 !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: #404555 !important;
  }
  a.text-danger:hover,
  a.text-danger:focus,
  a.text-danger.active {
    color: #110827 !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):hover {
    text-decoration: underline;
  }
  .nav-tabs .nav-link.active {
    color: #36187d;
  }
  .nav-tabs .nav-link:not(.active) {
    color: #232323;
  }
  .alert-success {
    background-color: #70c770;
  }
  .alert-info {
    background-color: #47b5ed;
  }
  .alert-warning {
    background-color: #6c758f;
  }
  .alert-danger {
    background-color: #36187d;
  }
  .mbr-section-btn a.btn:not(.btn-form) {
    border-radius: 100px;
  }
  .mbr-gallery-filter li a {
    border-radius: 100px !important;
  }
  .mbr-gallery-filter li.active .btn {
    background-color: #36187d;
    border-color: #36187d;
    color: #ffffff;
  }
  .mbr-gallery-filter li.active .btn:focus {
    box-shadow: none;
  }
  .nav-tabs .nav-link {
    border-radius: 100px !important;
  }
  
  a:hover {
    color: #1c498f;
  }
  .mbr-plan-header.bg-primary .mbr-plan-subtitle,
  .mbr-plan-header.bg-primary .mbr-plan-price-desc {
    color: #6a3bd9;
  }
  .mbr-plan-header.bg-success .mbr-plan-subtitle,
  .mbr-plan-header.bg-success .mbr-plan-price-desc {
    color: #feffff;
  }
  .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: #b4b9c6;
  }
  .mbr-plan-header.bg-danger .mbr-plan-subtitle,
  .mbr-plan-header.bg-danger .mbr-plan-price-desc {
    color: #6a3bd9;
  }
  /* Scroll to top button*/
  .scrollToTop_wraper {
    display: none;
  }
  .form-control {
    font-family: 'Bellota Text', display;
    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: #36187d !important;
  }
  .form-control:-webkit-input-placeholder {
    font-family: 'Bellota Text', display;
    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: #36187d;
  }
  /* Forms */
  .mbr-form .input-group-btn a.btn {
    border-radius: 100px !important;
  }
  .mbr-form .input-group-btn a.btn:hover {
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  }
  .mbr-form .input-group-btn button[type="submit"] {
    border-radius: 100px !important;
    padding: 1rem 3rem;
  }
  .mbr-form .input-group-btn button[type="submit"]:hover {
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  }
  .jq-selectbox li:hover,
  .jq-selectbox li.selected {
    background-color: #36187d;
    color: #ffffff;
  }
  .jq-number__spin {
    transition: 0.25s ease;
  }
  .jq-number__spin:hover {
    border-color: #36187d;
  }
  .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: #36187d;
    border-bottom-color: #36187d;
  }
  .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: #36187d !important;
    box-shadow: none !important;
  }
  .xdsoft_datetimepicker .xdsoft_calendar td:hover,
  .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
    color: #ffffff !important;
    background: #ea2396 !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='%2336187d' %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-svG0fU5uZq {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
  }
  .cid-svG0fU5uZq .container {
    max-width: 1400px;
    padding: 0 2rem;
    display: flex;
    margin: auto;
  }
  @media (max-width: 767px) {
    .cid-svG0fU5uZq .container {
      padding: 0 ;
    }
  }
  .cid-svG0fU5uZq .navbar {
    min-height: 140px;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    background: #f2f3f7;
  }
  .cid-svG0fU5uZq .navbar.opened {
    transition: all 0.3s;
  }
  .cid-svG0fU5uZq .navbar .dropdown-item {
    padding: 0.5rem 1.8rem;
  }
  .cid-svG0fU5uZq .navbar .navbar-logo img {
    width: auto;
  }
  .cid-svG0fU5uZq .navbar .navbar-collapse {
    justify-content: flex-end;
    z-index: 1;
  }
  .cid-svG0fU5uZq .navbar.collapsed {
    justify-content: center;
  }
  .cid-svG0fU5uZq .navbar.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-svG0fU5uZq .navbar.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-svG0fU5uZq .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-svG0fU5uZq .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-svG0fU5uZq .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-svG0fU5uZq .navbar.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-svG0fU5uZq .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-svG0fU5uZq .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  @media (max-width: 991px) {
    .cid-svG0fU5uZq .navbar .nav-item .nav-link::before {
      display: none;
    }
    .cid-svG0fU5uZq .navbar.opened .dropdown-menu {
      top: 0;
    }
    .cid-svG0fU5uZq .navbar .dropdown-menu .dropdown-submenu {
      left: 0 !important;
    }
    .cid-svG0fU5uZq .navbar .dropdown-menu .dropdown-item:after {
      right: auto;
    }
    .cid-svG0fU5uZq .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-svG0fU5uZq .navbar .navbar-logo img {
      height: 3rem !important;
    }
    .cid-svG0fU5uZq .navbar ul.navbar-nav li {
      margin: auto;
    }
    .cid-svG0fU5uZq .navbar .dropdown-menu .dropdown-item {
      padding: 0.25rem 1.5rem !important;
      text-align: center;
    }
    .cid-svG0fU5uZq .navbar .navbar-brand {
      flex-shrink: initial;
      flex-basis: auto;
      word-break: break-word;
      padding-right: 2rem;
    }
    .cid-svG0fU5uZq .navbar .navbar-toggler {
      flex-basis: auto;
    }
    .cid-svG0fU5uZq .navbar .icons-menu {
      padding-left: 0;
      padding-right: 0;
      padding-top: 2.5rem;
      padding-bottom: 2.5rem;
    }
  }
  .cid-svG0fU5uZq .navbar.navbar-short {
    min-height: 110px;
  }
  .cid-svG0fU5uZq .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
  }
  .cid-svG0fU5uZq .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
  }
  .cid-svG0fU5uZq .nav-link {
    font-weight: 700;
    position: relative;
  }
  .cid-svG0fU5uZq nav.navbar {
    position: fixed;
  }
  .cid-svG0fU5uZq .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-svG0fU5uZq .dropdown-menu {
    padding: 0;
    border-radius: 4px;
  }
  .cid-svG0fU5uZq .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
  }
  .cid-svG0fU5uZq .dropdown-item:hover,
  .cid-svG0fU5uZq .dropdown-item:focus {
    background: #36187d !important;
    color: white !important;
  }
  .cid-svG0fU5uZq .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
  .cid-svG0fU5uZq .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
  }
  .cid-svG0fU5uZq .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
  }
  .cid-svG0fU5uZq .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
  .cid-svG0fU5uZq .iconfont-wrapper {
    color: #0196e3 !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
  }
  .cid-svG0fU5uZq .dropdown-menu,
  .cid-svG0fU5uZq .navbar.opened {
    background: #f2f3f7 !important;
  }
  .cid-svG0fU5uZq .nav-item:focus,
  .cid-svG0fU5uZq .nav-link:focus {
    outline: none;
  }
  .cid-svG0fU5uZq .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
  }
  .cid-svG0fU5uZq .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
  .cid-svG0fU5uZq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-right: 0.5rem;
    vertical-align: sub;
  }
  .cid-svG0fU5uZq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
    display: inline-block;
    transform: scale(1, 1);
    transition: all 0.25s ease-in-out;
  }
  .cid-svG0fU5uZq .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
  }
  .cid-svG0fU5uZq .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
  .cid-svG0fU5uZq .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-svG0fU5uZq .navbar-brand .navbar-caption {
    line-height: inherit !important;
  }
  .cid-svG0fU5uZq .navbar-brand .navbar-logo a {
    outline: none;
  }
  .cid-svG0fU5uZq .dropdown-item.active,
  .cid-svG0fU5uZq .dropdown-item:active {
    background-color: transparent;
  }
  .cid-svG0fU5uZq .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }
  .cid-svG0fU5uZq .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
  }
  .cid-svG0fU5uZq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.667em;
  }
  .cid-svG0fU5uZq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #f2f3f7;
  }
  .cid-svG0fU5uZq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
  }
  .cid-svG0fU5uZq .navbar .dropdown.open > .dropdown-menu {
    display: block;
  }
  .cid-svG0fU5uZq ul.navbar-nav {
    flex-wrap: wrap;
  }
  .cid-svG0fU5uZq .navbar-buttons {
    text-align: center;
    min-width: 170px;
  }
  .cid-svG0fU5uZq button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-svG0fU5uZq button.navbar-toggler .hamburger span {
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    border-right: 5px;
    background-color: #36187d;
  }
  .cid-svG0fU5uZq button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    transition: all 0.2s;
  }
  .cid-svG0fU5uZq button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    transition: all 0.15s;
  }
  .cid-svG0fU5uZq button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    transition: all 0.15s;
  }
  .cid-svG0fU5uZq button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    transition: all 0.2s;
  }
  .cid-svG0fU5uZq nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
  }
  .cid-svG0fU5uZq nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
  }
  .cid-svG0fU5uZq nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
  }
  .cid-svG0fU5uZq nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
  }
  .cid-svG0fU5uZq .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
  }
  .cid-svG0fU5uZq a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cid-svG0fU5uZq .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-svG0fU5uZq .navbar {
      height: 70px;
    }
    .cid-svG0fU5uZq .navbar.opened {
      height: auto;
    }
    .cid-svG0fU5uZq .nav-item .nav-link:hover::before {
      width: 175%;
      max-width: calc(100% + 2rem);
      left: -1rem;
    }
  }
  .cid-svG0fU5uZq .icons-menu .mbr-iconfont {
    font-size: 1.5rem;
    padding: 1.5rem!important;
    margin: 0 0.3rem!important;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    border-radius: 50%;
    transition: all 0.3s;
  }
  .cid-svG0fU5uZq .icons-menu .mbr-iconfont:hover {
    background: #f8f9fb;
  }
  .cid-svG0fApVKW {
    padding-top: 15rem;
    padding-bottom: 13rem;
    background-image: url("../../../assets/images/background2.jpg");
  }
  .cid-svG0fApVKW .mbr-section-title {
    text-align: center;
    color: #ffffff;
  }
  .cid-svG0fApVKW .mbr-text,
  .cid-svG0fApVKW .mbr-section-btn {
    text-align: center;
    color: #f2f3f7;
  }
  .cid-svFZIoal0Y {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #f2f3f7;
  }
  .cid-svFZIoal0Y img {
    border-bottom: 1px solid #efefef;
  }
  .cid-svGquAVjfL {
    padding-top: 6rem;
    padding-bottom: 4rem;
    background-color: #f2f3f7;
  }
  .cid-svGquAVjfL img,
  .cid-svGquAVjfL .item-img {
    border-radius: 2rem;
    transition: all 0.3s;
    overflow: hidden;
    width: 100%;
  }
  .cid-svGquAVjfL .item:focus,
  .cid-svGquAVjfL span:focus {
    outline: none;
  }
  .cid-svGquAVjfL .item {
    cursor: pointer;
    margin-bottom: 2rem;
  }
  .cid-svGquAVjfL .item-wrapper {
    position: relative;
    padding: 1rem;
    border-radius: 3rem;
    background: #f2f3f7;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  }
  @media (min-width: 992px) {
    .cid-svGquAVjfL .item-wrapper .item-content {
      padding: 2rem 2rem 0;
    }
    .cid-svGquAVjfL .item-wrapper .item-footer {
      padding: 0 2rem 2rem;
    }
  }
  @media (max-width: 991px) {
    .cid-svGquAVjfL .item-wrapper .item-content {
      padding: 1rem 1rem 0;
    }
    .cid-svGquAVjfL .item-wrapper .item-footer {
      padding: 0 1rem 1rem;
    }
  }
  .cid-svGquAVjfL .item-wrapper:hover img {
    transform: scale(1.05);
  }
  .cid-svGquAVjfL .item-content {
    padding-bottom: 2rem!important;
  }
  .cid-svGquAVjfL .mbr-section-title {
    color: #36187d;
  }
  .cid-svGquAVjfL .item-title {
    color: #36187d;
    text-align: center;
  }
  .cid-svGquAVjfL .item-subtitle {
    color: #bec2cf;
  }
  .cid-svGquAVjfL .mbr-text,
  .cid-svGquAVjfL .mbr-section-btn {
    color: #6c758f;
    text-align: center;
  }
  .cid-svGquAVjfL .mbr-link {
    display: block;
    color: #0196e3;
    text-align: center;
  }
  .cid-svGral8XPm {
    padding-top: 5rem;
    padding-bottom: 6rem;
    background-color: #e8ecf1;
  }
  .cid-svGral8XPm .mbr-media {
    position: relative;
  }
  .cid-svGral8XPm .mbr-media img {
    width: 100%;
    object-fit: cover;
    border-radius: 3rem;
  }
  .cid-svGral8XPm .box {
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    border-radius: 3rem;
  }
  .cid-svGral8XPm .icon-wrap {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
  }
  .cid-svGral8XPm .mbr-iconfont {
    font-size: 3rem;
    color: #0196e3;
    padding: 2rem;
    border-radius: 50%;
    transition: all 0.3s;
    background: #dae2ec;
  }
  .cid-svGral8XPm .modalWindow {
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    background-color: rgba(61, 61, 61, 0.65);
    width: 100%;
    height: 100%;
  }
  .cid-svGral8XPm .modalWindow .modalWindow-container {
    display: table-cell;
    vertical-align: middle;
  }
  .cid-svGral8XPm .modalWindow .modalWindow-video {
    height: calc(44.9943757vw);
    width: 80vw;
    margin: 0 auto;
  }
  .cid-svGral8XPm a {
    text-decoration: none!important;
  }
  .cid-svGral8XPm .close {
    position: fixed;
    opacity: 1;
    font-size: 22px;
    font-weight: 300;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    top: 2.5rem;
    right: 2.5rem;
    border: 2px solid #fff;
    text-shadow: none;
    z-index: 5;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    display: flex;
  }
  .cid-svGral8XPm .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
  }
  .cid-svGral8XPm .mbr-section-title {
    color: #0196e3;
  }
  .cid-svGry2htlM {
    padding-top: 7rem;
    padding-bottom: 7rem;
    background-color: #f2f3f7;
  }
  .cid-svGry2htlM .row {
    align-items: center;
  }
  @media (max-width: 991px) {
    .cid-svGry2htlM .row {
      flex-direction: column-reverse;
    }
    .cid-svGry2htlM .image-wrapper {
      margin-bottom: 2rem;
    }
    .cid-svGry2htlM .card-wrapper {
      padding: 0 1rem;
    }
  }
  @media (min-width: 992px) {
    .cid-svGry2htlM .card-wrapper {
      padding-right: 2rem;
    }
  }
  .cid-svGry2htlM .image-wrapper img {
    width: 100%;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    object-fit: cover;
    border-radius: 3rem;
  }
  .cid-svGry2htlM .card-title {
    color: #36187d;
  }
  .cid-svGry2htlM .mbr-text,
  .cid-svGry2htlM .mbr-section-btn {
    color: #6c758f;
  }
  .cid-svGrKtQxW4 {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #e8ecf1;
    overflow: hidden;
  }
  .cid-svGrKtQxW4 .mbr-title {
    color: #bec2cf;
  }
  .cid-svGrKtQxW4 .mbr-text {
    color: #bec2cf;
  }
  .cid-svGrKtQxW4 .row {
    align-items: center;
  }
  .cid-svG0fU5uZq {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
  }
  .cid-svG0fU5uZq .container {
    max-width: 1400px;
    padding: 0 2rem;
    display: flex;
    margin: auto;
  }
  @media (max-width: 767px) {
    .cid-svG0fU5uZq .container {
      padding: 0 ;
    }
  }
  .cid-svG0fU5uZq .navbar {
    min-height: 140px;
    transition: all 0.3s;
    box-shadow: 0 1px 18px #88888856;
    background: #f2f3f7;
  }
  .cid-svG0fU5uZq .navbar.opened {
    transition: all 0.3s;
  }
  .cid-svG0fU5uZq .navbar .dropdown-item {
    padding: 0.5rem 1.8rem;
  }
  .cid-svG0fU5uZq .navbar .navbar-logo img {
    width: auto;
  }
  .cid-svG0fU5uZq .navbar .navbar-collapse {
    justify-content: flex-end;
    z-index: 1;
  }
  .cid-svG0fU5uZq .navbar.collapsed {
    justify-content: center;
  }
  .cid-svG0fU5uZq .navbar.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-svG0fU5uZq .navbar.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-svG0fU5uZq .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-svG0fU5uZq .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-svG0fU5uZq .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-svG0fU5uZq .navbar.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-svG0fU5uZq .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-svG0fU5uZq .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  @media (max-width: 991px) {
    .cid-svG0fU5uZq .navbar .nav-item .nav-link::before {
      display: none;
    }
    .cid-svG0fU5uZq .navbar.opened .dropdown-menu {
      top: 0;
    }
    .cid-svG0fU5uZq .navbar .dropdown-menu .dropdown-submenu {
      left: 0 !important;
    }
    .cid-svG0fU5uZq .navbar .dropdown-menu .dropdown-item:after {
      right: auto;
    }
    .cid-svG0fU5uZq .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-svG0fU5uZq .navbar .navbar-logo img {
      height: 3rem !important;
    }
    .cid-svG0fU5uZq .navbar ul.navbar-nav li {
      margin: auto;
    }
    .cid-svG0fU5uZq .navbar .dropdown-menu .dropdown-item {
      padding: 0.25rem 1.5rem !important;
      text-align: center;
    }
    .cid-svG0fU5uZq .navbar .navbar-brand {
      flex-shrink: initial;
      flex-basis: auto;
      word-break: break-word;
      padding-right: 2rem;
    }
    .cid-svG0fU5uZq .navbar .navbar-toggler {
      flex-basis: auto;
    }
    .cid-svG0fU5uZq .navbar .icons-menu {
      padding-left: 0;
      padding-right: 0;
      padding-top: 2.5rem;
      padding-bottom: 2.5rem;
    }
  }
  .cid-svG0fU5uZq .navbar.navbar-short {
    min-height: 110px;
  }
  .cid-svG0fU5uZq .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
  }
  .cid-svG0fU5uZq .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
  }
  .cid-svG0fU5uZq .nav-link {
    font-weight: 500;
    position: relative;
  }
  .cid-svG0fU5uZq nav.navbar {
    position: fixed;
  }
  .cid-svG0fU5uZq .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-svG0fU5uZq .dropdown-menu {
    padding: 0;
    border-radius: 4px;
  }
  .cid-svG0fU5uZq .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
  }
  .cid-svG0fU5uZq .dropdown-item:hover,
  .cid-svG0fU5uZq .dropdown-item:focus {
    background: #36187d !important;
    color: white !important;
  }
  .cid-svG0fU5uZq .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
  .cid-svG0fU5uZq .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
  }
  .cid-svG0fU5uZq .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
  }
  .cid-svG0fU5uZq .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
  .cid-svG0fU5uZq .iconfont-wrapper {
    color: #0196e3 !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
  }
  .cid-svG0fU5uZq .dropdown-menu,
  .cid-svG0fU5uZq .navbar.opened {
    background: #f2f3f7 !important;
  }
  .cid-svG0fU5uZq .nav-item:focus,
  .cid-svG0fU5uZq .nav-link:focus {
    outline: none;
  }
  .cid-svG0fU5uZq .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
  }
  .cid-svG0fU5uZq .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
  .cid-svG0fU5uZq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-right: 0.5rem;
    vertical-align: sub;
  }
  .cid-svG0fU5uZq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
    display: inline-block;
    transform: scale(1, 1);
    transition: all 0.25s ease-in-out;
  }
  .cid-svG0fU5uZq .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
  }
  .cid-svG0fU5uZq .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
  .cid-svG0fU5uZq .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-svG0fU5uZq .navbar-brand .navbar-caption {
    line-height: inherit !important;
  }
  .cid-svG0fU5uZq .navbar-brand .navbar-logo a {
    outline: none;
  }
  .cid-svG0fU5uZq .dropdown-item.active,
  .cid-svG0fU5uZq .dropdown-item:active {
    background-color: transparent;
  }
  .cid-svG0fU5uZq .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }
  .cid-svG0fU5uZq .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
  }
  .cid-svG0fU5uZq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.667em;
  }
  .cid-svG0fU5uZq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #f2f3f7;
  }
  .cid-svG0fU5uZq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
  }
  .cid-svG0fU5uZq .navbar .dropdown.open > .dropdown-menu {
    display: block;
  }
  .cid-svG0fU5uZq ul.navbar-nav {
    flex-wrap: wrap;
  }
  .cid-svG0fU5uZq .navbar-buttons {
    text-align: center;
    min-width: 170px;
  }
  .cid-svG0fU5uZq button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-svG0fU5uZq button.navbar-toggler .hamburger span {
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    border-right: 5px;
    background-color: #36187d;
  }
  .cid-svG0fU5uZq button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    transition: all 0.2s;
  }
  .cid-svG0fU5uZq button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    transition: all 0.15s;
  }
  .cid-svG0fU5uZq button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    transition: all 0.15s;
  }
  .cid-svG0fU5uZq button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    transition: all 0.2s;
  }
  .cid-svG0fU5uZq nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
  }
  .cid-svG0fU5uZq nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
  }
  .cid-svG0fU5uZq nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
  }
  .cid-svG0fU5uZq nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
  }
  .cid-svG0fU5uZq .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
  }
  .cid-svG0fU5uZq a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cid-svG0fU5uZq .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-svG0fU5uZq .navbar {
      height: 70px;
    }
    .cid-svG0fU5uZq .navbar.opened {
      height: auto;
    }
    .cid-svG0fU5uZq .nav-item .nav-link:hover::before {
      width: 175%;
      max-width: calc(100% + 2rem);
      left: -1rem;
    }
  }
  .cid-svG0fU5uZq .icons-menu .mbr-iconfont {
    font-size: 1.5rem;
    padding: 1.5rem!important;
    margin: 0 0.3rem!important;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    border-radius: 50%;
    transition: all 0.3s;
  }
  .cid-svG0fU5uZq .icons-menu .mbr-iconfont:hover {
    background: #f8f9fb;
  }
  .cid-svH4DBMh2X {
    padding-top: 7rem;

    background-color: #fff;
  }

  .cid-svH4DBMh2X .mbr-section-title {
    color: #ffffff;
  }
  .cid-svH4DBMh2X .mbr-section-subtitle {
    color: #0196e3;
  }
  .cid-svH4DBMh2X .mbr-text {
    color: #0196e3;
  }
  .cid-svH4DBMh2X .title-col {
    border-right: 2px solid #7ff8ee;
    color: #0196e3;
    margin-right: 3rem;
    align-items: center;
    display: inline-flex;
    width: 100%;
  }
  @media (max-width: 992px) {
    .cid-svH4DBMh2X .title-col {
      margin-right: 0;
      border-right: 0;
    }
  }
  .cid-svH4DBMh2X .text-col {
    align-items: center;
    display: flex;
  }
  .cid-svH4DBMh2X .mbr-section-subtitle,
  .cid-svH4DBMh2X .title-col {
    width: 100%;
    color: #0196e3;
  }
  .cid-svH4DSjNuz {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #f2f3f7;
  }
  .cid-svH4DSjNuz .mbr-section-title {
    color: var(--zelena);
  }
  .cid-svH4DSjNuz .mbr-section-subtitle {
    color: #00a2ae;
  }
  .cid-svH4DSjNuz .mbr-text {
    color: #36187d;
  }
  .cid-svH4DSjNuz .title-col {
    border-right: 3px solid #7ff8ee;
    color: #0196e3;
    margin-right: 3rem;
    align-items: center;
    display: inline-flex;
    width: 100%;
  }
  @media (max-width: 992px) {
    .cid-svH4DSjNuz .title-col {
      margin-right: 0;
      border-right: 0;
    }
  }
  .cid-svH4DSjNuz .text-col {
    align-items: center;
    display: flex;
  }
  .cid-svH4DSjNuz .mbr-section-subtitle,
  .cid-svH4DSjNuz .title-col {
    width: 100%;
  }
  .cid-svH4E0E0hz {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background-image: url("../../../assets/images/background2.jpg");
  }
  .cid-svH4E0E0hz .mbr-section-title {
    text-align: center;
    color: #ffffff;
  }
  .cid-svH4E0E0hz .mbr-text,
  .cid-svH4E0E0hz .mbr-section-btn {
    text-align: center;
    color: #f2f3f7;
  }
  .cid-svH4EjEc8n {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f2f3f7;
  }
  .cid-svH4EjEc8n .mbr-iconfont {
    display: block;
    font-size: 4rem;
    color: #0196e3;
    margin-bottom: 1.5rem;
  }
  .cid-svH4EjEc8n .col-lg-6 {
    padding: 0 2rem;
  }
  .cid-svH4EjEc8n .row {
    margin: 0 -2rem;
    justify-content: center;
  }
  .cid-svH4EjEc8n .card-wrapper {
    padding: 3rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    border-radius: 3rem;
  }
  @media (max-width: 767px) {
    .cid-svH4EjEc8n .card-wrapper {
      padding: 4rem 2rem;
    }
    .cid-svH4DBMh2X {
      padding-top: 4rem;
      padding-bottom: 2rem;
      background-color: #fff;
    }
  }
  @media (max-width: 992px) {
    .cid-svH4EjEc8n .card-wrapper {
      margin-bottom: 3rem;
    }
    .cid-svH4DBMh2X {
      padding-top: 5rem;
      padding-bottom: .2rem;
      background-color:rgb(242, 243, 247);
    }
  }
  .cid-svH4EjEc8n .card-title,
  .cid-svH4EjEc8n .iconfont-wrapper {
    color: #36187d;
  }
  .cid-svH4EjEc8n .card-text {
    color: #36187d;
  }
  .cid-svH4EjEc8n .mbr-section-subtitle {
    color: #36187d;
  }
  .cid-svH4EjEc8n .mbr-section-title {
    color: #36187d;
  }
  .cid-svH4EqdU4G {
    padding-top: 10rem;
    padding-bottom: 10rem;
    background-color: #f2f3f7;
  }
  .cid-svH4EqdU4G .card-wrapper {
    overflow: visible;
    display: flex;
  }
  @media (max-width: 991px) {
    .cid-svH4EqdU4G .card-wrapper {
      margin-bottom: 4rem;
    }
  }
  @media (max-width: 767px) {
    .cid-svH4EqdU4G .card-wrapper {
      flex-direction: column;
    }
  }
  .cid-svH4EqdU4G .mbr-iconfont {
    font-size: 4rem;
    color: #6592e6;
    padding: 3.5rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    border-radius: 50%;
    transition: all 0.3s;
  }
  .cid-svH4EqdU4G .mbr-iconfont:hover {
    background: #f8f9fb;
  }
  .cid-svH4EqdU4G .card-box {
    margin: auto;
    padding-left: 3rem;
  }
  @media (max-width: 767px) {
    .cid-svH4EqdU4G .card-box {
      padding-left: 0;
      text-align: center;
      padding-top: 2rem;
    }
  }
  @media (max-width: 992px) {
    .cid-svH4EqdU4G .mt-5 {
      margin-top: 0.5rem!important;
    }
  }
  .cid-svH4Eyg9Ao {
    padding-top: 7rem;
    padding-bottom: 7rem;
    background-color: #f2f3f7;
  }
  .cid-svH4Eyg9Ao .col-lg-6 {
    padding: 0 2rem;
  }
  .cid-svH4Eyg9Ao .row {
    margin: 0 -2rem;
    justify-content: center;
  }
  .cid-svH4Eyg9Ao .card-wrapper {
    overflow: visible;
    display: flex;
    padding: 3rem;
    transition: all 0.3s;
    border-radius: 3rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  }
  @media (max-width: 991px) {
    .cid-svH4Eyg9Ao .card-wrapper {
      margin-bottom: 4rem;
    }
  }
  @media (max-width: 767px) {
    .cid-svH4Eyg9Ao .card-wrapper {
      flex-direction: column;
      padding: 2rem;
    }
  }
  .cid-svH4Eyg9Ao .card-wrapper:hover {
    background: #f8f9fb;
  }
  .cid-svH4Eyg9Ao .mbr-iconfont {
    font-size: 3rem;
    color: #0196e3;
    padding: 2.5rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    border-radius: 50%;
  }
  .cid-svH4Eyg9Ao .card-box {
    margin: auto;
    padding-left: 3rem;
  }
  @media (max-width: 767px) {
    .cid-svH4Eyg9Ao .card-box {
      padding-left: 0;
      text-align: center;
      padding-top: 2rem;
    }
  }
  @media (max-width: 992px) {
    .cid-svH4Eyg9Ao .mt-5 {
      margin-top: 0.5rem!important;
    }
  }
  .cid-svH4Eyg9Ao .card-text {
    color: #6c758f;
  }
  .cid-svH4Eyg9Ao .card-title {
    color: #0196e3;
  }
  .cid-svH4EEF6ht {
    padding-top: 7rem;
    padding-bottom: 7rem;
    background-color: #f2f3f7;
  }
  .cid-svH4EEF6ht .title {
    padding: 0 2rem;
    color: #36187d;
  }
  .cid-svH4EEF6ht .card-number {
    min-width: fit-content;
    color: #0196e3;
    padding-right: 3ch;
  }
  .cid-svH4EEF6ht .card-title {
    color: var(--plava);
  }
  .cid-svH4EEF6ht .card-wrapper {
    overflow: visible;
    display: flex;
    align-items: center;
    padding: 1rem 1rem;
    border-radius: 3rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    transition: all 0.3s;
    margin-bottom: 2rem;
  }
  @media (max-width: 767px) {
    .cid-svH4EEF6ht .card-wrapper {
      flex-direction: row;
      padding: 1rem 2rem;
    }
    .cid-svH4EEF6ht .card-number{
      writing-mode: vertical-rl!important;
      text-orientation: mixed!important;
  }
  }
  .cid-svH4EEF6ht .card-wrapper:hover {
    background: #f8f9fb;
  }
  .cid-svH4EEF6ht .mbr-iconfont {
    font-size: 1.5rem;
    color: #0196e3;
  }
  .cid-svH4EEF6ht .card-box {
    margin: auto;
    padding-left: 3rem;
  }
  @media (max-width: 767px) {
    .cid-svH4EEF6ht .card-box {
      padding-left: 0;
      text-align: center;
      padding-top: 1rem;
      padding-bottom: 1rem;
    }
    .cid-svH4EEF6ht {
      padding-top: 0rem;
      padding-bottom: 4rem;
     
    }
  }
  @media (max-width: 992px) {
    .cid-svH4EEF6ht .mt-5 {
      margin-top: 0.5rem!important;
    }
  }
  .cid-svMGGXftGy {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f2f3f7;
  }
  .cid-svMGGXftGy img,
  .cid-svMGGXftGy .item-img {
    border-radius: 2rem;
    transition: all 0.3s;
    overflow: hidden;
    width: 100%;
    height: 100%;
    height: 300px;
    object-fit: cover;
  }
  .cid-svMGGXftGy .item:focus,
  .cid-svMGGXftGy span:focus {
    outline: none;
  }
  .cid-svMGGXftGy .item {
    cursor: pointer;
    margin-bottom: 2rem;
  }
  .cid-svMGGXftGy .item-wrapper {
    position: relative;
    padding: 1rem;
    border-radius: 3rem;
    background: #f2f3f7;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  }
  .cid-svMGGXftGy .item-wrapper:hover img {
    transform: scale(1.05);
  }
  @media (max-width: 767px) {
    .cid-svMGGXftGy .item-wrapper {
      border-radius: 2rem;
    }
  }
  .cid-svMGGXftGy .item-content {
    padding: 1.5rem 1rem;
  }
  @media (max-width: 767px) {
    .cid-svMGGXftGy .item-content {
      padding: 1rem 0;
    }
  }
  .cid-svMGGXftGy .mbr-section-title {
    color: #36187d;
  }
  .cid-svMGGXftGy .mbr-text,
  .cid-svMGGXftGy .mbr-section-btn {
    text-align: center;
  }
  .cid-svMGGXftGy .item-title {
    text-align: center;
    color: #36187d;
  }
  .cid-svMGGXftGy .item-subtitle {
    text-align: center;
  }
  .cid-svH4EWbMfd {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f2f3f7;
  }
  .cid-svH4EWbMfd .mbr-iconfont {
    display: block;
    font-size: 4rem;
    color: #0196e3;
    margin-bottom: 1.5rem;
  }
  .cid-svH4EWbMfd .col-lg-4,
  .cid-svH4EWbMfd .col-12 {
    padding: 0 2rem;
  }
  .cid-svH4EWbMfd .row {
    margin: 0 -2rem;
    justify-content: center;
  }
  .cid-svH4EWbMfd .card-wrapper {
    padding: 3rem 2rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    border-radius: 3rem;
  }
  @media (max-width: 767px) {
    .cid-svH4EWbMfd .card-wrapper {
      padding: 4rem 2rem;
    }
  }
  @media (max-width: 992px) {
    .cid-svH4EWbMfd .card-wrapper {
      margin-bottom: 3rem;
    }
  }
  .cid-svH4EWbMfd .card-title,
  .cid-svH4EWbMfd .iconfont-wrapper {
    color: #36187d;
    text-align: center;
  }
  .cid-svH4EWbMfd .card-text {
    color: #6c758f;
    text-align: center;
  }
  .cid-svH4EWbMfd .mbr-section-subtitle {
    color: #6c758f;
  }
  .cid-svH4EWbMfd .mbr-section-title {
    color: #36187d;
  }
  .cid-svMGHXCOeV {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f2f3f7;
  }
  .cid-svMGHXCOeV img,
  .cid-svMGHXCOeV .item-img {
    border-radius: 2rem;
    transition: all 0.3s;
    overflow: hidden;
    width: 100%;
    height: 100%;
    height: 300px;
    object-fit: cover;
  }
  .cid-svMGHXCOeV .item:focus,
  .cid-svMGHXCOeV span:focus {
    outline: none;
  }
  .cid-svMGHXCOeV .item {
    cursor: pointer;
    margin-bottom: 2rem;
  }
  .cid-svMGHXCOeV .item-wrapper {
    position: relative;
    padding: 1rem;
    border-radius: 3rem;
    background: #f2f3f7;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  }
  .cid-svMGHXCOeV .item-wrapper:hover img {
    transform: scale(1.05);
  }
  @media (max-width: 767px) {
    .cid-svMGHXCOeV .item-wrapper {
      border-radius: 2rem;
    }
  }
  .cid-svMGHXCOeV .item-content {
    padding: 1.5rem 1rem;
  }
  @media (max-width: 767px) {
    .cid-svMGHXCOeV .item-content {
      padding: 1rem 0;
    }
  }
  .cid-svMGHXCOeV .mbr-section-title {
    color: #36187d;
  }
  .cid-svMGHXCOeV .item-title {
    color: #36187d;
  }
  .cid-svMGHXCOeV .item-subtitle {
    color: #bec2cf;
  }
  .cid-svMGHXCOeV .mbr-text,
  .cid-svMGHXCOeV .mbr-section-btn {
    color: #36187d;
  }
  .cid-svMGHXCOeV .mbr-link {
    color: #0196e3;
  }
  .cid-svMGIp7Z6a {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f2f3f7;
  }
  .cid-svMGIp7Z6a img,
  .cid-svMGIp7Z6a .item-img {
    border-radius: 2rem;
    transition: all 0.3s;
    overflow: hidden;
    width: 95%;
    height: 95%;
   
    object-fit: cover;
  }
  .cid-svMGIp7Z6a .item:focus,
  .cid-svMGIp7Z6a span:focus {
    outline: none;
  }
  .cid-svMGIp7Z6a .item {
    cursor: pointer;
    margin-bottom: 2rem;
  }
  .cid-svMGIp7Z6a .item-wrapper {
    position: relative;
    padding: 1rem;
    border-radius: 3rem;
    background: #f2f3f7;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
   justify-content: space-between;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  }
  .cid-svMGIp7Z6a .item-wrapper:hover img {
    transform: scale(1.05);
  }
  @media (max-width: 767px) {
    .cid-svMGIp7Z6a .item-wrapper {
      border-radius: 2rem;
    }

  }
  .cid-svMGIp7Z6a .item-content {
    padding: 1.5rem 1rem;
    display: flex;
    min-height: 100%;
    flex-flow: column nowrap;
    justify-content: space-between;
  }
 
  .cid-svMGIp7Z6a {
    padding-top: 6rem;
    padding-bottom: 0rem;
    background-color: #f2f3f7;
  }
  @media (max-width: 767px) {
    .cid-svMGIp7Z6a .item-content {
      padding: 1rem 0;
    }
    .cid-svMGIp7Z6a {
      padding-top: 1rem;}
  }
  .cid-svMGIp7Z6a .mbr-section-title {
    color: var(--zelena);
  }
  .cid-svMGIp7Z6a .item-title {
    color: #36187d;
  }
  .cid-svMGIp7Z6a .item-subtitle {
    color: #bec2cf;
  }
  .cid-svMGIp7Z6a .mbr-text,
  .cid-svMGIp7Z6a .mbr-section-btn {
    color: #6c758f;
  }
  .cid-svMGIp7Z6a .mbr-link {
    color: #0196e3;
    display: block;
  }
  .cid-svH4FPy3Ex {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f2f3f7;
  }
  .cid-svH4FPy3Ex .item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
  }
  .cid-svH4FPy3Ex .icon-box {
    background: #f2f3f7;
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 1.5rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .cid-svH4FPy3Ex .mbr-iconfont {
    font-size: 2rem;
    color: #0196e3;
  }
  @media (max-width: 991px) {
    .cid-svH4FPy3Ex .card {
      margin-bottom: 2rem;
    }
    .cid-svH4FPy3Ex .card-wrapper {
      margin-bottom: 2rem;
    }
  }
  .cid-svH4FPy3Ex .card-title,
  .cid-svH4FPy3Ex .card-box {
    color: #36187d;
  }
  .cid-svH4FPy3Ex .icon-title {
    color: #36187d;
  }
  .cid-svH4FPy3Ex .icon-text {
    color: #6c758f;
  }
  .cid-svH4FPy3Ex .mbr-text,
  .cid-svH4FPy3Ex .mbr-section-btn {
    color: #6c758f;
  }
  .cid-svH4FYogff {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #f2f3f7;
  }
  .cid-svH4FYogff .mbr-section-subtitle {
    color: #36187d;
  }
  .cid-svH4FYogff .mbr-text {
    color: #6c758f;
  }
  .cid-svH4G5zVII {
    padding-top: 7rem;
    padding-bottom: 7rem;
    background-color: #f2f3f7;
  }
  .cid-svH4G5zVII .mbr-section-title {
    color: #36187d;
  }
  .cid-svH4G5zVII .mbr-section-subtitle {
    color: #36187d;
  }
  @media (max-width: 992px) {
    .cid-svH4G5zVII .align-left {
      text-align: center;
    }
  }
  .cid-svH4G5zVII .row {
    transition: all 0.3s;
    margin: 0;
    padding: 4rem;
    border-radius: 3rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  }
  @media (max-width: 767px) {
    .cid-svH4G5zVII .row {
      padding: 3rem 2rem;
    }
  }
  .cid-svH4GwyLAa {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f2f3f7;
  }
  .cid-svH4GwyLAa .mbr-text {
    color: #6c758f;
  }
  .cid-svH4GwyLAa .mbr-section-subtitle {
    color: #6c758f;
  }
  .cid-svH4GwyLAa .mbr-section-title {
    color: #36187d;
  }
  .cid-svH4GTQnxC {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f2f3f7;
  }
  .cid-svH4GTQnxC .mbr-section-title {
    color: #36187d;
  }
  .cid-svH4GTQnxC .mbr-section-subtitle {
    color: #6c758f;
  }
  @media (max-width: 992px) {
    .cid-svH4GTQnxC .align-left {
      text-align: center;
    }
  }
  .cid-svH4HnX6uA {
    padding-top: 7rem;
    padding-bottom: 7rem;
    background-color: #f2f3f7;
  }
  .cid-svH4HnX6uA .title {
    padding: 0 2rem;
    color: #0196e3;
    text-align: center;
    max-width: 600px;
    margin: auto;
  }
  .cid-svH4HnX6uA .card-title {
    color: #36187d;
    text-align: center;
  }
  .cid-svH4HnX6uA .card-wrapper {
    overflow: visible;
    display: flex;
    align-items: center;
    padding: 2rem 3rem;
    border-radius: 3rem;
    cursor: pointer;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    transition: all 0.3s;
    margin-bottom: 2rem;
  }
  @media (max-width: 767px) {
    .cid-svH4HnX6uA .card-wrapper {
      flex-direction: row;
      padding: 1rem 2rem;
    }
  }
  .cid-svH4HnX6uA .card-wrapper:hover {
    background: #f8f9fb;
    box-shadow: 0em 0em 3em #d2dce9, -0.5em -0.5em 1em #ffffff;
  }
  .cid-svH4HnX6uA .card-box {
    margin: auto;
  }
  @media (max-width: 767px) {
    .cid-svH4HnX6uA .card-box {
      text-align: center;
    }
  }
  @media (max-width: 992px) {
    .cid-svH4HnX6uA .mt-5 {
      margin-top: 0.5rem!important;
    }
  }
  .cid-svH4HnX6uA .card-text {
    text-align: center;
  }
  .cid-svH4Hvj5g7 {
    padding-top: 7rem;
    padding-bottom: 7rem;
    background-color: #f2f3f7;
  }
  .cid-svH4Hvj5g7 .row {
    align-items: center;
  }
  @media (max-width: 991px) {
    .cid-svH4Hvj5g7 .row {
      flex-direction: column-reverse;
    }
    .cid-svH4Hvj5g7 .image-wrapper {
      margin-bottom: 2rem;
    }
    .cid-svH4Hvj5g7 .card-wrapper {
      padding: 0 1rem;
    }
  }
  @media (min-width: 992px) {
    .cid-svH4Hvj5g7 .card-wrapper {
      padding-right: 2rem;
    }
  }
  .cid-svH4Hvj5g7 .image-wrapper img {
    width: 100%;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    object-fit: cover;
    border-radius: 3rem;
  }
  .cid-svH4Hvj5g7 .card-title {
    color: #36187d;
  }
  .cid-svH4Hvj5g7 .mbr-text,
  .cid-svH4Hvj5g7 .mbr-section-btn {
    color: #6c758f;
  }
  .cid-svH4HPTBTH {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #f2f3f7;
  }
  .cid-svH4HPTBTH .mbr-media {
    position: relative;
  }
  .cid-svH4HPTBTH .mbr-media img {
    width: 100%;
    object-fit: cover;
    border-radius: 3rem;
  }
  .cid-svH4HPTBTH .box {
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    border-radius: 3rem;
  }
  .cid-svH4HPTBTH .icon-wrap {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
  }
  .cid-svH4HPTBTH .mbr-iconfont {
    font-size: 3rem;
    color: #0196e3;
    padding: 2rem;
    border-radius: 50%;
    transition: all 0.3s;
    background: #dae2ec;
  }
  .cid-svH4HPTBTH .modalWindow {
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    background-color: rgba(61, 61, 61, 0.65);
    width: 100%;
    height: 100%;
  }
  .cid-svH4HPTBTH .modalWindow .modalWindow-container {
    display: table-cell;
    vertical-align: middle;
  }
  .cid-svH4HPTBTH .modalWindow .modalWindow-video {
    height: calc(44.9943757vw);
    width: 80vw;
    margin: 0 auto;
  }
  .cid-svH4HPTBTH a {
    text-decoration: none!important;
  }
  .cid-svH4HPTBTH .close {
    position: fixed;
    opacity: 1;
    font-size: 22px;
    font-weight: 300;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    top: 2.5rem;
    right: 2.5rem;
    border: 2px solid #fff;
    text-shadow: none;
    z-index: 5;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    display: flex;
  }
  .cid-svH4HPTBTH .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
  }
  .cid-svH4IoSjLt {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #f2f3f7;
  }
  .cid-svH4IoSjLt .row {
    align-items: stretch;
    justify-content: center;
  }
  .cid-svH4IoSjLt .row .img-item {
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }
  .cid-svH4IoSjLt .row .img-item img {
    width: 100%;
    object-fit: cover;
    height: 400px;
    margin-bottom: 0.5rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    border-radius: 3rem;
  }
  .cid-svH4IoSjLt P {
    color: #6c758f;
  }
  .cid-svH4HYP28C {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f2f3f7;
  }
  @media (max-width: 991px) {
    .cid-svH4HYP28C .image-wrapper {
      margin-bottom: 1rem;
    }
  }
  .cid-svH4HYP28C .row {
    flex-direction: row-reverse;
  }
  .cid-svH4HYP28C img {
    width: 100%;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    border-radius: 3rem;
  }
  .cid-svH4IKEkd5 {
    padding-top: 7rem;
    padding-bottom: 7rem;
    background-color: #f2f3f7;
  }
  .cid-svH4IKEkd5 .title {
    padding: 0 2rem;
    color: #36187d;
  }
  .cid-svH4IKEkd5 .card-wrapper {
    overflow: visible;
    display: flex;
    padding: 3rem 4rem;
    border-radius: 3rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    margin-bottom: 4rem;
  }
  @media (max-width: 767px) {
    .cid-svH4IKEkd5 .card-wrapper {
      flex-direction: column;
      padding: 2rem;
    }
  }
  .cid-svH4IKEkd5 .mbr-iconfont {
    font-size: 2.5rem;
    color: #0196e3;
    padding: 2rem;
    padding-top: 2.2rem;
    cursor: pointer;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    border-radius: 50%;
    transition: all 0.3s;
  }
  .cid-svH4IKEkd5 .mbr-iconfont:hover {
    background: #f8f9fb;
  }
  .cid-svH4IKEkd5 img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: auto;
  }
  .cid-svH4IKEkd5 .card-box {
    margin: auto;
    padding-left: 3rem;
  }
  @media (max-width: 767px) {
    .cid-svH4IKEkd5 .card-box {
      padding-left: 0;
      text-align: center;
      padding-top: 2rem;
      padding-bottom: 2rem;
    }
  }
  @media (max-width: 992px) {
    .cid-svH4IKEkd5 .mt-5 {
      margin-top: 0.5rem!important;
    }
  }
  .cid-svH4IKEkd5 .card-text {
    color: #6c758f;
  }
  .cid-svH4IKEkd5 .card-title {
    color: #36187d;
  }
  .cid-svH4Jbeiia {
    padding-top: 7rem;
    padding-bottom: 7rem;
    background-color: #f2f3f7;
  }
  .cid-svH4Jbeiia .title {
    padding: 0 2rem;
    color: #36187d;
  }
  .cid-svH4Jbeiia .card-wrapper {
    overflow: visible;
    padding: 4rem 2rem;
    border-radius: 3rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    margin-bottom: 4rem;
  }
  @media (max-width: 767px) {
    .cid-svH4Jbeiia .card-wrapper {
      flex-direction: column;
      padding: 2rem 1rem;
    }
  }
  .cid-svH4Jbeiia img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: auto;
    margin-bottom: 2rem;
  }
  .cid-svH4Jbeiia .card-box {
    margin: auto;
  }
  @media (max-width: 767px) {
    .cid-svH4Jbeiia .card-box {
      padding-left: 0;
      text-align: center;
      padding-top: 2rem;
      padding-bottom: 2rem;
    }
  }
  @media (max-width: 992px) {
    .cid-svH4Jbeiia .mt-5 {
      margin-top: 0.5rem!important;
    }
  }
  .cid-svH4Jbeiia .card-text {
    color: #6c758f;
    text-align: center;
  }
  .cid-svH4Jbeiia .card-title {
    color: #36187d;
    text-align: center;
  }
  .cid-svH4JlC2H9 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #f2f3f7;
  }
  .cid-svH4JlC2H9 .image-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-top: 5px;
    margin-right: 1rem;
    overflow: hidden;
  }
  .cid-svH4JlC2H9 .image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .cid-svH4JlC2H9 .col-lg-6 {
    padding: 0 2rem;
  }
  .cid-svH4JlC2H9 .row {
    margin: 0 -2rem;
    justify-content: center;
  }
  .cid-svH4JlC2H9 .card-wrapper {
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  }
  @media (max-width: 767px) {
    .cid-svH4JlC2H9 .card-wrapper {
      padding: 1rem 1rem;
      margin-bottom: 2rem;
    }
  }
  .cid-svH4JlC2H9 .mbr-text {
    color: #6c758f;
  }
  .cid-svH4JlC2H9 .name {
    color: #36187d;
  }
  .cid-svH4JlC2H9 .position {
    color: #6c758f;
  }
  @media (max-width: 767px) {
    .cid-svH4JlC2H9 .d-flex {
      justify-content: center;
    }
  }
  .cid-svH4JlC2H9 .mbr-section-title {
    color: #36187d;
  }
  .cid-svH4JwvU8W {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f2f3f7;
  }
  .cid-svH4JwvU8W .carousel-item {
    justify-content: center;
  }
  .cid-svH4JwvU8W .carousel-item.active,
  .cid-svH4JwvU8W .carousel-item-next,
  .cid-svH4JwvU8W .carousel-item-prev {
    display: flex;
  }
  .cid-svH4JwvU8W .carousel-controls a {
    transition: opacity .5s;
    font-size: 30px;
    position: absolute;
    top: 180px;
    bottom: auto;
    height: 60px;
    width: 60px;
    padding: 10px;
    color: #155ce0;
  }
  .cid-svH4JwvU8W .carousel-controls a .mbr-iconfont {
    font-weight: 800;
  }
  .cid-svH4JwvU8W .mbr-iconfont {
    color: #36187d;
  }
  .cid-svH4JwvU8W .carousel-control-next span {
    padding-left: 5px;
  }
  .cid-svH4JwvU8W .carousel-control-prev span {
    padding-right: 5px;
  }
  .cid-svH4JwvU8W .user_image {
    width: 200px;
    height: 200px;
    margin-bottom: 1.6rem;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    margin: 0 auto 2rem auto;
  }
  .cid-svH4JwvU8W .user_image img {
    width: 100%;
    min-width: 100%;
    min-height: 100%;
  }
  @media (max-width: 230px) {
    .cid-svH4JwvU8W .user_image {
      width: 100%;
      height: auto;
    }
  }
  .cid-svH4JwvU8W .user_text {
    color: #6c758f;
  }
  .cid-svH4JwvU8W H3 {
    color: #36187d;
  }
  .cid-svH4JwvU8W .user_name {
    color: #36187d;
  }
  .cid-svH4JM6TMS {
    padding-top: 7rem;
    padding-bottom: 7rem;
    background-color: #f2f3f7;
  }
  .cid-svH4JM6TMS .title {
    padding: 0 2rem;
    color: #36187d;
  }
  .cid-svH4JM6TMS .card-title {
    max-width: 600px;
    color: #36187d;
  }
  .cid-svH4JM6TMS .card-wrapper {
    overflow: visible;
    display: flex;
    padding: 3rem 4rem;
    border-radius: 3rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    margin-bottom: 4rem;
  }
  @media (max-width: 767px) {
    .cid-svH4JM6TMS .card-wrapper {
      flex-direction: column;
      padding: 2rem;
    }
  }
  .cid-svH4JM6TMS .mbr-iconfont {
    font-size: 2.5rem;
    color: #0196e3;
    padding: 2rem;
    padding-top: 2.2rem;
    cursor: pointer;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    border-radius: 50%;
    transition: all 0.3s;
  }
  .cid-svH4JM6TMS .mbr-iconfont:hover {
    background: #f8f9fb;
  }
  .cid-svH4JM6TMS img {
    width: 150px;
    background: white;
    height: 150px;
    border-radius: 50%;
    padding: 1rem;
    object-fit: contain;
    margin: auto;
  }
  .cid-svH4JM6TMS .card-box {
    margin: auto;
    padding-left: 3rem;
  }
  @media (max-width: 767px) {
    .cid-svH4JM6TMS .card-box {
      padding-left: 0;
      text-align: center;
      padding-top: 2rem;
      padding-bottom: 2rem;
    }
  }
  @media (max-width: 992px) {
    .cid-svH4JM6TMS .mt-5 {
      margin-top: 0.5rem!important;
    }
  }
  .cid-svH4JVvdEa {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f2f3f7;
  }
  .cid-svH4JVvdEa img {
    width: 150px;
    margin: auto;
    background: white;
    height: 150px;
    border-radius: 50%;
    padding: 1rem;
    object-fit: contain;
  }
  .cid-svH4JVvdEa .card {
    transition: all 0.3s;
    height: fit-content;
    padding: 1rem 0;
    opacity: 0.7;
    margin-bottom: 1rem;
  }
  .cid-svH4JVvdEa .row {
    border-radius: 3rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    padding: 2rem;
    margin: 0;
  }
  .cid-svH4K4TfCN {
    padding-top: 7rem;
    padding-bottom: 7rem;
    background-color: #f2f3f7;
  }
  .cid-svH4K4TfCN .title {
    padding: 0 2rem;
    color: #36187d;
  }
  .cid-svH4K4TfCN .card-title {
    max-width: 600px;
    color: #36187d;
  }
  .cid-svH4K4TfCN .card-wrapper {
    overflow: visible;
    display: flex;
    padding: 3rem 4rem;
    border-radius: 3rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    margin-bottom: 4rem;
  }
  @media (max-width: 767px) {
    .cid-svH4K4TfCN .card-wrapper {
      flex-direction: column;
      padding: 2rem;
    }
  }
  .cid-svH4K4TfCN .mbr-iconfont {
    font-size: 2.5rem;
    color: #0196e3;
    padding: 2rem;
    padding-top: 2.2rem;
    cursor: pointer;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    border-radius: 50%;
    transition: all 0.3s;
  }
  .cid-svH4K4TfCN .mbr-iconfont:hover {
    background: #f8f9fb;
  }
  .cid-svH4K4TfCN img {
    width: 150px;
    background: white;
    height: 150px;
    border-radius: 50%;
    padding: 1rem;
    object-fit: contain;
    margin: auto;
  }
  .cid-svH4K4TfCN .card-box {
    margin: auto;
  }
  @media (max-width: 767px) {
    .cid-svH4K4TfCN .card-box {
      text-align: center;
      padding-top: 2rem;
      padding-bottom: 2rem;
    }
  }
  @media (max-width: 992px) {
    .cid-svH4K4TfCN .mt-5 {
      margin-top: 0.5rem!important;
    }
  }
  .cid-svH4K4TfCN .card-text {
    color: #0196e3;
  }
  .cid-svH4Kp5BV7 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: #f2f3f7;
  }
  .cid-svH4Kp5BV7 .google-map {
    height: 30rem;
    position: relative;
    filter: grayscale(1);
  }
  .cid-svH4Kp5BV7 .google-map iframe {
    height: 100%;
    width: 100%;
    border-radius: 3rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  }
  .cid-svH4Kp5BV7 .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-svH4Kp5BV7 .google-map[data-state] {
    background: #e9e5dc;
  }
  .cid-svH4Kp5BV7 .google-map[data-state="loading"] [data-state-details] {
    display: none;
  }
  .cid-svH4KxZcdq {
    padding-top: 7rem;
    padding-bottom: 7rem;
    background-color: #f2f3f7;
  }
  .cid-svH4KxZcdq .col-lg-6 {
    padding: 0 2rem;
  }
  .cid-svH4KxZcdq .row {
    margin: 0 -2rem;
    justify-content: center;
  }
  .cid-svH4KxZcdq .card-wrapper {
    overflow: visible;
    display: flex;
    justify-content: space-between;
    padding: 2rem 3rem;
    transition: all 0.3s;
    border-radius: 3rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  }
  @media (max-width: 991px) {
    .cid-svH4KxZcdq .card-wrapper {
      margin-bottom: 4rem;
    }
  }
  @media (max-width: 767px) {
    .cid-svH4KxZcdq .card-wrapper {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .cid-svH4JVvdEa {
      padding-top: 0rem;
      padding-bottom: 6rem;
      
    }
  }
  .cid-svH4KxZcdq .mbr-iconfont {
    font-size: 1.5rem;
    color: #0196e3;
   
    width: fit-content;
    transition: all 0.3s;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    border-radius: 50%;
    margin: 0 0.5rem;
    margin-bottom: 2rem;
    display: block;
  }
  .cid-svH4KxZcdq .mbr-iconfont:hover {
    background: #ffffff;
  }
  .cid-svH4KxZcdq .card-box {
    max-width: 340px;
  }
  @media (max-width: 767px) {
    .cid-svH4KxZcdq .card-box {
      padding-left: 0;
      text-align: center;
      padding-top: 2rem;
    }
  }
  @media (max-width: 992px) {
    .cid-svH4KxZcdq .mt-5 {
      margin-top: 0.5rem!important;
    }
  }
  @media (max-width: 767px) {
    .cid-svH4KxZcdq .icon-wrapper {
      display: flex;
      margin-top: 2rem;
      justify-content: center;
    }
  }
  .cid-svH4KxZcdq .card-text {
    color: #6c758f;
  }
  .cid-svH4KxZcdq .card-title {
    color: #36187d;
  }
  .cid-svH4KxZcdq .card-phone {
    color: #0196e3;
  }
  .cid-svH4KIedkt {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f2f3f7;
  }
  .cid-svH4KIedkt .mbr-iconfont {
    display: block;
    font-size: 4rem;
    color: #0196e3;
    margin-bottom: 1.5rem;
  }
  .cid-svH4KIedkt .col-lg-4,
  .cid-svH4KIedkt .col-12 {
    padding: 0 2rem;
  }
  .cid-svH4KIedkt .row {
    margin: 0 -2rem;
    justify-content: center;
  }
  .cid-svH4KIedkt .card-wrapper {
    padding: 3rem 2rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    border-radius: 3rem;
  }
  @media (max-width: 767px) {
    .cid-svH4KIedkt .card-wrapper {
      padding: 4rem 2rem;
    }
  }
  @media (max-width: 992px) {
    .cid-svH4KIedkt .card-wrapper {
      margin-bottom: 3rem;
    }
  }
  .cid-svH4KIedkt .card-title,
  .cid-svH4KIedkt .iconfont-wrapper {
    color: #36187d;
    text-align: center;
  }
  .cid-svH4KIedkt .card-text {
    color: #6c758f;
    text-align: center;
  }
  .cid-svH4KIedkt .mbr-section-subtitle {
    color: #6c758f;
  }
  .cid-svH4KIedkt .mbr-section-title {
    color: var(--zelena);
  }
  .cid-svH4KRWFc4 {
    padding-top: 7rem;
    padding-bottom: 7rem;
    background-color: #f2f3f7;
  }
  .cid-svH4KRWFc4 .col-lg-6 {
    padding: 0 2rem;
  }
  .cid-svH4KRWFc4 .row {
    margin: 0 -2rem;
    justify-content: center;
  }
  .cid-svH4KRWFc4 .card-wrapper {
    overflow: visible;
    display: flex;
    justify-content: space-between;
    padding: 2rem 3rem;
    transition: all 0.3s;
    border-radius: 3rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  }
  @media (max-width: 991px) {
    .cid-svH4KRWFc4 .card-wrapper {
      margin-bottom: 4rem;
    }
  }
  @media (max-width: 767px) {
    .cid-svH4KRWFc4 .card-wrapper {
      flex-direction: column;
      padding: 2rem 1rem;
    }
  }
  .cid-svH4KRWFc4 .mbr-iconfont {
    font-size: 1.5rem;
    color: #0196e3;
    padding: 1rem;
    width: fit-content;
    transition: all 0.3s;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    border-radius: 50%;
    margin: 0 0.5rem;
    margin-bottom: 2rem;
    display: block;
  }
  .cid-svH4KRWFc4 .mbr-iconfont:hover {
    background: #ffffff;
  }
  .cid-svH4KRWFc4 .card-box {
    max-width: 340px;
  }
  @media (max-width: 767px) {
    .cid-svH4KRWFc4 .card-box {
      padding-left: 0;
      text-align: center;
      padding-top: 2rem;
    }
  }
  @media (max-width: 992px) {
    .cid-svH4KRWFc4 .mt-5 {
      margin-top: 0.5rem!important;
    }
  }
  @media (max-width: 767px) {
    .cid-svH4KRWFc4 .icon-wrapper {
      display: flex;
      margin-top: 2rem;
      justify-content: center;
    }
  }
  .cid-svH4KRWFc4 .card-text {
    color: #6c758f;
  }
  .cid-svH4KRWFc4 .card-title {
    color: #36187d;
  }
  .cid-svH4KRWFc4 .card-phone {
    color: #0196e3;
  }
  .cid-svH4L55mcR {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #f2f3f7;
  }
  .cid-svH4L55mcR .media-container-row {
    justify-content: space-between;
  }
  .cid-svH4L55mcR .text-content {
    max-width: 50%;
  }
  @media (max-width: 768px) {
    .cid-svH4L55mcR .text-content {
      max-width: none;
    }
  }
  @media (max-width: 768px) {
    .cid-svH4L55mcR .icons {
      justify-content: center !important;
    }
    .cid-svH4L55mcR .text-content * {
      text-align: center;
    }
  }
  .cid-svH4L55mcR .mbr-iconfont {
    font-size: 1.8rem;
    color: #0196e3;
    padding: 1.2rem;
    width: fit-content;
    transition: all 0.3s;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    border-radius: 50%;
    margin: 0 0.5rem;
    margin-bottom: 2rem;
    display: block;
  }
  .cid-svH4L55mcR .mbr-iconfont:hover {
    background: #ffffff;
  }
  .cid-svH4L55mcR .mbr-section-title {
    color: #36187d;
  }
  .cid-svH4L55mcR P {
    color: #6c758f;
  }
  .cid-svH4LfuqdO {
    padding-top: 7rem;
    padding-bottom: 7rem;
    background-color: #f2f3f7;
  }
  .cid-svH4LfuqdO .col-lg-6 {
    padding: 0 2rem;
  }
  .cid-svH4LfuqdO .row {
    margin: 0 -2rem;
    justify-content: center;
  }
  .cid-svH4LfuqdO .icon-wrapper {
    margin-bottom: 0;
    margin-top: auto;
  }
  .cid-svH4LfuqdO .card-wrapper {
    overflow: visible;
    display: flex;
    justify-content: space-between;
    padding: 2rem 3rem;
    transition: all 0.3s;
    border-radius: 3rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  }
  @media (max-width: 991px) {
    .cid-svH4LfuqdO .card-wrapper {
      margin-bottom: 4rem;
    }
  }
  @media (max-width: 767px) {
    .cid-svH4LfuqdO .card-wrapper {
      flex-direction: column;
      padding: 2rem 1rem;
    }
  }
  .cid-svH4LfuqdO .mbr-iconfont {
    font-size: 1.5rem;
    color: #0196e3;
    padding: 1rem;
    width: fit-content;
    transition: all 0.3s;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    border-radius: 50%;
    margin: 0 0.5rem;
    display: block;
    margin-bottom: 1rem;
  }
  .cid-svH4LfuqdO .mbr-iconfont:hover {
    background: #ffffff;
  }
  .cid-svH4LfuqdO .card-box {
    max-width: 340px;
  }
  @media (max-width: 767px) {
    .cid-svH4LfuqdO .card-box {
      padding-left: 0;
      text-align: center;
      padding-top: 2rem;
    }
  }
  @media (max-width: 992px) {
    .cid-svH4LfuqdO .mt-5 {
      margin-top: 0.5rem!important;
    }
  }
  @media (max-width: 767px) {
    .cid-svH4LfuqdO .icon-wrapper {
      display: flex;
      margin-top: 2rem;
      justify-content: center;
    }
  
  }
  .cid-svH4LfuqdO .card-text {
    color: #6c758f;
  }
  .cid-svH4LfuqdO .card-title {
    color: #36187d;
  }
  .cid-svH4LfuqdO .card-phone {
    color: #0196e3;
  }
  .cid-svH4Lp7wxt {
    padding-top: 5rem;
    padding-bottom: 7rem;
    background-color: #f2f3f7;
  }
  .cid-svH4Lp7wxt .google-map {
    height: 350px;
    position: relative;
    filter: grayscale(1);
  }
  .cid-svH4Lp7wxt .google-map iframe {
    height: 100%;
    width: 100%;
    border-radius: 3rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  }
  .cid-svH4Lp7wxt .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-svH4Lp7wxt .google-map[data-state] {
    background: #e9e5dc;
  }
  .cid-svH4Lp7wxt .google-map[data-state="loading"] [data-state-details] {
    display: none;
  }
  .cid-svH4Lp7wxt .mbr-section-title {
    color: #36187d;
  }
  @media (max-width: 992px) {
    .cid-svH4Lp7wxt .md-pb {
      margin-bottom: 2rem!important;
    }
  }
  .cid-svH4LAXxuD {
    padding-top: 75px;
    padding-bottom: 75px;
    background-color: #f2f3f7;
  }
  .cid-svH4LAXxuD .mbr-overlay {
    background-color: #ffffff;
    opacity: 0.4;
  }
  .cid-svH4LAXxuD .btn {
    padding: 1rem 3rem;
    border-radius: 2rem;
  }
  @media (max-width: 767px) {
    .cid-svH4LAXxuD .col-auto {
      margin: auto;
    }
  }
  .cid-svH4LAXxuD textarea {
    min-height: 200px;
  }
  .cid-svH4LAXxuD .form-control,
  .cid-svH4LAXxuD .field-input {
    padding: 1.5rem 2rem;
    box-shadow: inset 1px 1px 2px 0 #d2dce9;
    background-color: #edeff3;
    border-radius: 3rem;
    border: 0!important;
    color: #000000;
    transition: 0.4s;
    outline: none;
  }
  .cid-svH4LAXxuD .form-control::-webkit-input-placeholder,
  .cid-svH4LAXxuD .field-input::-webkit-input-placeholder,
  .cid-svH4LAXxuD .form-control::-webkit-input-placeholder,
  .cid-svH4LAXxuD .field-input::-webkit-input-placeholder {
    color: #36187d;
  }
  .cid-svH4LAXxuD .form-control:-moz-placeholder,
  .cid-svH4LAXxuD .field-input:-moz-placeholder,
  .cid-svH4LAXxuD .form-control:-moz-placeholder,
  .cid-svH4LAXxuD .field-input:-moz-placeholder {
    color: #36187d;
  }
  .cid-svH4LAXxuD .form-control:hover,
  .cid-svH4LAXxuD .field-input:hover,
  .cid-svH4LAXxuD .form-control:focus,
  .cid-svH4LAXxuD .field-input:focus {
    background-color: #edeff3;
    color: #232323;
    border: 0!important;
    box-shadow: inset 1px 1px 2px 0 #d2dce9;
    outline: none;
  }
  .cid-svH4LAXxuD .form-control:hover::-webkit-input-placeholder,
  .cid-svH4LAXxuD .field-input:hover::-webkit-input-placeholder,
  .cid-svH4LAXxuD .form-control:focus::-webkit-input-placeholder,
  .cid-svH4LAXxuD .field-input:focus::-webkit-input-placeholder,
  .cid-svH4LAXxuD .form-control:hover::-webkit-input-placeholder,
  .cid-svH4LAXxuD .field-input:hover::-webkit-input-placeholder,
  .cid-svH4LAXxuD .form-control:focus::-webkit-input-placeholder,
  .cid-svH4LAXxuD .field-input:focus::-webkit-input-placeholder {
    color: #36187d;
  }
  .cid-svH4LAXxuD .form-control:hover:-moz-placeholder,
  .cid-svH4LAXxuD .field-input:hover:-moz-placeholder,
  .cid-svH4LAXxuD .form-control:focus:-moz-placeholder,
  .cid-svH4LAXxuD .field-input:focus:-moz-placeholder,
  .cid-svH4LAXxuD .form-control:hover:-moz-placeholder,
  .cid-svH4LAXxuD .field-input:hover:-moz-placeholder,
  .cid-svH4LAXxuD .form-control:focus:-moz-placeholder,
  .cid-svH4LAXxuD .field-input:focus:-moz-placeholder {
    color: #36187d;
  }
  .cid-svH4LAXxuD .jq-number__spin:hover,
  .cid-svH4LAXxuD .jq-number__spin:focus {
    background-color: #edeff3;
    color: #ffffff;
    box-shadow: none;
    outline: none;
  }
  .cid-svH4LAXxuD .jq-number__spin {
    background-color: #edeff3;
    color: #000000;
    transition: 0.4s;
    box-shadow: none;
    outline: none;
  }
  .cid-svH4LAXxuD .jq-selectbox li,
  .cid-svH4LAXxuD .jq-selectbox li {
    background-color: #edeff3;
    color: #000000;
  }
  .cid-svH4LAXxuD .jq-selectbox li:hover,
  .cid-svH4LAXxuD .jq-selectbox li.selected {
    background-color: #edeff3;
    color: #000000;
  }
  .cid-svH4LAXxuD .jq-selectbox:hover .jq-selectbox__trigger-arrow,
  .cid-svH4LAXxuD .jq-number__spin.minus:hover:after,
  .cid-svH4LAXxuD .jq-number__spin.plus:hover:after {
    border-top-color: #edeff3;
    border-bottom-color: #edeff3;
  }
  .cid-svH4LAXxuD .jq-selectbox .jq-selectbox__trigger-arrow,
  .cid-svH4LAXxuD .jq-number__spin.minus:after,
  .cid-svH4LAXxuD .jq-number__spin.plus:after {
    border-top-color: #edeff3;
    border-bottom-color: #edeff3;
  }
  .cid-svH4LAXxuD input::-webkit-clear-button {
    display: none;
  }
  .cid-svH4LAXxuD input::-webkit-inner-spin-button {
    display: none;
  }
  .cid-svH4LAXxuD input::-webkit-outer-spin-button {
    display: none;
  }
  .cid-svH4LAXxuD input::-webkit-calendar-picker-indicator {
    display: none;
  }
  .cid-svH4LAXxuD H4 {
    color: #36187d;
  }
  .cid-svH4LNpMZX {
    padding-top: 75px;
    padding-bottom: 75px;
    background-color: #f2f3f7;
  }
  .cid-svH4LNpMZX .mbr-overlay {
    background-color: #ffffff;
    opacity: 0.4;
  }
  .cid-svH4LNpMZX .btn {
    padding: 1rem 3rem;
    border-radius: 2rem;
  }
  @media (max-width: 767px) {
    .cid-svH4LNpMZX .col-auto {
      margin: auto;
    }
  }
  .cid-svH4LNpMZX textarea {
    min-height: 200px;
  }
  .cid-svH4LNpMZX .form-control,
  .cid-svH4LNpMZX .field-input {
    padding: 1.5rem 2rem;
    box-shadow: inset 1px 1px 2px 0 #d2dce9;
    background-color: #edeff3;
    border-radius: 3rem;
    border: 0!important;
    color: #000000;
    transition: 0.4s;
    outline: none;
  }
  .cid-svH4LNpMZX .form-control::-webkit-input-placeholder,
  .cid-svH4LNpMZX .field-input::-webkit-input-placeholder,
  .cid-svH4LNpMZX .form-control::-webkit-input-placeholder,
  .cid-svH4LNpMZX .field-input::-webkit-input-placeholder {
    color: #36187d;
  }
  .cid-svH4LNpMZX .form-control:-moz-placeholder,
  .cid-svH4LNpMZX .field-input:-moz-placeholder,
  .cid-svH4LNpMZX .form-control:-moz-placeholder,
  .cid-svH4LNpMZX .field-input:-moz-placeholder {
    color: #36187d;
  }
  .cid-svH4LNpMZX .form-control:hover,
  .cid-svH4LNpMZX .field-input:hover,
  .cid-svH4LNpMZX .form-control:focus,
  .cid-svH4LNpMZX .field-input:focus {
    background-color: #edeff3;
    color: #232323;
    border: 0!important;
    box-shadow: inset 1px 1px 2px 0 #d2dce9;
    outline: none;
  }
  .cid-svH4LNpMZX .form-control:hover::-webkit-input-placeholder,
  .cid-svH4LNpMZX .field-input:hover::-webkit-input-placeholder,
  .cid-svH4LNpMZX .form-control:focus::-webkit-input-placeholder,
  .cid-svH4LNpMZX .field-input:focus::-webkit-input-placeholder,
  .cid-svH4LNpMZX .form-control:hover::-webkit-input-placeholder,
  .cid-svH4LNpMZX .field-input:hover::-webkit-input-placeholder,
  .cid-svH4LNpMZX .form-control:focus::-webkit-input-placeholder,
  .cid-svH4LNpMZX .field-input:focus::-webkit-input-placeholder {
    color: #36187d;
  }
  .cid-svH4LNpMZX .form-control:hover:-moz-placeholder,
  .cid-svH4LNpMZX .field-input:hover:-moz-placeholder,
  .cid-svH4LNpMZX .form-control:focus:-moz-placeholder,
  .cid-svH4LNpMZX .field-input:focus:-moz-placeholder,
  .cid-svH4LNpMZX .form-control:hover:-moz-placeholder,
  .cid-svH4LNpMZX .field-input:hover:-moz-placeholder,
  .cid-svH4LNpMZX .form-control:focus:-moz-placeholder,
  .cid-svH4LNpMZX .field-input:focus:-moz-placeholder {
    color: #36187d;
  }
  .cid-svH4LNpMZX .jq-number__spin:hover,
  .cid-svH4LNpMZX .jq-number__spin:focus {
    background-color: #edeff3;
    color: #ffffff;
    box-shadow: none;
    outline: none;
  }
  .cid-svH4LNpMZX .jq-number__spin {
    background-color: #edeff3;
    color: #000000;
    transition: 0.4s;
    box-shadow: none;
    outline: none;
  }
  .cid-svH4LNpMZX .jq-selectbox li,
  .cid-svH4LNpMZX .jq-selectbox li {
    background-color: #edeff3;
    color: #000000;
  }
  .cid-svH4LNpMZX .jq-selectbox li:hover,
  .cid-svH4LNpMZX .jq-selectbox li.selected {
    background-color: #edeff3;
    color: #000000;
  }
  .cid-svH4LNpMZX .jq-selectbox:hover .jq-selectbox__trigger-arrow,
  .cid-svH4LNpMZX .jq-number__spin.minus:hover:after,
  .cid-svH4LNpMZX .jq-number__spin.plus:hover:after {
    border-top-color: #edeff3;
    border-bottom-color: #edeff3;
  }
  .cid-svH4LNpMZX .jq-selectbox .jq-selectbox__trigger-arrow,
  .cid-svH4LNpMZX .jq-number__spin.minus:after,
  .cid-svH4LNpMZX .jq-number__spin.plus:after {
    border-top-color: #edeff3;
    border-bottom-color: #edeff3;
  }
  .cid-svH4LNpMZX input::-webkit-clear-button {
    display: none;
  }
  .cid-svH4LNpMZX input::-webkit-inner-spin-button {
    display: none;
  }
  .cid-svH4LNpMZX input::-webkit-outer-spin-button {
    display: none;
  }
  .cid-svH4LNpMZX input::-webkit-calendar-picker-indicator {
    display: none;
  }
  .cid-svH4LNpMZX H4 {
    color: #36187d;
  }
  .cid-svH4LNpMZX .mbr-section-title {
    text-align: center;
    color: #36187d;
  }
  .cid-svH4LNpMZX P {
    text-align: center;
    color: #6c758f;
  }
  @media (max-width: 767px) {
    .cid-svH4LNpMZX .form-row {
      flex-direction: column;
    }
  }
  .cid-svH4MvoIHx {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #f2f3f7;
  }
  .cid-svH4MvoIHx ul {
    list-style: none;
    margin: 0;
    padding-left: 2.5rem;
  }
  .cid-svH4MvoIHx li {
    position: relative;
    margin-bottom: 1rem;
  }
  .cid-svH4MvoIHx ul li::before {
    position: absolute;
    left: -1.6rem;
    content: "\2022";
    color: #36187d;
    font-weight: bold;
    font-size: 2rem;
    width: 1.6rem;
  }
  .cid-svH4MvoIHx H3 {
    color: #36187d;
  }
  .cid-svH4MvoIHx .list {
    color: #6c758f;
  }
  .cid-svH4MEHF6Q {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f2f3f7;
  }
  .cid-svH4MEHF6Q .mbr-iconfont {
    font-size: 1.4rem !important;
    font-family: 'Moririse2' !important;
    color: #36187d;
    margin-left: 1rem;
    border-radius: 3rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    padding: 1.5rem;
  }
  .cid-svH4MEHF6Q .panel-group {
    border: none;
  }
  .cid-svH4MEHF6Q .panel-collapse {
    padding: 0 2rem;
  }
  .cid-svH4MEHF6Q .panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 3rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    padding: 2rem;
  }
  .cid-svH4MEHF6Q .panel-body,
  .cid-svH4MEHF6Q .card-header {
    padding: 1rem 0;
  }
  .cid-svH4MEHF6Q .panel-title-edit {
    color: #6c758f;
  }
  .cid-svH4MEHF6Q .card .card-header {
    background-color: transparent;
    margin-bottom: 0;
    border: 0;
  }
  .cid-svH4MEHF6Q .card {
    overflow: visible;
  }
  .cid-svH4MEHF6Q .panel-text {
    color: #6c758f;
  }
  .cid-svH4MEHF6Q H3 {
    color: #36187d;
  }
  .cid-svH4MZCwIn {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #f2f3f7;
  }
  .cid-svH4MZCwIn .item {
    position: relative;
    display: flex;
    padding-bottom: 2rem;
  }
  .cid-svH4MZCwIn .item:last-child .icon-box:before {
    display: none;
  }
  .cid-svH4MZCwIn .item::before {
    content: "";
    width: 2px;
    height: 100%;
    left: 40px;
    position: absolute;
    top: 0;
    background: #dae2ec;
    transform: translate(-50%, 0);
  }
  .cid-svH4MZCwIn .last:before {
    display: none;
  }
  .cid-svH4MZCwIn .icon-box {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f2f3f7;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    margin-right: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  @media (max-width: 768px) {
    .cid-svH4MZCwIn .icon-box {
      margin-right: 1rem;
    }
  }
  .cid-svH4MZCwIn span {
    font-size: 2rem;
  }
  @media (max-width: 991px) {
    .cid-svH4MZCwIn span .card {
      margin-bottom: 2rem;
    }
    .cid-svH4MZCwIn span .card-wrapper {
      margin-bottom: 2rem;
    }
    .cid-svH4MZCwIn span .icon-box::before {
      top: 141%;
    }
  }
  @media (max-width: 768px) {
    .cid-svH4MZCwIn .icon-box::before {
      top: 114%;
    }
  }
  .cid-svH4MZCwIn SPAN {
    color: #0196e3;
  }
  .cid-svH4MZCwIn .icon-text {
    color: #6c758f;
  }
  .cid-svH4MZCwIn .icon-title {
    color: #36187d;
  }
  .cid-svH4MZCwIn .icon-subtitle {
    color: #36187d;
  }
  .cid-svH4MZCwIn .main-title {
    color: #36187d;
  }
  .cid-svH4N9BT1m {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #f2f3f7;
  }
  .cid-svH4N9BT1m .progress {
    width: 100%;
  }
  .cid-svH4N9BT1m p {
    margin-bottom: 0.4rem;
  }
  .cid-svH4N9BT1m .title-wrap {
    display: flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
  }
  .cid-svH4N9BT1m progress {
    height: 10px;
  }
  .cid-svH4N9BT1m .progressbar-number {
    display: inline-block;
    width: 50px;
  }
  .cid-svH4N9BT1m .progress-primary {
    background: rgba(206, 206, 206, 0.4);
    border: none;
    outline: none;
  }
  .cid-svH4N9BT1m .progress-primary::-webkit-progress-bar {
    background: rgba(206, 206, 206, 0.4);
  }
  .cid-svH4N9BT1m .progress_value {
    position: relative;
  }
  .cid-svH4N9BT1m .progress1 .progressbar-number:before,
  .cid-svH4N9BT1m .progress2 .progressbar-number:before,
  .cid-svH4N9BT1m .progress3 .progressbar-number:before,
  .cid-svH4N9BT1m .progress4 .progressbar-number:before,
  .cid-svH4N9BT1m .progress5 .progressbar-number:before {
    position: absolute;
    right: 15px;
    top: 0;
  }
  .cid-svH4N9BT1m progress[value]::-webkit-progress-bar {
    background: rgba(206, 206, 206, 0.4);
  }
  .cid-svH4N9BT1m progress::-webkit-progress-value {
    background: #36187d;
  }
  .cid-svH4N9BT1m progress[value]::-moz-progress-bar {
    background: #36187d;
  }
  .cid-svH4N9BT1m progress::-ms-fill {
    background: #36187d;
  }
  .cid-svH4N9BT1m .progress1 .progressbar-number:before {
    content: '92';
  }
  .cid-svH4N9BT1m .progress2 .progressbar-number:before {
    content: '71';
  }
  .cid-svH4N9BT1m .progress3 .progressbar-number:before {
    content: '53';
  }
  .cid-svH4N9BT1m .progress4 .progressbar-number:before {
    content: '70';
  }
  .cid-svH4N9BT1m .progress5 .progressbar-number:before {
    content: '60';
  }
  .cid-svH4N9BT1m .section-content-text {
    color: #6c758f;
  }
  .cid-svH4N9BT1m .progressbar-title p,
  .cid-svH4N9BT1m .progress_value {
    color: #6c758f;
  }
  .cid-svH4N9BT1m .mbr-section-subtitle {
    color: #6c758f;
  }
  .cid-svH4N9BT1m .section-content-title {
    color: #36187d;
  }
  .cid-svH4NmTqOA {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #f2f3f7;
  }
  .cid-svH4NmTqOA .progress {
    width: 100%;
  }
  .cid-svH4NmTqOA .col-lg-6,
  .cid-svH4NmTqOA .col-12 {
    padding: 0 2rem;
  }
  .cid-svH4NmTqOA .row {
    margin: 0 -2rem;
    justify-content: center;
  }
  .cid-svH4NmTqOA p {
    margin-bottom: 0.4rem;
  }
  .cid-svH4NmTqOA .title-wrap {
    display: flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
  }
  .cid-svH4NmTqOA img {
    width: 100%;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    border-radius: 3rem;
  }
  .cid-svH4NmTqOA progress {
    height: 10px;
  }
  .cid-svH4NmTqOA .progressbar-number {
    display: inline-block;
    width: 50px;
  }
  .cid-svH4NmTqOA .progress-primary {
    background: rgba(206, 206, 206, 0.4);
    border: none;
    outline: none;
  }
  .cid-svH4NmTqOA .progress-primary::-webkit-progress-bar {
    background: rgba(206, 206, 206, 0.4);
  }
  .cid-svH4NmTqOA .progress_value {
    position: relative;
  }
  .cid-svH4NmTqOA .progress1 .progressbar-number:before,
  .cid-svH4NmTqOA .progress2 .progressbar-number:before,
  .cid-svH4NmTqOA .progress3 .progressbar-number:before,
  .cid-svH4NmTqOA .progress4 .progressbar-number:before,
  .cid-svH4NmTqOA .progress5 .progressbar-number:before {
    position: absolute;
    right: 15px;
    top: 0;
  }
  .cid-svH4NmTqOA progress[value]::-webkit-progress-bar {
    background: rgba(206, 206, 206, 0.4);
  }
  .cid-svH4NmTqOA progress::-webkit-progress-value {
    background: #36187d;
  }
  .cid-svH4NmTqOA progress[value]::-moz-progress-bar {
    background: #36187d;
  }
  .cid-svH4NmTqOA progress::-ms-fill {
    background: #36187d;
  }
  .cid-svH4NmTqOA .progress1 .progressbar-number:before {
    content: '92';
  }
  .cid-svH4NmTqOA .progress2 .progressbar-number:before {
    content: '71';
  }
  .cid-svH4NmTqOA .progress3 .progressbar-number:before {
    content: '53';
  }
  .cid-svH4NmTqOA .progress4 .progressbar-number:before {
    content: '70';
  }
  .cid-svH4NmTqOA .progress5 .progressbar-number:before {
    content: '60';
  }
  .cid-svH4NmTqOA .section-content-text {
    color: #6c758f;
  }
  .cid-svH4NmTqOA .progressbar-title p,
  .cid-svH4NmTqOA .progress_value {
    color: #6c758f;
  }
  .cid-svH4NmTqOA .mbr-section-subtitle {
    color: #6c758f;
  }
  .cid-svH4NmTqOA .section-content-title {
    color: #36187d;
  }
  .cid-svH4NQmqN0 {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #f2f3f7;
  }
  .cid-svH4NQmqN0 .text-box {
    max-width: 900px;
  }
  .cid-svH4NQmqN0 .item {
    position: relative;
    display: flex;
    padding-bottom: 2rem;
  }
  .cid-svH4NQmqN0 .item:last-child .icon-box:before {
    display: none;
  }
  .cid-svH4NQmqN0 .item::before {
    content: "";
    width: 2px;
    height: 100%;
    right: 38px;
    position: absolute;
    top: 50%;
    margin-left: 2rem;
    background: #dae2ec;
    transform: translate(-50%, 0);
  }
  @media (max-width: 767px) {
    .cid-svH4NQmqN0 .item::before {
      margin-left: 2rem;
    }
  }
  .cid-svH4NQmqN0 .last:before {
    display: none;
  }
  .cid-svH4NQmqN0 .icon-box {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: auto;
    margin-right: 0;
    background: #f2f3f7;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .cid-svH4NQmqN0 span {
    font-size: 2rem;
  }
  @media (max-width: 991px) {
    .cid-svH4NQmqN0 span .card {
      margin-bottom: 2rem;
    }
    .cid-svH4NQmqN0 span .card-wrapper {
      margin-bottom: 2rem;
    }
    .cid-svH4NQmqN0 span .icon-box::before {
      top: 141%;
    }
  }
  @media (max-width: 768px) {
    .cid-svH4NQmqN0 .icon-box::before {
      top: 114%;
    }
  }
  .cid-svH4NQmqN0 SPAN {
    color: #0196e3;
  }
  .cid-svH4NQmqN0 .icon-text {
    color: #6c758f;
  }
  .cid-svH4NQmqN0 .icon-title {
    color: #36187d;
  }
  .cid-svH4NQmqN0 .icon-subtitle {
    color: #36187d;
  }
  .cid-svH4NQmqN0 .main-title {
    color: #36187d;
  }
  .cid-svH4O1I4yT {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #f2f3f7;
  }
  .cid-svH4O1I4yT .progress {
    width: 100%;
  }
  .cid-svH4O1I4yT p {
    margin-bottom: 0.4rem;
  }
  .cid-svH4O1I4yT .title-wrap {
    display: flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
  }
  .cid-svH4O1I4yT progress {
    height: 10px;
  }
  .cid-svH4O1I4yT .progressbar-number {
    display: inline-block;
    width: 50px;
  }
  .cid-svH4O1I4yT .progress-primary {
    background: rgba(206, 206, 206, 0.4);
    border: none;
    outline: none;
  }
  .cid-svH4O1I4yT .progress-primary::-webkit-progress-bar {
    background: rgba(206, 206, 206, 0.4);
  }
  .cid-svH4O1I4yT .progress_value {
    position: relative;
  }
  .cid-svH4O1I4yT .progress1 .progressbar-number:before,
  .cid-svH4O1I4yT .progress2 .progressbar-number:before,
  .cid-svH4O1I4yT .progress3 .progressbar-number:before,
  .cid-svH4O1I4yT .progress4 .progressbar-number:before,
  .cid-svH4O1I4yT .progress5 .progressbar-number:before {
    position: absolute;
    right: 15px;
    top: 0;
  }
  .cid-svH4O1I4yT progress[value]::-webkit-progress-bar {
    background: rgba(206, 206, 206, 0.4);
  }
  .cid-svH4O1I4yT progress::-webkit-progress-value {
    background: #36187d;
  }
  .cid-svH4O1I4yT progress[value]::-moz-progress-bar {
    background: #36187d;
  }
  .cid-svH4O1I4yT progress::-ms-fill {
    background: #36187d;
  }
  .cid-svH4O1I4yT .progress1 .progressbar-number:before {
    content: '92';
  }
  .cid-svH4O1I4yT .progress2 .progressbar-number:before {
    content: '71';
  }
  .cid-svH4O1I4yT .progress3 .progressbar-number:before {
    content: '53';
  }
  .cid-svH4O1I4yT .progress4 .progressbar-number:before {
    content: '70';
  }
  .cid-svH4O1I4yT .progress5 .progressbar-number:before {
    content: '60';
  }
  .cid-svH4O1I4yT .section-content-text {
    color: #6c758f;
  }
  .cid-svH4O1I4yT .progressbar-title p,
  .cid-svH4O1I4yT .progress_value {
    color: #6c758f;
  }
  .cid-svH4O1I4yT .mbr-section-subtitle {
    color: #6c758f;
  }
  .cid-svH4O1I4yT .section-content-title {
    color: #36187d;
  }
  .cid-svH4Ok4Kxa {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: #f2f3f7;
  }
  .cid-svH4Ok4Kxa .list-group-item {
    background-color: transparent;
    padding: .5rem 3.25rem;
  }
  .cid-svH4Ok4Kxa .plan-body {
    padding-bottom: 3rem;
  }
  .cid-svH4Ok4Kxa .plan-header {
    padding-top: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-svH4Ok4Kxa .price {
    color: #36187d;
  }
  .cid-svH4Ok4Kxa .plan {
    word-break: break-word;
    background-color: #ffffff;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    border-radius: 3rem;
    background: #f2f3f7;
  }
  .cid-svH4Ok4Kxa .plan .list-group-item {
    position: relative;
    justify-content: center;
    border: 0;
  }
  .cid-svH4Ok4Kxa .plan .list-group-item::after {
    position: absolute;
    bottom: 1px;
    left: 25%;
    width: 50%;
    height: 1px;
    content: "";
    background-color: rgba(0, 0, 0, 0.05);
  }
  .cid-svH4Ok4Kxa .plan .list-group-item:last-child::after {
    display: none;
  }
  @media (max-width: 991px) {
    .cid-svH4Ok4Kxa .plan {
      margin-bottom: 2rem;
    }
  }
  .cid-svH4Ok4Kxa .price-term {
    color: #6c758f;
  }
  .cid-svH4Ok4Kxa UL {
    color: #6c758f;
  }
  .cid-svH4Ok4Kxa .plan-title {
    color: #6c758f;
  }
  .cid-svH4Ok4Kxa .title {
    text-align: center;
    color: #36187d;
  }
  .cid-svH4Ou6qfs {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f2f3f7;
  }
  .cid-svH4Ou6qfs .mbr-section-title,
  .cid-svH4Ou6qfs .mbr-section-subtitle {
    text-align: center;
  }
  .cid-svH4Ou6qfs .cost {
    word-break: normal;
  }
  .cid-svH4Ou6qfs .card-wrapper {
    margin-bottom: 2rem;
    border-radius: 3rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    background: #f2f3f7;
  }
  .cid-svH4Ou6qfs .card-wrapper .top-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  @media (min-width: 768px) {
    .cid-svH4Ou6qfs .card-wrapper {
      padding: 2rem;
    }
  }
  @media (max-width: 767px) {
    .cid-svH4Ou6qfs .card-wrapper {
      padding: 1rem;
    }
  }
  .cid-svH4Ou6qfs .card-title {
    color: #36187d;
  }
  .cid-svH4Ou6qfs P {
    color: #6c758f;
  }
  .cid-svH4Ou6qfs .mbr-section-title {
    color: #36187d;
  }
  .cid-svH4OFuhOF {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f2f3f7;
  }
  .cid-svH4OFuhOF .card-wrapper {
    background-color: #f2f3f7;
    margin-bottom: 2rem;
    border-radius: 3rem;
    box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
    background: #f2f3f7;
    transition: all 0.3s;
    padding: 2rem;
    padding-top: 3rem;
  }
  .cid-svH4OFuhOF .mbr-section-title,
  .cid-svH4OFuhOF .mbr-section-subtitle {
    text-align: center;
  }
  @media (min-width: 992px) {
    .cid-svH4OFuhOF .card-wrapper {
      padding-left: 4rem;
      padding-right: 4rem;
    }
  }
  @media (max-width: 767px) {
    .cid-svH4OFuhOF .card-wrapper {
      padding: 1rem;
      padding-top: 2rem;
    }
   .prva{
      min-height: 75vh;
    
    }
    .pipe{
      min-height: 45vh;
    
    }
  }
  .cid-svH4OFuhOF .card-title {
    color: #36187d;
  }
  .cid-svH4OFuhOF .price {
    color: #36187d;
  }
  .cid-svH4OFuhOF .mbr-text {
    color: #6c758f;
  }
  .cid-svH4OFuhOF .mbr-section-title {
    color: #36187d;
  }
  .cid-svGrKtQxW4 {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: hidden;
  }
  .cid-svGrKtQxW4 .mbr-title {
    color: #bec2cf;
  }
  .cid-svGrKtQxW4 .mbr-text {
    color: #bec2cf;
  }
  .cid-svGrKtQxW4 .row {
    align-items: center;
  }
  .cid-svH4DBMh2X.prva{
    padding-top: 20rem;
    align-items: start;
    background-color: #fff;
  }
  .car {
    list-style: none;
  }
  .nepromena{
  display: none;
}
 @media only screen and (max-width: 600px) {
  .naslovna{
    color: var(--plava);
    text-shadow: 3px 3px 0px rgba(12,	21,	33, 0.6); 
    font-size: 1.4rem; 
    font-weight: 700;
  }
    .cid-svH4DBMh2X.prva{
    padding-top: 12rem;
    
  }

  .prva .idi{
    margin-top: -3rem;
  }
  .fprva{
  position: absolute; 
  bottom: 17%; 
  
}
.promena>img{
  display: none;
}
.nepromena{
  display: block;
  width: 70%;
}
.cid-svH4EqdU4G .mbr-iconfont {
    font-size: 2rem;
    color: #6592e6;
    padding: 1rem;
    box-shadow: 0.1em 0.1em 0.2em #d2dce9, -0.2em -0.2em 0.4em #ffffff;
    border-radius: 50%;
    transition: all 0.3s;
  }
  .cid-svH4EqdU4G {
    padding-top: 1rem;
    padding-bottom: 1rem;
    
  }

}

@media only screen and (max-width: 950px) and (min-width: 601px) {
  .naslovna{
    font-size: 2.5rem; 
    
  }
    .cid-svH4DBMh2X.prva{
    padding-top: 12rem;
    
  }

  .prva .idi{
    display: flex;
    align-items: center;
  }
  .fprva{
   position: fixed;
   margin-bottom: 0px;
   text-align: left;
  
}
.fjuter{
display: flex;
flex-direction: column;
gap: 0.3ch;
}
.futerko{
  display: flex;
flex-direction: column;
gap: 0.3ch;
}

.promena>img{
  display: none;
}
.nepromena{
  display: block;
  width: 70%;
}
  .cid-svH4EqdU4G {
    padding-top: 1rem;
    padding-bottom: 1rem;
    
  }

}