.main {
  text-align: center;
}

.container {
  background: url(assets/background.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 3% 0;
  background-position: center bottom;
  height: 500px;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.heading-container h3 {
  font-size: 30px;
}

.heading-container {
  color: #fff;
}

.heading-container p {
  font-size: 16px;
  margin-bottom: 30px;
}

a.button {
  background: #fff;
  color: #ed1c24;
  display: block;
  width: 20%;
  margin: 0 auto;
  border-radius: 50px;
  font-weight: 600;
  padding: 0 0 10px 0;
  font-size: 22px;
  text-decoration: none;
}

.button-container div a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: #ed1c24;
  border-radius: 10px;
  padding: 15px 25px;
}

.button-container div {
  display: flex;
  justify-content: center;
}

.image-container {
  display: flex;
  justify-content: space-between;
  margin-top: -300px;
}

.button-container div a strong {
  font-size: 24px;
}

.button-container div a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: #ed1c24;
  border-radius: 10px;
  padding: 10px;
  margin: 2%;
  text-decoration: none;
  font-size: 16px;
  width: 224px;
}

.button-container {
  margin-top: -250px;
}

.button-container div:last-child a {
  border-radius: 50px;
}

@media screen and (max-width: 1500px) {
  .image-container {
    display: flex;
    justify-content: space-between;
    margin-top: -200px;
    height: 300px;
  }

  .button-container {
    margin-top: -150px;
  }

  a.button {
    padding: 0 15px 15px 15px;
  }
}

@media screen and (max-width:1300px) {
  a.button {
    width: 30%;
  }
}

@media screen and (max-width: 1200px) {
  .image-container {
    margin-top: -160px;
    height: 250px;
  }

  .button-container div a strong {
    font-size: 20px;
  }

  .button-container div a {
    width: 210px;
  }
}

@media screen and (max-width:1200px) {
  .button-container {
    margin-top: -120px;
  }
}

@media screen and (max-width: 1024px) {
  .image-container {
    height: 200px;
  }

  .button-container {
    margin-top: -80px;
  }
}

@media screen and (max-width:768px) {
  a.button {
    width: 50%;
  }

  .image-container {
    margin-top: -135px;
    height: 150px;
  }

  .button-container {
    margin-top: 0;
  }
}

@media screen and (max-width:420px) {
  .image-container {
    display: none;
  }

  .button-container div {
    display: block;
  }

  .button-container div a {
    width: 50%;
    margin: 3% auto;
  }

  .logo-container img {
    width: 85%;
  }

  .heading-container p {
    font-size: 12px;
  }

  a.button {
    width: 80%;
  }
}