main {
  width: 100vw;
  height: auto;

  min-height: 500px;
}

.first-section {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;

  margin: 40px auto;
  margin-top: 126px;

  padding: 0 20px;

  gap: 30px;
  max-width: 800px;
}

.title-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: flex-end;
  gap: 10px;

  width: 100%;

  border-bottom: 2px solid #09529b;
  padding-bottom: 10px;

  color: #09529b;

  height: auto;
}

.title-wrapper img {
  width: 50px;
}

.title-wrapper h1 {
  font-size: 24px;
  font-weight: 700;
}

.main-image {
  width: 90%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.paragraph a {
  color: #e0091d;

  font-weight: 600;
}

.highlight {
  color: #e0091d;

  font-weight: 500;
}

.second-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;

  margin: 40px auto;

  padding: 0 20px;

  gap: 30px;
  max-width: 800px;
}

.buttons-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.a-item {
  width: 100%;

  padding: 40px 20px;
  border: none;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  font-weight: 600;

  background-color: #e0091d;
  color: #fff;

  border-radius: 5px;
}

.a-item:hover {
  background-color: #09529b;

  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .buttons-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
