/*******
	Breakpoints / Layout / Grid
********/
/*******
	Typography
********/
/* Font weight START */
/* Font weight END */
/*******
	Backgrounds
********/
/*********
	Elements
********/
/* Breakpoints START */
/* Breakpoints END */
/* Spacings START */
/* Spacings END */
/*@import "../base/typography";
*/
.map-block {
  background: white;
}
@media (min-width: 1024px) {
  .map-block {
    height: 1024px;
  }
}
.map-block__map {
  width: 100%;
  display: flex;
  height: 350px;
}
@media (min-width: 1024px) {
  .map-block__map {
    height: unset;
    width: 90vw;
  }
}
.map-block__inner {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 1024px) {
  .map-block__inner {
    flex-direction: row;
  }
}
.map-block__text-block {
  width: 100%;
  height: 100vh;
  margin-top: 50px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  flex-basis: 80%;
  gap: 30px;
}
@media (min-width: 1024px) {
  .map-block__text-block {
    gap: 40px;
    flex-basis: 40%;
    margin-top: 95px;
    padding: 0 70px 60px;
  }
}
.map-block__title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: left;
  font-size: 24px;
  line-height: 26px;
}
@media (min-width: 1024px) {
  .map-block__title {
    padding-left: 5px;
    font-size: 32px;
    line-height: 32px;
  }
}
.map-block__items {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media (min-width: 1024px) {
  .map-block__items {
    padding: 5px 30px 0 5px;
    overflow-y: auto;
    gap: 26px;
    /* width */
    /* Track */
    /* Handle */
  }
  .map-block__items::-webkit-scrollbar {
    width: 4px;
  }
  .map-block__items::-webkit-scrollbar-track {
    background: rgba(17, 17, 17, 0.1);
  }
  .map-block__items::-webkit-scrollbar-thumb {
    background: rgb(17, 73, 128);
  }
}
.map-block__item {
  height: 240px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 8px rgba(0, 33, 72, 0.1);
  position: relative;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .map-block__item {
    min-height: 240px;
    width: 412px;
  }
}
.map-block__item.--expanded {
  height: 280px;
}
@media (min-width: 1024px) {
  .map-block__item.--expanded {
    min-height: 280px;
  }
}
.map-block__item.--expanded .map-block__item-inner {
  padding-top: 20px;
}
.map-block__item.--expanded .map-block__item-footer-link::after {
  content: "-";
}
.map-block__item-flag {
  position: absolute;
  background-image: url("/SiteFiles/dist/images/icons/map-flag.svg");
  background-repeat: no-repeat;
  object-fit: contain;
  top: -6px;
  left: 8px;
  width: 47px;
  height: 50px;
}
.map-block__item-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 20px;
  justify-content: center;
}
.map-block__item-inner li a {
  display: flex;
  align-items: baseline;
  font-size: 14px;
}
@media (min-width: 1024px) {
  .map-block__item-inner li a {
    font-size: 18px;
  }
}
.map-block__item-inner svg {
  margin-right: 8px;
  width: 14px;
  height: auto;
}
@media (min-width: 1024px) {
  .map-block__item-inner svg {
    width: 18px;
  }
}
.map-block__item-inner a {
  background: none;
}
.map-block__item-title {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  color: rgb(17, 17, 17);
}
.map-block__item-address {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  position: relative;
  display: flex;
  align-items: baseline;
}
@media (min-width: 1024px) {
  .map-block__item-address {
    font-size: 18px;
  }
}
.map-block__item-phone {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
}
.map-block__item-email {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
}
.map-block__item-footer {
  background: rgb(217, 217, 217);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 53px;
  width: 100%;
}
.map-block__item-footer:hover {
  background: linear-gradient(264.53deg, #6DCFF6 -129.58%, #114980 54.37%);
}
.map-block__item-footer.active {
  background: linear-gradient(264.53deg, #6DCFF6 -129.58%, #114980 54.37%);
}
.map-block__item-footer-link {
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: -0.03em;
  text-align: left;
  color: white;
}
.map-block__item-footer-link::after {
  content: "+";
  font-size: 16px;
  margin-left: 6px;
}