h1 {
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 36px;
}

h5 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

p {
  margin-bottom: 10px;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

li {
  margin-bottom: 15px;
}

.container {
  max-width: 1400px;
  padding: 100px 40px;
}

.rich-text-block {
  height: auto;
}

.div-block {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  font-family: Montserrat, sans-serif;
  display: flex;
  overflow: hidden;
}

.button {
  text-align: center;
  background-color: #2e1271;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 500;
}

.div-block-2 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image {
  aspect-ratio: 2.39;
  width: 20rem;
}

@media screen and (max-width: 767px) {
  .div-block-2 {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 30px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading {
    text-align: center;
  }

  .image {
    width: 15rem;
  }
}


