@import url(https://fonts.googleapis.com/css?family=Rubik:500,700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Inter:300&display=swap);
:root {
  --bg-color: #fff;
  --font-color: #04324b;
  --bg-block: #ebf7ff;
  --primary-color: #ff5e00;
  --second-color: #04324b;
  --primary-font: "Rubik", sans-serif;
  --second-font: "Inter", sans-serif;
}



.map-project button {
  cursor: pointer;
  color: inherit;
  background: transparent;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
}

.map-project button:active,
.map-project button:focus {
  outline: none !important;
}

.map-project button::-moz-focus-inner {
  border: 0 !important;
}

.map-project a {
  cursor: pointer;
  color: inherit;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.map-project a:link,
.map-project a:visited {
  text-decoration: none;
}

.map-project a:hover {
  text-decoration: none;
}

.map-project ul li,
.popup .map-project ul li  {
  list-style: none;
}

.map-project img {
  display: inline-block;
  max-width: 100%;
  border: 0;
  vertical-align: middle;
}

.map-project h1,
.popup .map-project h1,
.map-project h2,
.popup .map-project h2,
.map-project h3,
.popup .map-project h3,
.map-project h4,
.popup .map-project h4,
.map-project h5,
.popup .map-project h5,
.map-project h6,
.popup .map-project h6
 {
  font-weight: inherit;
  font-size: inherit;
}

html.lock {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

.map-project .container {
  margin: 0 auto;
  width: 100%;
  max-width: 1186px;
  padding-left: 20px;
  padding-right: 20px;
}

.map-project .hidden {
  display: none !important;
}

.map-project h2 {
  font-weight: 500;
  font-size: 36px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 1439.98px) {
  .map-project h2 {
    font-size: 28px;
  }
}
@media (max-width: 1169.98px) {
  .map-project h2 {
    font-size: 24px;
  }
}
@media (max-width: 991.98px) {
  .map-project h2 {
    font-size: 20px;
  }
}

.map-project h5,
.popup  h5 {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.03em;
}
@media (max-width: 1439.98px) {
  .map-project h5,
	.popup h5  {
    font-size: 18px;
  }
}
@media (max-width: 1169.98px) {
  .map-project h5,
.popup h5  {
    font-size: 16px;
  }
}

.map-project h6,
.popup  h6 {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.03em;
  color: #04324b;
}
@media (max-width: 1439.98px) {
  .map-project h6,
.popup  h6  {
    font-size: 16px;
  }
}
@media (max-width: 1169.98px) {
  .map-project h6,
.popup  h6  {
    font-size: 14px;
  }
}

.map-project .btn {
  text-transform: none;
  cursor: pointer;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  z-index: 10;
  padding: 9px 15px;
  background-color: var(--primary-color);
  color: #fff;
  gap: 10px;
}
.map-project .btn svg {
  width: 24px;
  height: 24px;
}

body::after {
  /* content: ""; */
  /* -webkit-backdrop-filter: blur(10px); */
          /* backdrop-filter: blur(10px); */
  /* background: rgba(0, 0, 0, 0.3); */
  /* position: fixed; */
  /* width: 100%; */
  /* height: 100%; */
  /* top: 0; */
  /* left: 0; */
  /* /* opacity: 0; */ */
  /* -webkit-transition: opacity 0.8s ease 0s; */
  /* transition: opacity 0.8s ease 0s; */
  /* pointer-events: none; */
  /* z-index: 101002; */
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 45px 15px;
  -webkit-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
  z-index: 101003;
}

.popup_show {
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
  backdrop-filter: blur(10px);
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
}

.popup__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}

.popup__close {
  z-index: 10;
  width: 36px;
  height: 36px;
  color: #264e86;
  background-color: #ebf7ff;
  border-radius: 50%;
  border:  none;
}
.popup__close svg {
  width: 12px;
  height: 12px;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #fff;
  padding: 30px;
  width: 100%;
  max-width: 708px;
  position: relative;
  border-radius: 13px;
}
@media (max-width: 1439.98px) {
  .popup__content {
    padding: 20px;
  }
}
.lock .popup__content {
  visibility: visible;
}

.popup__text blockquote {
  padding: 20px;
  border-radius: 13px;
  background: #ebf7ff;
  border-left: none;
}
@media (max-width: 1439.98px) {
  .popup__text blockquote {
    padding: 10px;
  }
}
.popup__text ul {
  margin-top: 8px;
  padding-left: 0;
  list-style: none;
}
.popup__text ul li {
  padding-left: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 132%;
  color: #3d577b;
  position: relative;
}
@media (max-width: 1439.98px) {
  .popup__text ul li {
    font-size: 14px;
  }
}
.popup__text ul li:not(:last-child) {
  margin-bottom: 8px;
}
.popup__text ul li::before {
  content: "";
  background-image: url("../../img/check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 18px;
  height: 14px;
  position: absolute;
  top: 3px;
  left: 0;
}
@media (max-width: 1439.98px) {
  .popup__text ul li::before {
    width: 15px;
    height: 12px;
  }
}

.popup#success .popup__text {
  text-align: center;
}
.popup#success .popup__text svg {
  width: 10rem;
  height: 10rem;
  margin-bottom: 2rem;
}

.map-project {
  padding: 56px 0 50px;
  background-color: #ebf7ff;
  position: relative;
  z-index: 1;
}
.map-project .map-project__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.map-project .map-project__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}
.map-project .map-project__wrapper {
  margin-top: 30px;
}
.map-project .map-project__list {
  position: relative;
}
.map-project .map-project__item {
  padding: 30px;
  border-radius: 13px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 34px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: 0.3s ease 0.1s;
  transition: 0.3s ease 0.1s;
  -webkit-transition-property: opacity, visibility, -webkit-transform, -webkit-box-shadow;
  transition-property: opacity, visibility, -webkit-transform, -webkit-box-shadow;
  transition-property: opacity, visibility, transform, box-shadow;
  transition-property: opacity, visibility, transform, box-shadow, -webkit-transform, -webkit-box-shadow;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.map-project .map-project__item._open-project, .map-project .map-project__item:nth-child(-n+4) {
  position: relative;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
  pointer-events: all;
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
}
.map-project .map-project__item:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  .map-project .map-project__item {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
  }
}
.map-project .map-project__picture {
  max-width: 188px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  background: #ebf7ff;
  border-radius: 50%;
  position: relative;
}
.map-project .map-project__img {
  width: 100%;
  height: 100%;
  padding-bottom: 100%;
  position: relative;
}
.map-project .map-project__img img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.map-project .map-project__label {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding: 8px 10px;
  border-radius: 7px;
  background: #04324b;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0.03em;
  text-align: center;
  color: #fff;
}
.map-project .map-project__desc {
  padding: 28px 30px;
  border-radius: 13px;
  background: #ebf7ff;
}
@media (max-width: 991.98px) {
  .map-project .map-project__desc {
    padding: 20px;
  }
}
.map-project .map-project__dots {
  margin-top: 30px;
}
@media (max-width: 991.98px) {
  .map-project .map-project__dots {
    margin-top: 20px;
  }
}
.map-project .map-project__dots ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left:  0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 3.5px;
}
.map-project .map-project__dots ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #c0d3de;
}
.map-project .map-project__dots ul li:not(:first-child)::before {
  content: "";
  height: 1px;
  width: 18px;
  background-color: #c0d3de;
  margin-right: 3.5px;
}
@media (max-width: 1439.98px) {
  .map-project .map-project__dots ul li:not(:first-child)::before {
    width: 15px;
  }
}
.map-project .map-project__dots ul li:has(.dot--active)::before {
  background-color: var(--primary-color);
}
.map-project__dots ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-weight: 700;
  font-size: 18px;
  line-height: 110%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background-color: #c0d3de;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}
@media (max-width: 1439.98px) {
  .map-project__dots ul li a {
    font-size: 16px;
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 1169.98px) {
  .map-project__dots ul li a {
    font-size: 14px;
  }
}
.map-project__dots ul li a:not(.dot--active) {
  /* pointer-events: none; */
}
.map-project__dots ul li a.dot--active {
  background-color: var(--primary-color);
}
@media (any-hover: hover) {
  .map-project__dots ul li a:hover {
    background-color: var(--second-color);
  }
}
.map-project__add {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}