#contacts-block{
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

#contacts-block .title-block{
  margin-bottom: 27px;
}

#contacts-block .container{
  position: relative;
  z-index: 9;
  padding: 0;
}

#contacts-block .title-block span {
  background-color: var(--accent);
  color: var(--primary);
  font-size: 32px;
  padding: 0 15px;
  border-radius: 10px;
  transform: rotate(-3deg);
  line-height: 59px;
  display: inline-block;
  width: fit-content;
  position: relative;
  /* top: 3px; */
  margin-bottom: 8px;
  margin-right: 5px;
}

.contacts{
  background-color: var(--bg);
  padding: 40px 60px;
  max-width: 450px;
  border-radius: 15px;
}

.contacts p, .contacts a, .contacts .adress_value{
  color: var(--card);
  font-family: "Inter";
  text-transform: unset;
}
.contacts .adress_value p {
  color: inherit;
}

.contacts__map{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.map-holder{
  height: 100%;
  width: 100%;
}

.adress_name{
  opacity: 0.6;
  margin-bottom: 5px;
}

.adress_value p{
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
/* 
.adress_value{
  opacity: 0.8;
} */

.contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contacts .soc-holder{
  margin-bottom: 26px;
}

.adress_value p{
  max-width: 310px;
}

@media (max-width: 850px) {
  .contacts__map{
    height: 400px;
    position: static;
    border-radius: 15px;
    overflow: hidden;
  }
  .contacts{
    max-width: none;
  }
  .adress_value p{
    max-width: none;
  }
}

  @media (max-width: 700px) {
    #contacts-block{
        margin-top: 40px;
    }    
    .contacts{
      padding: 30px;
    }
  }
