.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
    margin-bottom: 60px;
    width: 100%;
    max-width: 1200px;
}

.contact-block__title {
  font-size: 24px;
  line-height: 33px;
  font-weight: 400;
  color: #333333;
  margin: 0 0 20px;
}

.contact-block__desc {
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: #333333;
  margin: 0 0 20px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-list-item i {
  font-size: 18px;
  color: #FF7A4F;
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.contact-list-item p {
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: #333333;
  margin: 0;
}

.contact-list-item a {
  font-size: 18px;
  color: #333333;
  text-decoration: none;
}

.contact-list-item a:hover {
  color: #FF7A4F;
}

.contact-map {
  width: 100%;
  height: 343px;
  border-radius: 10px;
  overflow: hidden;
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-hubs {
  margin-bottom: 60px;
  width: 100%;
}



.contact-hubs__title {
  font-size: 24px;
  line-height: 33px;
  font-weight: 400;
  color: #333333;
  margin: 0 0 20px;
}

.contact-hubs__desc {
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: #333333;
  max-width: 1200px;
  margin: 0 0 20px;
}

.hubs-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 100px;
}

.hub-item__country {
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
  color: #333333;
  margin: 0;
}

.hub-item__city {
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: #333333;
  margin: 0;
}

.contact-community__title {
  font-size: 24px;
  line-height: 33px;
  font-weight: 400;
  color: #333333;
  margin: 0 0 20px;
}

.contact-community__desc {
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: #333333;
  margin: 0 0 20px;
}

.contact-social {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.contact-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #d9d9d9;
  color: #333333;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition:
    background-color 0.3s ease-in-out,
    color 0.3s ease-in-out;
}

.contact-social__link i {
  position: relative;
  z-index: 2;
  color: currentColor;
  transition: color 0.3s ease-in-out;
}

.contact-social__link.instagram::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
}

.contact-social__link:hover {
  color: #ffffff;
}

.contact-social__link.facebook:hover {
  background-color: #1877f2;
}

.contact-social__link.linkedin:hover {
  background-color: #0A66C2;
}

.contact-social__link.instagram:hover::after {
  opacity: 1;
}

@media (max-width: 1259px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
/*
  .contact-map {
    height: 240px;
  }*/
}
