.section-social {
  height: 600px;
  width: 100%;
  background: #2e383e;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.section-social h2 {
  margin: 100px 0 100px;
  color: white;
  font-size: 36px;
  font-weight: 900;
}
.section-social-content {
  width: 70%;
  height: fit-content;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.social-card {
  width: 200px;
  height: fit-content;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: auto;
}
.social-card h3,
h4,
h5 {
  color: white;
}
.section-social h3 {
  font-weight: 900;
  font-size: 25px;
}
.section-social h5 {
  font-weight: 400;
}
.section-social h4 {
  font-size: 14px;
  font-weight: 400;
}
.social-card-svg {
  height: 100px;
  width: 100px;
  background-color: #3f8cfd;
  margin: 15px 0 30px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.social-card-svg svg {
  color: white;
  transition: 0.5s all;
}
.social-card-svg:hover {
  background: white;
  cursor: pointer;
}
.social-card-svg:hover svg {
  color: #3f8cfd;
}
@media (max-width: 1200px) {
  .section-social {
    height: fit-content;
    padding-bottom: 50px;
  }
  .section-social-content {
    width: 70%;
    height: fit-content;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 0;
  }
}
@media (max-width: 700px) {
  .section-social {
    height: fit-content;
    padding-bottom: 70px;
  }
  .section-social-content {
    grid-template-columns: repeat(1, 1fr);
  }
  .section-social h2 {
    margin: 70px 0 70px;
    text-align: center;
    width: 70%;
  }
}
