/*
 sm     =   small   =   phone-small     = 576px     = 36em;
 md     =   medium  =   phone-large     = 768px     = 48em;
 lg     =   large   =   phone-tablet    = 992px     = 62em;
 xl     =   xlarge  =   desktop         = 1200px    = 75em;
 xxl    =   xxl     =   big desktop     = 1400px    = 87.5em;

 1em = 16px;
*/
/*
When using MAX and Desktop first approach the biggest screen size
shall be on top for right cascading of styles(smallest shall be last)
*/
/*
When using MIN and Mobile first approach the smalles screen size
shall be on top for right cascading of styles(bigest shall be last)
*/
:root {
  --variables: goes here;
}

* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

*:focus:not(:focus-visible) {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 100%;
}

*::-webkit-scrollbar {
  width: 0.5rem;
}

*::-webkit-scrollbar-track {
  background-color: white;
}

*::-webkit-scrollbar-thumb {
  height: 50%;
  background-color: #69beab;
  border-radius: 10px;
}

@font-face {
  font-family: 'Nunito';
  src: url(../fonts/nunito-regular.ttf);
  font-weight: normal;
  font-variant: normal;
}

@font-face {
  font-family: 'Nunito';
  src: url(../fonts/Nunito-Medium.ttf);
  font-weight: 500;
  font-variant: normal;
}

@font-face {
  font-family: 'Nunito';
  src: url(../fonts/Nunito-Bold.ttf);
  font-weight: 700;
  font-variant: normal;
}

@font-face {
  font-family: 'Nunito';
  src: url(../fonts/Nunito-ExtraBold.ttf);
  font-weight: 800;
  font-variant: normal;
}

@font-face {
  font-family: 'Nunito';
  src: url(../fonts/Nunito-Black.ttf);
  font-weight: 900;
  font-variant: normal;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: normal;
  text-rendering: geometricPrecision;
}

/*h1,
h2,
h3,
h4,
h5 {
  word-break: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}*/

h1 {
  text-transform: uppercase;
  font-weight: 900;
}

h2 {
  font-size: 1rem;
  font-weight: 900;
}

a {
  color: #0e8175;
  text-decoration: none;
}

a:hover, a:focus {
  color: #7bc6b5;
}

h2,
p {
  margin-bottom: 1.5rem;
}

footer h3 {
  font-size: 0.8rem;
  line-height: 1.125rem;
  letter-spacing: 0.6px;
  word-break: normal;
}

.section-title {
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.4;
}

.section-title:not(:nth-of-type(1)) {
  border-top: 1px solid #bbc;
  padding-top: 1rem;
}

.section-subtitle {
  color: #0e8175;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.2;
}

.page-title {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 900;
  color: #0e8175;
  margin-bottom: 1.5rem;
}

.home-title {
  font-size: 2.3rem;
  line-height: 1.4;
  font-weight: 900;
  color: #0e8175;
  margin-bottom: 1.5rem;
}

.form-title {
  color: #0e8175;
  text-transform: uppercase;
  font-size: 0.9rem;
}

@media (max-width: 47.9em) {
  .page-title {
    font-size: 1.3rem;
    line-height: 1.3;
  }
}

.btn {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.9rem;
  color: #0e8175;
  border-radius: 4px;
}

.btn:hover {
  color: #09534b;
}

.u-btn {
  text-transform: uppercase;
  padding: 0.83333rem 1rem;
  text-decoration: none !important;
}

.u-btn-solid {
  color: white;
  background-color: #0e8175;
  font-size: 0.75rem;
  letter-spacing: 0.2px;
  font-weight: 500;
}

.u-btn-solid:hover, .u-btn-solid:focus {
  background-color: #09534b;
  color: white !important;
  -webkit-box-shadow: 0 4px 5px rgba(14, 129, 117, 0.4);
          box-shadow: 0 4px 5px rgba(14, 129, 117, 0.4);
}

.u-btn:hover {
  color: inherit;
}

.u-btn-secondary {
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  background-color: #7bc6b5;
  color: black;
}

.u-btn-secondary:hover, .u-btn-secondary:focus {
  background-color: #337566;
  color: white !important;
  -webkit-box-shadow: 0 4px 5px rgba(123, 198, 181, 0.4);
          box-shadow: 0 4px 5px rgba(123, 198, 181, 0.4);
}

