section.genel {
  padding: 100px 0 0;
  margin-bottom: 3rem;
}
@media screen and (max-width: 560px) {
  section.genel {
    padding: 60px 0 0;
  }
}
section.genel .container {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
}
@media screen and (max-width: 560px) {
  section.genel .container {
    padding: 0 1rem;
  }
}
section.genel .container h2 {
  margin-bottom: 2rem;
}
section.genel .container p {
  font-size: 18px;
  opacity: 0.75;
}
@media screen and (max-width: 560px) {
  section.genel .container p {
    font-size: 16px;
  }
}
section.genel h3 {
  margin: 3rem 0;
}
section.genel .container .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  section.genel .container .gallery {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  section.genel .container .gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.genel .container .gallery img {
  border-radius: 1em;
  width: 100%;
}
section.genel .container .gallery h3 {
  margin-top: 0;
}
