@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200..1000&display=swap");
:root {
  --page-bg: #F3F3F3;
  --white-color: #fff;
  --primary-color: #EF6A37;
  --pr-hover-color: #e26634;
  --dark-color: #141414;
  --grey-color: #DCE0E3;
}

.main__screen {
  padding-top: 150px;
}

.screen__hedding {
  text-align: center;
}
.screen__hedding .screen__title {
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 130%;
  color: var(--dark-color);
}
.screen__hedding img {
  margin: 30px 0 80px;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 200px;
}

.screen__description {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.screen__description p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--dark-color);
  margin-bottom: 10px;
}
.screen__description span {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: var(--dark-color);
  margin-bottom: 10px;
}
/*----------- advantages -------------------------------*/
.advantages {
  margin: 60px 0;
}

.advantages__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--dark-color);
  max-width: 650px;
}

.advantages__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.advantages__items .item__advantages {
  background: var(--grey-color);
  padding: 25px;
  border-radius: 15px;
}
.advantages__items .item__image {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.advantages__items .item__image .item__text {
  font-weight: 800;
  font-size: 20px;
  line-height: 150%;
  color: var(--dark-color);
}
.advantages__items .item__image img {
  width: 75px;
  margin-right: 15px;
}
/*---------- achievement ---------------------*/
.achievement__title {
  margin-bottom: 30px;
}

.achievement__body {
  display: flex;
  justify-content: flex-end;
  z-index: 2;
  position: relative;
}
.achievement__body .stats-achievement {
  width: 60%;
}

.achievement__map {
  margin-top: -250px;
}

.map-container {
  position: relative;
  width: 100vw;
}

.map-image {
  display: flex;
  width: 100%;
  max-height: 100%;
  max-width: 100%;
}

.point {
  position: absolute;
  text-align: center;
  padding: 4px;
  border-radius: 50%;
  background: #EF6A37;
  width: 4px;
  height: 4px;
}

.point::before {
  content: "";
  position: absolute;
  border: 2px solid #EF6A37;
  left: -10px;
  opacity: 0;
  right: -10px;
  top: -10px;
  bottom: -10px;
  border-radius: 50%;
  animation: pulse 2.5s linear infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
.point::after,
.point::before {
  content: "";
  position: absolute;
  border: 2px solid #EF6A37;
  left: -10px;
  opacity: 0;
  right: -10px;
  top: -10px;
  bottom: -10px;
  border-radius: 50%;
  animation: pulse 2.5s linear infinite;
}

.point::after {
  animation-delay: 1.25s;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
/*=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/==/=*/
/*================= АДАПТАЦІЯ СТИЛІВ ДЛЯ МОБІЛЬНИХ ПРИСТРОЇВ ===================================*/
/*=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/=/*/
@media (max-width: 959.98px) {
  .achievement__body .stats-achievement {
    width: 72%;
  }
  .achievement__map {
    margin-top: -150px;
  }
}
@media (max-width: 767.98px) {
  .screen__hedding img {
    margin: 20px 0 30px;
  }
  .advantages {
    margin: 90px 0;
  }
  .advantages__items {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }
  .achievement__body .stats-achievement {
    width: 100%;
  }
  .achievement__map {
    margin-top: 0px;
  }
}
@media (max-width: 620px) {
  .screen__description {
    grid-template-columns: 1fr;
  }
  .advantages__items {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=about.css.map */