.u-btn-sm {
  padding: 0.5rem 0.8rem;
}

fieldset legend {
  color: #0e8175;
  font-size: 1.125rem;
  font-weight: 800;
}

.form-control__container label.invalid {
  color: red;
}

.form-control__container input:invalid,
.form-control__container input.invalid {
  background-color: rgba(255, 0, 0, 0.05);
  border: 1px solid red;
}

.form-check-input {
  border-color: #0e8175;
}

.form-check-input:checked {
  border-color: #0e8175;
}

.form-check-input:checked[type='radio'] {
  background-color: white;
  background-image: url(../images/svg/circle.svg);
  background-size: 8px;
}

.info-block {
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: #7bc6b5;
  border-radius: 8px;
  padding: 2rem 1rem;
}

.info-block__title {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.main-nav {
  position: relative;
  margin-top: auto;
  padding-top: 0;
  padding-bottom: 0;
}

.main-nav__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-nav__item {
  border-bottom: 5px solid transparent;
  border-left: 1px dotted transparent;
  border-top: 1px dotted transparent;
  border-right: 1px dotted transparent;
}

.main-nav__item .nav-link,
.main-nav__item .btn {
  padding: 1rem 0.5rem 0.5rem 0.5rem !important;
  color: #0e8175;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.77rem;
  line-height: 1.4;
  white-space: pre-line;
}

@media (max-width: 74.9em) {
  .main-nav__item .nav-link,
  .main-nav__item .btn {
    font-size: 0.75rem;
  }
}

@media (max-width: 35.9em) {
  .main-nav__item .nav-link,
  .main-nav__item .btn {
    font-size: 1rem;
  }
}

@media (max-width: 61.9em) {
  .main-nav__item {
    position: relative;
  }
}

@media (min-width: 62em) {
  .main-nav__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  .main-nav__item:hover, .main-nav__item:focus, .main-nav__item:focus-within {
    border-bottom: 5px solid #0e8175;
    border-left: 1px dotted #0e8175;
    border-top: 1px dotted #0e8175;
    border-right: 1px dotted #0e8175;
  }
  .main-nav__item.active {
    border: 1px dotted #0e8175;
    border-bottom: 5px solid #0e8175;
  }
  .main-nav__item .main-sublist {
    opacity: 0;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }
  .main-nav__item .main-sublist.show {
    -webkit-animation: menu-animation 0.46s ease;
            animation: menu-animation 0.46s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
  }
  @-webkit-keyframes menu-animation {
    0% {
      display: none;
      opacity: 0;
    }
    100% {
      opacity: 1;
      display: -webkit-box;
      display: flex;
    }
  }
  @keyframes menu-animation {
    0% {
      display: none;
      opacity: 0;
    }
    100% {
      opacity: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
  }
  .main-nav__item .nav-link {
    text-align: center;
  }
  .main-nav__item .dropdown-toggle {
    position: relative;
    text-align: left;
    max-width: 130px;
    width: 100%;
  }
  .main-nav__item .dropdown-toggle:after {
    display: none;
  }
}

.main-sublist {
  width: 100%;
  border-radius: 0;
  border: none;
  border-top: 1px solid #0e8175;
  border-bottom: 5px solid #7bc6b5;
  -webkit-box-shadow: 0 2rem 3rem rgba(0, 0, 0, 0.1), 0 1rem 1rem rgba(0, 0, 0, 0.05);
          box-shadow: 0 2rem 3rem rgba(0, 0, 0, 0.1), 0 1rem 1rem rgba(0, 0, 0, 0.05);
  padding-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
  color: black;
}

.main-sublist div[class*='col'] {
  border-left: 1px solid #7bc6b5;
}

.main-sublist__group-name {
  font-weight: 800;
  margin-bottom: 1rem;
}

.main-sublist a {
  display: block;
  color: inherit;
  border: 1px dotted transparent;
  font-weight: 800;
  margin-bottom: 1rem;
}

.main-sublist a:hover, .main-sublist a:focus, .main-sublist a:active {
  color: #0e8175;
  border: 1px dotted #0e8175;
}

.main-sublist .sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding-left: 0;
}

.main-sublist .sublist li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 1rem);
          flex: 0 0 calc(50% - 1rem);
  margin-bottom: 0;
}

