.highlight {
  color: var(--bg-green);
}

.with-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: black;
  margin-top: 0.5rem;
  box-shadow: 0 4px 6px 1px rgba(0, 0, 0, 0.4);
}

.logo {
  max-width: 100%;
  height: auto;
}

.text-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  position: relative;
}

.textabsolute {
  top: 0;
  left: 0;
  position: absolute;
}

.responsive-text {
  margin-top: -25rem;
  padding-left: 15rem;
  font-size: 1.6rem;
  font-weight: 600;
  max-width: 700px;
  text-align: center;
}

.text-containerS {
  display: none;
}

@media screen and (max-width: 1399.98px) {

  .responsive-text {
    margin-top: -23rem;
    padding-left: 10rem;
  }
}

@media screen and (max-width: 1199.98px) {

  .responsive-text {
    margin-top: -18rem;
    padding-left: 3rem;
  }
}

@media screen and (max-width: 991.98px) {

  .textabsolute {
    top: 0;
    left: 0;
    position: absolute;
  }

  .responsive-text {
    margin-top: -14rem;
    padding-left: 0rem;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767.98px) {

  .logo {
    display: none;
  }

  .text-container {
    display: none;
  }

  .text-containerS {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    text-align: center;
  }

  .responsive-textS {
    font-size: 1rem;
    padding: 1.2rem;
    background-color: rgba(51, 51, 51, 0.10);
    color: #000;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(184, 184, 184, 0.2);
    backdrop-filter: blur(4px);
    max-width: 90%;
    text-align: center;
    font-weight: 600;
  }
}