/** {*/
/*  box-sizing: border-box;*/
/*}*/

/*body {*/
/*  max-width: 1170px;*/
/*  width: 100%;*/
/*  margin: 0 auto;*/
/*}*/

/*p {*/
/*  margin: 0;*/
/*  padding: 0;*/
/*}*/


.map__right svg {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.map__right svg path {
  cursor: pointer;
  fill: all .3s ease-in-out;
}

.map__right svg path.active {
  fill: #046D5C;
}

.map__right svg path:hover {
  fill: #CCBCA0;
}

.map__right svg path.active:hover {
  fill: #046D5C;
}



.map {
  padding: 25px 0;
}

.map__container {
  padding: 0 15px;
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.map__left {
  width: 50%;
}

.map__right {
  width: 45%;
}

.map__left-title {
  font-size: 36px;
  line-height: 1.5;
  color: #006b5b;
  font-weight: bold;
  margin-bottom: 10px;
}

.map__left-subtitle {
  color: #000;
  line-height: 1.5;
  margin-bottom: 20px;
}

.map__left-subtitle p:not(:last-child) {
  margin-bottom: 20px;
}


.map__left-wrap {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}

.map__left-content {
  max-width: 260px;
  width: 100%;
}

.map__left-text {
  color: #006b5b;
  font-weight: bold;
  margin-bottom: 10px;
}

.map__left-list {
  width: 100%;
  list-style: none;
  counter-reset: section;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map__left-item {
  /*display: flex;*/
  /*gap: 10px;*/
}

.map__left-icon {
  max-width: 40px;
  width: 100%;
  height: 50px;
  background-image: url(./location.svg);
  background-repeat: no-repeat;
  position: relative;
  background-position: center;
}

.map__left-icon::before {
  counter-increment: section;
  content: counters(section, ".") " ";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%);
  color: #fff;
  font-size: 18px;
}


.map__left-item-text {
  margin-top: 10px;
  color: #000;
  line-height: 1.2;
}

.map__left-img-list {
  width: 260px;
  height: 260px;
  position: relative;
}

.map__left-img-item {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  z-index: -1;
  opacity: 0;
  transition: all .3s ease-in-out;
}

.map__left-img-item.active {
  position: initial;
  visibility: visible;
  z-index: 1;
  opacity: 1;
}

.map__left-img-item img {
  max-width: 100%;
}

.map__left-link {
  display: flex;
  gap: 10px;
}

.map__left-icon {
  transition: all .3s ease-in-out;
}

.map__left-link:hover .map__left-icon {
  /*opacity: 0.8;*/
}

.map__left-item-text {
  transition: all .3s ease-in-out;
}

.map__left-link:hover .map__left-item-text {
  /*text-decoration: underline;*/
}

.map__left-link:hover {
  text-decoration: none;
}

.map__left-link:hover .map__left-icon {
  background-image: url("location-hover.svg");
}

.map__left-link:hover .map__left-item-text {
  color: #5f5f5f;
}


@media (max-width: 769px){
  .map__container {
    gap: 20px;
  }
  .map__left-title {
    font-size: 28px;
    line-height: 1.2;
  }
}