.main-sublist .sublist a {
  font-weight: normal;
  margin-bottom: 0;
}

@media (min-width: 62em) {
  .main-sublist {
    position: absolute;
    left: 0;
    margin-top: 4px;
  }
}

.main-sublist__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.main-sublist__list strong {
  display: inline-block;
  padding-bottom: 1rem;
}

@media (max-width: 47.9em) {
  .main-sublist__list {
    display: block;
  }
}

.main-sublist__list li {
  margin-bottom: 1rem;
}

.main-sublist__list a {
  font-size: 1rem;
  line-height: 1.2;
  display: block;
}

.main-sublist__title {
  text-transform: none;
  font-size: 1rem;
  font-weight: 700;
}

.navbar-toggler {
  position: absolute;
  width: unset;
  right: 10px;
  top: 20px;
  background: url(../images/svg/hamburger.svg) center no-repeat;
  background-size: 32px;
}

.navbar-toggler[aria-expanded='true'] {
  background: url(../images/svg/close.svg) center no-repeat;
  background-size: 32px;
}

.dropdown-menu[data-bs-popper] {
  margin-top: 0;
}

.breadcrumb {
  background-color: #eff1e0;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  margin-bottom: 0;
  color: #0e8175;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: inherit;
  font-weight: 800;
}

.sidebar {
  position: relative;
  border-right: 1px solid #0e8175;
  padding-top: 1rem;
}

.sidebar nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.sidebar__list {
  list-style: none;
  padding-left: 0;
  margin-left: auto;
  color: black;
  max-height: 85vh;
  overflow-y: auto;
}

.sidebar__list li {
  padding-left: 2rem;
}

.sidebar__list li a {
  display: block;
  color: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.2;
  border-left: 3px solid transparent;
  border-bottom: 1px dotted #0e8175;
  padding: 1rem;
}

.sidebar__list li a:hover, .sidebar__list li a:focus, .sidebar__list li a:focus-within, .sidebar__list li a.active {
  border-left: 3px solid #0e8175;
  color: #0e8175;
}

.sidebar__list li:last-child a {
  border-bottom: none;
}

@media (max-width: 61.9em) {
  .sidebar {
    display: none;
  }
}

g[data-map] {
  cursor: pointer;
}

.map-ptext {
  font-size: 10px;
  fill: rgba(255, 255, 255, 0.7);
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 800;
}

.map-shape {
  fill: #0e8175;
  stroke: #fff;
  stroke-width: 2px;
  stroke-miterlimit: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.region-center {
  fill: #13af9f;
}

g[data-map]:hover path:first-child, g[data-map].active path:first-child {
  fill: #7bc6b5;
}

g[data-map]:hover text, g[data-map].active text {
  fill: black;
}

g[data-map].map__g .map-shape {
  fill: #09534b;
}

.calendar {
  background-color: #eff1e0;
}

.calendar__table-header {
  background-color: #d8dbbb;
}

.calendar__table-header__title {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

@media (max-width: 47.9em) {
  .calendar__table-header__title {
    padding: 0.5rem 0;
  }
}

.calendar__table-body {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (max-width: 47.9em) {
  .calendar__table-body .row > .col-md-9 > .row:nth-last-of-type(even) {
    background-color: #e7e9d6;
    margin-bottom: 1rem;
  }
}

.calendar__table__cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0.5rem 1rem;
  height: 100%;
  border-bottom: 1px solid white;
}

.calendar__table__cell__title {
  font-size: 0.9rem;
  font-weight: 700;
}

.calendar__table__cell p {
  font-size: 0.8125rem;
}

@media (min-width: 48em) {
  .calendar__nav {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.calendar .nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 3);
          flex: 0 0 calc(100% / 3);
  padding: 0.5rem;
}

@media (min-width: 75em) {
  .calendar .nav-item {
    padding: 1.5rem;
  }
}

@media (min-width: 48em) {
  .calendar .nav-item {
    padding: 1rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 5);
            flex: 0 0 calc(100% / 5);
  }
}

.calendar__link,
.calendar .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1/1;
  color: #09534b;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 50%;
  background-color: #7bc6b5;
}

