.new_locations {
  position: relative;
  font-weight: 400;
  color: #1c1c20;
  padding: 100px 0;
  border-top: 0.5px solid #f5f5f5;
}
.new_locations *,
.new_locations ::after,
.new_locations ::before {
  box-sizing: border-box;
}
.new_locations .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 520px) {
  .new_locations .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .new_locations .container {
    max-width: 1200px;
  }
}
.new_locations__header {
  margin-bottom: 40px;
}
.new_locations .header_locations__img {
  margin-bottom: 40px;
}
.new_locations .header_locations__img img {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
.new_locations .header_locations__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: #1c1c20;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  letter-spacing: -0.02em;
}
.new_locations__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.new_locations__item {
  min-width: 0 !important;
  max-width: 100% !important;
  background: #fafafa;
  border-radius: 12px;
  padding: 80px;
}
.new_locations .item_locations__img {
  width: 96px;
  height: 96px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}
.new_locations .item_locations__img img {
  max-width: 100%;
}
.new_locations .item_locations__title {
  margin-bottom: 32px;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.25;
  color: #1c1c20;
  letter-spacing: -0.02em;
}
.new_locations .item_locations__countries {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 80px;
}
.new_locations .countries_list {
  display: block;
}
.new_locations .countries_list li {
  display: block;
}
.new_locations .countries_list li:not(:last-child) {
  margin-bottom: 8px;
}
.new_locations .countries_list li a {
  position: relative;
  display: inline-block;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #7d7d82;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  transition: all 0.3s ease-in-out;
}
.new_locations .countries_list li a:hover {
  color: #434396;
  -webkit-text-decoration-color: #434396;
          text-decoration-color: #434396;
}

@media (max-width: 992px) {
  .new_locations {
    padding: 80px 0;
  }
  .new_locations__item {
    padding: 60px;
  }
  .new_locations .item_locations__title {
    font-size: 28px;
    line-height: 36px;
  }
  .new_locations .item_locations__countries {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 520px) {
  .new_locations__item {
    padding: 60px 24px;
  }
  .new_locations .item_locations__countries {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .new_locations .countries_list {
    display: block;
  }
  .new_locations .countries_list li a {
    font-size: 14px;
    line-height: 20px;
  }
}