.about {
  min-height: 100vh;
  color: black;
  position: relative;
  overflow: hidden;
}
.about-bg-image {
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 60vw;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
  background: url('../assets/images/about.webp') right center/contain no-repeat;
}
.about .container, .about-text {
  position: relative;
  z-index: 2;
}
.about .container {
  margin-left: 10vw;
  margin-right: 30vw;
  height: 100vh;
}

.about-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.about-text h3 {
  font-size: 3rem;
  font-weight: 600;
  color: #2a6ef2;
}

.about-text p {
  font-size: 1.5rem;
  font-weight: 200;
}

.about-text .btn {
  margin-top: 50px;
  background-color: #08245b;
  margin-bottom: 50px;
}

.about-text .btn:hover {
  color: #2a6ef2;
}

@media (max-width: 900px) {
  .about {
    min-height: auto;
    height: auto;
    }
  .about .container {
    height: auto;
    margin-left: 5vw;
    margin-right: 20vw;
  }
  .about-bg-image {
    width: 100vw;
    min-width: 600px;
    right: -300px;
    opacity: 0.4;
  }
}

@media (max-width: 600px) {
  .about-text {
    font-size: 1rem;
  }
  .about-text p {
    font-size: 1rem;
  }
  .about-text h3 {
    font-size: 2rem;
  }
}