.container-fluid .row div h2 {
  color: var(--Dark-Grey, #454546);
  text-align: center;
  font-family: Montserrat;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 6.5rem;
  margin-bottom: 0;
}
.form-button {
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  padding: 2.33rem 0 1.1rem 1.85rem;
  margin: 2.5rem 0 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
  background-color: white;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.form-button:hover {
  background: var(--Pale-Blue, #8FA8B4);
  box-shadow: 16px 20px 40px rgba(0, 0, 0, 0.08);
}
.link-tag .form-button:hover p{
  color: #FFFFFF;
}

.form-button img {
  width: 56px;
  height: 62px;
  margin-left: 8px;
  margin-bottom: 10px;
  background-image: url('/static/web/images/forms/frame-pale-green.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.5rem;
}

.form-button:hover img {
  background-image: url('/static/web/images/forms/frame-white.png');
}

.form-button.active {
  background-color: #d1dce6;
  color: #000;
}

.main-section a {
  text-decoration: none;
}

.link-tag a {
  text-decoration: none;
  display: flex;
  align-items: center;
  text-align: left;
  color: #8FA8B4;
  margin-top: 1.4rem;
}
.link-tag .form-button p {
  font-family: Montserrat;
  font-size: 21.3px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  text-align: left;
  color: #8FA8B4;
  margin-top: 1.4rem;
}

.main-section {
  margin-bottom: 4.75rem;
}

@media screen and (max-width: 1400px) and (min-width: 576px) {
  .form-button {
    min-height: 16rem;
  }
}
.form-container {
  padding: 0 5rem 0 4rem;
}