@media (max-width: 47.9em) {
  .calendar__link,
  .calendar .nav-link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .calendar__link:before,
  .calendar .nav-link:before {
    display: none;
  }
}

@media (min-width: 75em) {
  .calendar__link,
  .calendar .nav-link {
    font-size: 0.7rem;
  }
}

@media (min-width: 62em) {
  .calendar__link,
  .calendar .nav-link {
    font-size: 0.65rem;
    max-width: 150px;
  }
}

.calendar__link.active, .calendar__link:hover, .calendar__link:focus,
.calendar .nav-link.active,
.calendar .nav-link:hover,
.calendar .nav-link:focus {
  color: white;
  background-color: #0e8175;
}

.calendar__link:before {
  content: '';
  width: 100%;
  max-width: 4rem;
  max-height: 4rem;
  aspect-ratio: 1/1;
  background-size: contain;
}

@media (min-width: 62em) {
  .calendar__link:before {
    max-width: 5rem;
    max-height: 5rem;
  }
}

.calendar__link--group-1:before {
  background-image: url(../images/svg/baby.svg);
}

.calendar__link--group-1:hover:before, .calendar__link--group-1:focus:before, .calendar__link--group-1.active:before {
  background-image: url(../images/svg/baby-white.svg);
}

.calendar__link--group-2:before {
  background-image: url(../images/svg/baby1.svg);
}

.calendar__link--group-2:hover:before, .calendar__link--group-2:focus:before, .calendar__link--group-2.active:before {
  background-image: url(../images/svg/baby1-white.svg);
}

.calendar__link--group-3:before {
  background-image: url(../images/svg/2year.svg);
}

.calendar__link--group-3:hover:before, .calendar__link--group-3:focus:before, .calendar__link--group-3.active:before {
  background-image: url(../images/svg/2year-white.svg);
}

.calendar__link--group-4:before {
  background-image: url(../images/svg/6-17years.svg);
}

.calendar__link--group-4:hover:before, .calendar__link--group-4:focus:before, .calendar__link--group-4.active:before {
  background-image: url(../images/svg/6-17years-white.svg);
}

.calendar__link--group-5:before {
  background-image: url(../images/svg/18years.svg);
}

.calendar__link--group-5:hover:before, .calendar__link--group-5:focus:before, .calendar__link--group-5.active:before {
  background-image: url(../images/svg/18years-white.svg);
}

