/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@200;300;400;700&display=swap");
.projects {
  margin: 128px 0;
}
.projects h2, .projects h5 {
  display: inline-block;
  position: relative;
  left: 50px;
  margin: 10px 0;
}
.projects h5 {
  opacity: 0.7;
}
.projects:first-of-type {
  margin-top: 256px;
}

/* ^^^ Main Block ^^^ */
.crawl {
  position: relative;
  margin: 90px 0;
  padding: 38px 0;
  list-style-type: none;
  overflow: hidden;
}
.crawl .card {
  position: relative;
  width: 110%;
  margin: 0 0 -32px 0;
  padding: 256px 88px;
  top: -10%;
  background: var(--picture);
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  box-shadow: 1px -1px 10px #161616;
}
.crawl .card a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.crawl .card a .name, .crawl .card a .button {
  position: absolute;
  padding: 0 10px;
  background: #1616168F;
  border-radius: 8px;
  color: #FFFFFF;
}
.crawl .card a .name {
  display: inline-block;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  font-size: 40px;
}
.crawl .card a .button {
  width: auto;
  top: 10px;
  left: 10px;
  font-size: 32px;
  opacity: 0;
  transition: all 0.2s ease-out 0.1s;
}
.crawl .card:hover a .button {
  opacity: 1;
}

@media only screen and (max-width: 530px) {
  .crawl .card {
    padding: 128px 0;
  }
  .crawl .card a .name {
    font-size: 28px;
  }
  .crawl .card a .button {
    font-size: 12px;
  }
  .crawl .card:hover a .name {
    opacity: 1;
  }
}/*# sourceMappingURL=projectsstyle.css.map */