.textual-module {
  font-family: 'Space Grotesk', sans-serif;
  border-radius: 8px;
  overflow: hidden;
  color: white;
  position: relative;
  padding-bottom: 250px;
  /* Responsive Styles */
}
.textual-module .image-block {
  position: relative;
  background-size: cover;
  background-position: top;
  height: 700px;
  width: 100%;
  overflow: hidden;
}
.textual-module .image-block img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.textual-module .content {
  z-index: 2;
  position: absolute;
  background-color: black;
  bottom: 200px;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  color: white;
  padding: 80px 40px;
  border-radius: 8px;
  border: 2px solid #212121;
  text-align: center;
  width: 90%;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.textual-module .description {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  line-height: 1;
  width: 90%;
  font-weight: 500;
  padding-bottom: 60px;
}
.textual-module .button {
  font-family: 'Manrope', sans-serif;
  display: inline-block;
  padding: 15px 20px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s;
  font-weight: 500;
}
.textual-module .button:hover {
  background-color: white;
  color: black;
}
@media (max-width: 1200px) {
  .textual-module .content {
    width: 95%;
    height: auto;
    padding: 40px 30px;
    bottom: 180px;
  }
  .textual-module .description {
    font-size: 28px;
    padding-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .textual-module {
    padding-bottom: 300px;
  }
  .textual-module .image-block {
    height: 600px;
  }
  .textual-module .content {
    width: 95%;
    height: auto;
    padding: 45px 20px;
    bottom: 200px;
  }
  .textual-module .description {
    font-size: 24px;
    padding-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .textual-module {
    padding-bottom: 300px;
  }
  .textual-module .content {
    width: 95%;
    height: auto;
    padding: 60px 15px;
    bottom: 200px;
  }
  .textual-module .description {
    font-size: 24px;
    line-height: 1;
    padding-bottom: 30px;
    width: 100%;
  }
  .textual-module .button {
    font-size: 16px;
    padding: 15px 25px;
  }
}
@media (max-width: 360px) {
  .textual-module .description {
    font-size: 20px;
    padding-bottom: 20px;
  }
}
/*# sourceMappingURL=./textual-module.css.map */