.brand__logo {
  display: block;
/*  background: url(../images/svg/logo_lilavo.svg), url(../images/svg/logo_beige_new.svg);*/
  background: url(../images/plusmen_logo.png);
  background-position: 4rem center;
  background-repeat: no-repeat;
  background-size: 120px;
  height: 80px;
  margin-right: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brand__logo:hover {
  -webkit-animation: logo-animation 1s;
          animation: logo-animation 1s;
}

@media (max-width: 74.9em) {
  .brand__logo {
    background-size: 60px;
    background-position: left center;
  }
}

.nrb__header a {
  display: block;
  width: 100%;
  height: 60px;
  background: url(../images/svg/nrb.svg) center bottom no-repeat;
  background-size: 100%;
}

@media (max-width: 61.9em) {
  .nrb__header {
    position: absolute;
    top: 0;
    left: 100px;
  }
  .nrb__header a {
    background-position: center bottom 5px;
  }
}

@-webkit-keyframes logo-animation {
  70% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes logo-animation {
  70% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.main-content {
  padding: 4rem 0 4rem 4vw;
}

.main-content h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0e8175;
}

.main-content a {
  border-bottom: 1px dotted;
}

.footer {
  color: white;
  padding-top: 2rem;
  background: url(../images/svg/logo_big_white.svg) center no-repeat;
  background-color: #0e8175;
  border-top: 8px solid #eff1e0;
}

.footer a {
  color: white;
}

.footer__title {
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.footer__list {
  list-style: none;
  padding-left: 0;
  padding-right: 4rem;
}

.footer__list__item {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.footer__social {
  margin: 4rem 0;
}

.footer__credentials {
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.footer__sub-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.footer__sub-nav a {
  display: inline-block;
  margin: 0 1rem;
}

.footer .brand__logo {
/*  background: url(../images/svg/plus_men-white.svg) center no-repeat;*/
  background: url(../images/plusmen_logo_white.png) center no-repeat;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 160px;
  height: 100px;
}

.footer .nrb__header {
  margin-left: auto;
}

.footer .nrb__header a {
  display: block;
  width: 100%;
  height: 80px;
  background: url(../images/svg/nrb-white.svg) center bottom no-repeat;
  background-size: contain;
}

@media (max-width: 61.9em) {
  .footer .nrb__header {
    position: relative;
    left: 0;
  }
}

@media (max-width: 61.9em) {
  .footer .social__container {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .footer .nrb__header {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer .footer__social > .col-md-2 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.social {
  width: unset;
  margin: 0 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.social__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.social__image {
  width: 28px;
  height: 28px;
}

.social__title {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.scroll-top {
  display: none;
  position: fixed;
  border-radius: 50% 0 0 50%;
  bottom: 2vh;
  right: 0;
  width: 50px;
  height: 50px;
  padding: 0;
  background: url(../images/svg/chevron-top-white.svg) center no-repeat;
  background-size: 18px;
  background-color: #0c6f64;
  border: 1px solid #0c6f64;
  -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
  z-index: 100;
}

.home-title span {
  display: block;
}

main {
  margin-top: -5px;
  border-top: 5px solid #eff1e0;
}

.home-top {
  padding: 2rem 1rem;
  border-bottom: 1px solid #0e8175;
  border-bottom: 2px solid rgba(14, 129, 117, 0.2);
}

.home-top__video {
  border-radius: 4px;
  margin-top: auto;
  margin-bottom: auto;
  width: 100%;
}

.home-stories {
  position: relative;
  padding: 4rem;
  padding-right: 1rem;
  background: url(../images/svg/baloni_zad_video.svg) left bottom no-repeat;
  background-size: 350px;
}

.home-stories__media {
  position: relative;
  height: 450px;
  min-height: 450px;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  background-color: rgba(194, 229, 221, 0.5);
  background-repeat: no-repeat;
}

.home-stories__nav {
  position: absolute;
  top: -60px;
  right: 0;
}

.home-stories__prev svg {
  fill: #0e8175;
}

.home-stories__prev:hover svg {
  fill: #042522;
}

.home-stories__next svg {
  fill: #0e8175;
}

.home-stories__next:hover svg {
  fill: #042522;
}

.home-stories__prev, .home-stories__next {
  opacity: 1;
  display: inline-block;
  position: unset;
  width: 50px;
  padding: 0 1rem;
  height: 50px;
}

.home-stories__prev svg, .home-stories__next svg {
  width: 36px;
  height: 36px;
}

.home-stories__content {
  margin-top: 2rem;
}

.home-stories__title {
  width: 100%;
  text-align: left;
  color: #0e8175;
  font-size: 1.2rem;
  font-weight: 700;
  padding-right: 2rem;
}

.home-stories__quote {
  position: relative;
  padding: 2rem;
  display: block;
}

.home-stories__quote::before, .home-stories__quote::after {
  position: absolute;
  font-size: 3.5rem;
  line-height: 1;
  color: #0e8175;
}

.home-stories__quote::before {
  content: "\201C";
  left: 0;
  bottom: 0;
}

.home-stories__quote::after {
  content: "\201D";
  top: 0;
  right: 0;
}

.home-carousel {
  width: 100%;
}

.home-carousel .carousel-item {
  min-height: 450px;
  border-radius: 10px;
}

.home-buttons {
  padding-top: 4rem;
}

.home-buttons__list {
  list-style: none;
  padding-left: 0;
}

.home-buttons__list li {
  margin-bottom: 1rem;
}

.home-buttons .u-btn {
  text-align: left;
  font-size: 0.7rem;
}

.statistics {
  padding: 4rem;
  border-radius: 8px 0 0 0px;
  padding-right: 1rem;
  background-color: #eff1e0;
}

.statistics-resume {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.statistics-resume > div {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.statistics-container {
  width: 100%;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 2rem;
  padding: 1rem;
  color: black;
  background-color: #7bc6b5;
  border-radius: 50%;
}

.statistics-container p {
  font-size: 0.83rem;
  line-height: 1.3;
  display: block;
  margin-bottom: 0;
}

.statistics-container p:last-of-type:not(:first-of-type) {
  justify-self: flex-end;
}

.statistics-container--dark {
  background-color: #0c6f64;
  color: white;
}

.statistics-container-rect {
  height: 100%;
}

@media (max-width: 47.9em) {
  .statistics-container-rect:not(:first-child) {
    margin-top: 1rem;
  }
}

.statistics__title {
  font-weight: 800;
  font-size: 1.2rem;
}

.statistics__subtitle {
  text-transform: unset;
  color: black;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.statistics-table {
  font-size: 1rem;
}

.statistics-table > .statistics-table__tr > div:first-of-type {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  font-weight: 800;
  text-align: right;
}

.statistics-table__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}

.statistics-table__tr:first-of-type {
  font-weight: 800;
}

.statistics-table__tr:first-of-type div {
  border-top: 1px solid white;
  background-color: rgba(221, 225, 189, 0.5);
}

.statistics-table__tr div {
  padding: 0.66667rem 0;
  border-bottom: 1px solid white;
}

.pool {
  padding: 4rem 1rem;
  background-color: #7bc6b5;
  border-radius: 0 8px 0px 0;
}

.pool .section-title {
  color: black;
}

.pool .row {
  margin: 0;
  margin-bottom: 1rem;
}

.map {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.map > svg {
  max-height: 465px;
  min-height: 300px;
}

.map-section {
  color: white;
}

.map__container {
  background-color: #0e8175;
  padding: 1rem 4rem;
  border-radius: 0 0 0 8px;
}

.map__statistics {
  padding: 0;
  border-radius: 0 0 8px 0;
  background: url(../images/svg/logo_big_white.svg) no-repeat;
  background-position: 100% 100%;
  background-size: 250px;
  background-color: #0c6f64;
}

.map__statistics .section-title {
  color: #eff1e0;
}

.map__block {
  padding-bottom: 0;
}

.map__block:not(:last-child) {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
}

.map__block__title {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.map__block__data {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
}

.map__block__data .region-data-label {
  font-size: 1rem;
  color: #7bc6b5;
  padding-right: 1rem;
  position: relative;
}

.map__block__data .region-data-label span {
  position: absolute;
  font-size: 0.7rem;
  top: 0;
}

.home-info {
  background: url(../images/vacsina_zashto2.png) right 4rem no-repeat;
}

.home-info__container {
  padding: 4rem;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(85%, white), to(transparent));
  background-image: linear-gradient(90deg, white 85%, transparent);
}

@media (max-width: 47.9em) {
  .home-info__container {
    background-image: none;
  }
}

@media (max-width: 61.9em) {
  .home-info {
    background: url(../images/vacsina_zashto4.png) right 4rem no-repeat;
  }
  .home-info__container {
    padding: 4rem 1rem;
  }
}

@media (max-width: 47.9em) {
  .home-info {
    background: none;
  }
  .home-info__container {
    padding: 4rem 1rem;
  }
}

@media (min-width: 75em) {
  .statistics-resume {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .statistics-resume > div {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

@media (max-width: 61.9em) {
  .map__container,
  .map__statistics,
  .pool,
  .statistics {
    border-radius: 0;
  }
  .map__container {
    padding: 1rem 0.5rem;
  }
}

@media (max-width: 47.9em) {
  .home-title {
    font-size: 1.8rem;
  }
  .home-top {
    padding: 1rem 0;
  }
  .home-top .col-lg-6:first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .home-top .col-lg-6:last-child {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .home-top__video {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .home-stories {
    padding: 2rem 1rem;
    background-position: left 250px;
  }
  .home-stories__content {
    width: 100%;
  }
  .home-stories__media {
    background-size: contain;
    height: 250px;
    min-height: 250px;
  }
  .home-stories__nav {
    position: absolute;
    z-index: 2;
  }
  .home-stories__prev, .home-stories__next {
    padding: 0;
    top: 100px;
  }
  .home-stories__prev {
    left: 0;
  }
  .home-stories__next {
    right: 0;
  }
  .statistics {
    padding: 4rem 1rem;
    border-radius: 0px;
  }
  .statistics-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    font-size: 0.75rem;
  }
  .statistics-table > .statistics-table__tr > div:first-of-type {
    font-weight: 800;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    font-weight: 800;
    text-align: center;
  }
  .statistics-table__thead {
    font-weight: 800;
  }
  .statistics-table__tr {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 33.33%;
            flex: 1 1 33.33%;
    width: 33.33%;
  }
  .statistics-table__tr:first-of-type div {
    border-top: 1px solid transparent;
  }
  .pool {
    border-radius: 0px;
  }
  .footer__list {
    padding-right: 1rem;
  }
  /*.social { margin: 0; }*/
  .footer .brand__logo {
    background-position: center center;
  }
  .footer__social .social__container {
    justify-content: center;
  }
  .footer__sub-nav {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 0.5rem;
  }
  .footer__sub-nav a {
    display: inline-block;
    margin: 0 0.5rem;
  }
  .footer__sub-nav a:first-of-type {
    margin-left: 0;
  }
}

.region-data-label,
.region-data-total,
.region-data-percent {
  display: inline-block;
}

.region-data-label {
  width: 20%;
}

.region-data-total {
  min-width: 35%;
  text-align: right;
}

.region-data-percent {
  min-width: 35%;
  text-align: right;
}

@media (min-width: 992px) and (max-width: 1199.5px) {
  .region-data-total {
    text-align: right;
    font-size: 1rem;
  }
  .region-data-percent {
    text-align: right;
    font-size: 1rem;
  }
}
/*# sourceMappingURL=main.css.map */

/* NEW STYLES FROM 31.08.2023 */

.facts > div {
  position: relative;
  font-weight: bold;
}

.facts > div:nth-child(even) {
  background-color: #eff1e0 !important;
}

.facts > div::after {
  content: "✓";
  font-size: 10rem;
  opacity: 0.3;
  color: white;
  font-weight: bold;
  position: absolute;
  top: -30px;
  left: 20px;
}

.dates_holder1,
.dates_holder2 {
  position: relative;
}

@media (min-width: 992px) {
  .dates_holder1 {
    margin-left: -50px;
    width: calc(66.66666667% + 50px);
  }
  .dates_holder1 h1 {
    position: absolute;
    top: 50px;
    left: 140px;
  }
}

.dates_holder1 > img,
.dates_holder2 > img {
  display: block;
  width: 100%;
  margin: 0 20px 20px 0;
}

.people-data > div:first-child {
  display: block;
  position: relative;
  z-index: 2;
  background: url(../images/people_25.png);
  background-color: transparent;
  width: 100%;
  height: 30px;
  background-size: 100%;
  background-repeat-y: no-repeat;
}

.people-data {
  display: block;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 30px;
  background-color: #ddd;
}

.people-data:last-child { margin-bottom: 30px }

@media (max-width: 1400px) {
  .people-data > div:first-child, .people-data { height: 27px; }
}

@media (max-width: 1200px) {
  .people-data > div:first-child, .people-data { height: 23px; }
}

@media (max-width: 992px) {
  .people-data > div:first-child, .people-data { height: 30px; }
}

.people-data.red {
  background-color: #e4cfcf;
}

.people-data.green {
  background-color: #cfe4d8;
}

.people-data > div:nth-child(2) {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 0;
  -webkit-transition: width 1s ease-in-out;
  -moz-transition: width 1s ease-in-out;
  -o-transition: width 1s ease-in-out;
  transition: width 1s ease-in-out;
  height: 100%;
  background-image: linear-gradient(45deg,rgba(255,255,255,.35) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.35) 50%,rgba(255,255,255,.35) 75%,transparent 75%,transparent);
  background-size: 1rem 1rem;
  animation-name: move-bg;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes move-bg {
   from {
     background-position: 0;
   }
   to { 
     background-position: 1rem;
   }
}

.calendar .calendar__table__cell__title small {
  font-weight: normal;
}

.calendar .calendar__table__cell__title {
  line-height: 0.95rem;
}

.alert-danger2 {
  color: white;
  background-color: #dc3545;
  border-color: #a80010;
  text-shadow: 2px 1px 0px #a80010;
}

.alert-warning2 {
  color: #664d03;
  background-color: #f7d8b5;
  border-color: #ffb841;
}

h2.subtitle {
  color: #0e8175;
  margin-top: -2rem;
  font-size: 1.5rem;
}

.form-floating>label {
  left: 10px;
}

.green-social {
  filter: invert(32%) sepia(16%) saturate(7079%) hue-rotate(130deg) brightness(65%) contrast(89%);
}

.content-section {
    border-radius: 10px;
    padding: 2rem;
    background-color: white;
    margin: 2rem auto;
    margin-top: 0;
}

.content-section--blue {
    background-color: #eff1e0;
    border: 1px solid #d0dad0;
}

.content-section--white {
    background-color: white;
    border: 1px solid #cde8f6;
}

.news__title {
    font-weight: 800;
    font-size: 1.13rem;
    text-transform: none;
    margin-bottom: 0.5rem;
}

.news__meta {
    display: block;
    align-items: center;
    width: 100%;
    color: #0e8175;
    font-size: 0.9rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid #ddd;
}

.news__excerpt {
    margin-top: 1rem;
}

.news__excerpt::after {
    content: "";
    display: block;
    clear: both;
}

.news__category {
  background-color: #aaa;
  color: white;
  padding: 0.05rem 0.5rem;
  border-radius: 4px;
}

.pagination__btn .page-link {
    border-radius: 20px;
    background-color: #83d5c2;
    border-color: #83d5c2;
}

.pagination {
    margin: 1rem auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: flex;
    padding-left: 0;
    list-style: none;
}

.pagination .page-item {
    padding: 0.16667rem;
}

.pagination .page-item.active .page-link {
    color: white;
    background-color: #0e8175;
    border-color: #0e8175;
}

.pagination .page-item .page-link {
    padding: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #0b6057;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.pagination .page-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
    color: #0b6057;
    font-weight: 600;
    font-size: 0.9rem;
}

.page-item:not(:first-child) .page-link {
    margin-left: -1px;
}

.page-link {
    padding: .375rem .75rem;
}

@media (min-width: 768px) {
  .media-container {
    max-width: 50%;
    float: left;
    margin: 0 15px 15px 0;
  }
}

.page-content img {
  max-width: 100%;
}

.map__block ul {
  padding-left: 0;
  border-bottom: 1px solid white;
}
.map__block .map-item {
  color: white;
  display: flex;
  align-items: center;
  margin: 0.5rem 0;
  padding-bottom: 0.5rem;
  font-size: 0.825rem;
}
.map__block .map-item p {
  margin-bottom: 0;
  max-width: 80%;
}
.map__block .map-item--rzi {
  color: #eff1e0;
  font-weight: bold;
}
.map__block .map-item--rzi span {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 0.825rem;
  background: url(../images/svg/plus-square.svg) center no-repeat;
  background-size: contain;
  margin-right: 1rem;
  margin-bottom: 2px;
}
.map__block .map-item--address span {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 0.825rem;
  background: url(../images/svg/map-pin.svg) center no-repeat;
  background-size: contain;
  margin-right: 1rem;
}
.map__block .map-item--working-hours span {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 0.825rem;
  background: url(../images/svg/clock.svg) center no-repeat;
  background-size: contain;
  margin-right: 1rem;
}
.map__block .map-item--tel span {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 0.825rem;
  background: url(../images/svg/phone.svg) center no-repeat;
  background-size: contain;
  margin-right: 1rem;
  margin-bottom: 2px;
}
.map__block .map-item--tel a {
  color: white;
  margin-right: 0.5rem;
  text-decoration: none;
} /*# sourceMappingURL=map-block-temp.css.map */

.page-content img {
  max-width: 100%;
}

/* tabs styling */
.nav-tabs .nav-link:hover {
  color: #0e8175;
}

.nav-tabs .nav-link.active {
  background-color: #0e8175;
  color: #fff;
  border-color: #0e8175;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-radius: 0 !important;
}

.map .map-data-source {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 0.8rem;
}