/* Header */
header {
  margin: 18px;
}

header h1 {
  margin: 50px 0 50px 0;
}

header .p-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

header img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* Header End */
/* Section one start */
section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 40px;
}

.container {
  margin: 18px 18px 0 18px;
  background-color: var(--light-grey);
  border-radius: 8px;
  padding: 15px 0 10px 16px;
  width: 100%;
}

.container li {
  margin: 15px;
  width: 280px;
}

@media only screen and (min-width: 320px) {
  .container {
    max-width: 300px;
  }
  .container li {
    margin: 15px;
    width: 250px;
  }
  header img {
    width: 310px;
    height: 230px;
  }
}

@media only screen and (min-width: 375px) {
  .container {
    max-width: 335px;
  }
  header img {
    width: 339px;
    height: 260px;
  }
}

@media only screen and (min-width: 425px) {
  .container {
    max-width: 360px;
  }
  .container li {
    margin: 15px;
    width: 280px;
  }
  header img {
    width: 385px;
    height: 280px;
  }
}



/* Section two start */

.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 18px;
  margin-bottom: 140px;
  gap: 20px;
}

h3 {
  width: 275px;
  text-align: center;
  font-weight: 400;
}

.button {
  width: 200px;
  height: 60px;
  background-color: var(--brand-color-teal);
  border: none;
  border-radius: 0px 28px 12px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;

}

.button a {
  font-size: 20px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

.ins-btn {
  position: relative;
}

.ins-btn img {
  display: flex;
  position: absolute;
  right: 40px;
  bottom: -10px;
}

/* Section two end */
