#homemainbg {
    display: block;
    background-position: 25% 50%;
    background-image: url("../img/kv-statistics.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}
.mapm {
	width: 100%;
	height: 70svh;
    font-family: futura-pt, a-otf-ud-shin-go-pr6n, sans-serif; 
    font-size: clamp(1rem, 0.667rem + 1.111vi, 1.5rem);
}
.stclm {
    width: 100%;
    height: 600px;
    font-family: futura-pt, a-otf-ud-shin-go-pr6n, sans-serif;
    font-size: clamp(0.875rem, 0.708rem + 0.556vi, 1.125rem);
}
.accordion-title { 
  font-size: clamp(1rem, 0.733rem + 1.111vi, 1.4rem);
  padding: 15px;
  cursor: pointer;
  transition: background 0.2s;
  margin: 5px 0;
  border-radius: 3px;
  font-size: 1.2rem;
  color: #350A1A;
  background: #eee;
}
.accordion-title::before {
  content: url("../img/chevron-up-solid.svg");
  margin-right: 10px;
  font-size: 12px;
  width: 17px;
  height: 17px;
  line-height: 15px;
  text-align: center;
  text-rendering: auto;
  border-radius: 17px;
  display: inline-block;
  color: #fff;
  background-color: #fff;
  position: relative;
  top: -1px;
  border: 2px solid #fff;
  transform: rotate(0deg);
  transition:all 0.2s ease-in-out;
  -moz-transition:all 0.2s ease-in-out;
  -webkit-transition:all 0.2s ease-in-out;
  -webkit-font-smoothing: antialiased;
}
.active-accordion-section > .accordion-title::before {
  transform: rotate(180deg);
}
.card {
    border-radius: 10px;
    filter: drop-shadow(0 5px 10px 0 #ffffff);
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    padding: 20px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: 0.6s ease-in;
}

.card::before {
    content: "";
    position: absolute;
    z-index: -1;
    right: -12px;
    background: #164A84;
    height:100%;
    width: 24px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.25s ease-out;
}

.card:hover::before{
    transition-delay:0.2s ;
    transform: scale(150);
}

.card:hover, .card:hover p{
    color: #ffffff;
}

.card p{
    padding: 10px 16px 10px 0;
}

@media screen and (max-width:768px) {
    .mapm {height: 70svh;}
}