* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Questrial", sans-serif;
  font-weight: lighter;
  background-color: #f7fdfe;
  margin-top: 100px;
}
h1 {
  text-align: center;
  font-size: 66px;
  color: #06090e;
  padding: 0 40px;
}
h2 {
  width: 100%;
  text-align: center;
  font-size: 35px;
  margin: 20px 0;
  align-self: center;
  color: #06090e;
  padding: 0 40px;
  font-weight: lighter;
}
h3 {
  font-size: 25px;
  text-align: center;
  align-self: center;
  color: #06090e;
  padding: 0 30px;
  font-weight: lighter;
  margin: 30px 0;
}
p {
  color: #06090e;
  font-size: 17px;
}
.benefitsAdminContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 100%;
  padding: 0 40px;
  color: #06090e;
  max-width: 1120px;
  margin: auto;
}
.benefitContainer {
  width: 300px;
  border-radius: 8px;
  margin: 12px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.benefitContainer:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
.benefit {
  width: 100%;
  min-height: 360px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
.benefitIconContainer {
  width: 65px;
  height: 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  /* border: solid 4px #06090e; */
  border-radius: 33px;
  /* background-color: white; */
  background-color: #51d3bd;
}
.benefitIconContainer2 {
  background-color: #39c3dd;
}
.benefitIcon {
  height: 60%;
}
.benefitDescriptionContainer {
  width: auto;
}
.buttonContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}
.buttonContainer a {
  width: 300px;
  margin-right: 0;
}
.button {
  width: 100%;
  height: 50px;
  background: linear-gradient(0.25turn, #57d2bd, #60cac1, #39c3dd);
  border-color: #51d3bd;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button span {
  color: #06090e;
  font-size: 25px;
  font-weight: bold;
}
.assetContainer {
  width: 100%;
  margin-top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefitsAsset {
  width: 400px;
}
.wrapper {
  max-width: 1200px;
  margin: auto;
}
@media (min-width: 1320px) {
  .assetContainer {
    width: 400px;
    margin-top: -350px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 55px;
  }
  h2 {
    font-size: 30px;
  }
  .buttonContainer {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .buttonContainer a {
    width: 250px;
    margin-right: 0;
  }

  .button {
    width: 100%;
    height: 45px;
  }
}
@media (max-width: 450px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 30px;
    padding: 0 20px;
  }
  .buttonContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .buttonContainer a {
    width: 200px;
    margin-right: 0;
  }
  .button {
    width: 100%;
    height: 35px;
    border-radius: 18px;
  }
  .button span {
    font-size: 18px;
  }
  .assetContainer {
    width: 100%;
  }
  .benefitsAsset {
    width: 300px;
  }
}
