.welcome-spacer {
  width: 100%;
  background: linear-gradient(to right, #101010 75%, #2e6faa 25%, #2e6faa 100%);
}
.welcome-spacer-wrapper {
  width: 100%;
  height: min-content;
  display: flex;
  align-items: center;
  min-height: 100vh;
  justify-content: center;
}
.welcome-content {
  gap: 2rem;
  width: 95%;
  padding: 2rem;
  display: flex;
  margin: 0 auto;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
.welcome-content-top .welcome-title {
  text-align: start;
  font-family: "Anton", sans-serif;
  font-size: xxx-large;
  color: #588dbb;
}
.welcome-left {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.welcome-left button {
  transition: 0.3s;
  font-size: larger;
  color: #ffff;
}
.welcome-left button:hover {
  outline: 2px solid #ffff;
  color: #ffff;
  background-color: #101010;
}
.welcome-left button {
  border: none;
  margin-top: 2rem;
  width: max-content;
  padding: 1rem 2rem;
  background-color: #2e6faa;
}
.welcome-content-bottom .welcome-p {
  color: white;
  text-align: left;
  font-size: x-large;
}
.welcome-right {
  width: 50%;
}
.welcome-right img {
  width: 100%;
  height: max-content;
  min-height: min-content;
  object-fit: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1000px) {
  .welcome-content {
    gap: 3rem;
    width: 100%;
    padding: 0;
    align-items: center;
    flex-direction: column;
    z-index: 999;
  }
  .welcome-left {
    width: 85%;
    margin-top: 5rem;
  }
  .welcome-right {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 720px) {
  .welcome-spacer-wrapper {
    padding: 2rem 0;
  }
  .welcome-spacer-wrapper.faqs-p {
    padding: 0;
  }
  .welcome-spacer {
    background: linear-gradient(120deg, #101010 60%, #2e6faa 40%, #2e6faa 100%);
  }
  .welcome-title {
    text-align: center !important;
  }
  .welcome-content-bottom {
    margin-top: 2rem;
  }
}
.welcome-right img {
  height: min-content;
}
