@import url("https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,100..900;1,100..900&display=swap");
.contacts .container {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px 30px;
  padding: 30px 52px;
}
@media screen and (max-width: 500px) {
  .contacts .container {
    overflow: hidden;
    overflow-x: scroll;
    padding: 10px 10px;
  }
}
@media screen and (min-width: 1440px) {
  .contacts .container .item1 {
    width: 40%;
  }
}
.contacts .container .item1 .fItem {
  display: flex;
  flex-direction: column;
  justify-content: start;
}
.contacts .container .item1 .fItem .header p {
  font-size: 14px;
  color: #5d809b;
}
.contacts .container .item1 .fItem .body {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 1rem;
}
.contacts .container .item1 .fItem .body .item {
  text-decoration: none;
  color: #5d809b;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  .contacts .container .item1 .fItem .body .item {
    width: 100%;
  }
}
.contacts .container .item1 .fItem .body .item .logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: whitesmoke;
  border-radius: 50%;
  padding: 0.3rem;
}
.contacts .container .item1 .fItem .body .item .logo img {
  width: 30px;
  height: 30px;
}
.contacts .container .item1 .fItem .body .item .text {
  font-size: 24px;
}
@media screen and (max-width: 500px) {
  .contacts .container .item1 .fItem .body .item .text {
    font-size: 18px;
  }
}
@media screen and (max-width: 1440px) {
  .contacts .container .item2 {
    overflow: hidden;
  }
}/*# sourceMappingURL=style.css.map */