.site-header svg path {
  fill: #fff !important;
}

.calendar {
  padding: 60px 0;
}

.calendar .ics-calendar {
  margin-bottom: 0;
}

.ics-calendar-month-grid {
  margin: 0;
}

.ics-calendar-select {
  margin: 0;
  background-color: #fff;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid var(--blue-1);
  width: 250px;
  height: 45px;
  padding: 0 15px;
  font-weight: 600;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxMCIgZmlsbD0ibm9uZSIgdmlld0JveD0iMCAwIDE4IDEwIj4KICA8cGF0aCBmaWxsPSIjMDAxNjg5IiBkPSJNOC4zIDkuMi44IDEuN0MuNCAxLjMuNC43LjguM2ExIDEgMCAwIDEgMS40IDBsNi44IDcgNi44LTdjLjQtLjMgMS0uMyAxLjQgMCAuMy40LjMgMSAwIDEuNEw5LjYgOS4yYy0uMy40LTEgLjQtMS4zIDBaIi8+Cjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) 50%;
  background-size: 15px;
  margin-bottom: 30px;
}

.calendar table th {
  background-color: var(--blue-1);
  color: #fff;
  padding: 5px 10px !important;
}

.calendar table td {
  color: var(--blue-1);
}

.calendar table td.off {
  background-color: rgba(0, 22, 137, 0.2);
}

.calendar table td .day {
  background-color: rgba(0, 22, 137, 0.2);
  color: var(--blue-1);
}

.calendar table td.today .day {
  background-color: var(--blue-1);
  color: #fff;
}

.boxes__cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  --padding: 80px;
  padding: var(--padding) 0;
  text-decoration: none;
}

.boxes__card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.boxes__card::after {
  content: "";
  width: calc(100% - 60px);
  left: 50%;
  transform: translateX(-50%);
  height: 7px;
  background-color: #fff;
  position: absolute;
  bottom: 15px;
  z-index: 3;
}

.boxes__card:hover .boxes__cardOverlay {
  transform: translate3d(0, 0, 0);
}

.boxes__cardOverlay {
  position: absolute;
  bottom: 0;
  height: 100%;
  transform: translate3d(0, calc(100% - 120px), 0);
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  z-index: 2;
  transition: 0.5s ease;
}

.boxes__cardTitle:before {
  content: "";
  height: 22px;
  width: 22px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMSIgaGVpZ2h0PSIxMCIgZmlsbD0ibm9uZSIgdmlld0JveD0iMCAwIDExIDEwIj4KICA8cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTAuMyA1IDYuMiA4LjhjLS4yLjItLjYuMi0uOCAwYS42LjYgMCAwIDEgMC0uOWwzLjEtM2gtOGEuNS41IDAgMCAxLS41LS41YzAtLjMuMi0uNi42LS42aDhMNS4zIDFhLjYuNiAwIDAgMSAwLS43Yy4yLS4yLjYtLjIuOCAwTDEwLjMgNGwuMi40YzAgLjIgMCAuMy0uMi40WiIvPgo8L3N2Zz4K");
  background-size: 22px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.boxes__cardTitle {
  position: relative;
  width: 100%;
  --font-size: 22px;
  --line-height: 25px;
  line-height: var(--line-height);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-heading);
  color: #fff;
  font-size: var(--font-size);
  min-height: 120px;
  display: flex;
  align-items: center;
  padding: 0 55px 0 30px;
}

.Counter {
  background-color: #02283e;
  padding: 2rem 0;
}
.Counter__points {
  display: flex;
  justify-content: center;
  gap: 2rem 3rem;
  flex-wrap: wrap;
}
.Counter__point {
  position: relative;
  width: clamp(200px, 25% - 3rem, 300px);
  display: grid;
  place-items: center;
  border: 6px solid var(--house-color, #0082ca);
  text-align: center;
  border-radius: 100%;
  line-height: 1.2em;
  position: relative;
  color: #fff;
}
.Counter__point:before {
  content: "";
  padding-top: 100%;
}
.Counter__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.Counter__inner .score {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 0.75em;
}
.Counter__inner .name {
  font-size: 20px;
  font-weight: 700;
}/*# sourceMappingURL=new-styles.css.map */