.main-container {
  height: 100vh;
  width: 100%;
  padding: 0 6%;
}

.content {
  margin-top: 90px;
  display: flex;
  align-items: center;
}

.content h1 {
  color: var(--blue-subtitle);
  font-size: 3.5rem;
  font-weight: 500;
}

.content strong {
  color: var(--blue-title);
  font-weight: bold;
  font-size: 4.2rem;
}

.content p {
  color: var(--text-color);
  font-size: 1.8rem;
  max-width: 80%;
  margin-top: 30px;
  line-height: 1.4;
}

.content button {
  margin-top: 36px;

  border: none;
  background: unset;
}

.content button a {
  padding: 5px 20px;
  background: var(--blue-300);
  border-radius: 30px;

  color: #fff;
  font-size: 1.6rem;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 235px;
  transition: 0.2s background;
}

.content button a:hover {
  filter: brightness(0.8);
}

.image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 1000px;
}

@media screen and (max-width: 992px) {
    
.content {
    margin-top: 20px !important;
}

  .content h1 {
    font-size: 2rem;
  }

  .content h1 strong {
    font-size: 3rem;
  }

  .content p {
    font-size: 1.5rem;
    max-width: initial;
  }

  .image-container {
    margin-top: 32px;
    justify-content: flex-start;
  }

  .image-container img {
    max-width: 80%;
  }
}

@media (min-width: 1200px) {
    .col-xl-5 {
        align-self: self-start;
        padding-top: 80px;
    }
}
