* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.container {
  min-height: 100vh;
  width: 100%;
}

.top-slider {
  padding: 150px 20px;
  text-align: center;
  background-color: #fdea1ec4;
  color: #000;
}

.top-slider h1 {
  font-size: 49px;
  font-weight: 800;
  margin-bottom: 15px;
}

.top-slider h1 sup {
  color: #f44336;
  padding: 15px;
  font-size: 18px;
  background-color: #fff;
  border-radius: 20px;
}

.top-slider p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 40px;
}

.top-slider a {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  padding: 30px 50px;
  color: #fff;
  border: 0;
  outline: 0;
  text-decoration: none;
  cursor: pointer;
  transition: .2s;
  background-color: #000;
  border-radius: 50px;
}

.top-slider a i {
  font-size: 18px;
  margin-right: 8px;
}

.top-slider a:hover {
  background-color: #fff;
  color: #000;
}

/* section-data */
.section-data {
  display: flex;
  width: 80%;
  max-width: 1200px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.child-section {
  flex-basis: 49.2%;
  margin-bottom: 20px;
  padding: 20px 20px 20px 15px;
  box-shadow: 1px 2px 10px #00000017;
}

.flexing-data {
  display: flex;
  align-items: flex-start;
}

.image-data {
  width: 90px;
  height: 90px;
  flex: none;
}

.image-data img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-content {
  margin-left: 15px;
}

.text-content h3 {
  margin: 10px 0 5px;
  font-weight: 800;
  letter-spacing: .2px;
  font-size: 18px;
}

.text-content h3 span {
  color: #f44336;
}

.text-content p {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 600;
  color: #000000cf;
}

.buttons {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.buttons a {
  font-size: 13px;
  flex-basis: 49%;
  flex-basis: 100%;
  font-weight: 600;
  display: flex;
  justify-content: center;
  padding: 20px;
  color: #fff;
  border: 0;
  border-radius: 10px;
  outline: 0;
  text-decoration: none;
  cursor: pointer;
  transition: .2s;
  background-color: #f44336;
}

.buttons a i {
  font-size: 18px;
  margin-right: 8px;
}

.buttons a:last-child {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}

.buttons a:hover {
  color: #000;
  border: 1px solid #eee;
  background-color: #fff;
}

@media only screen and (max-width:1200px) {
  .child-section {
    flex-basis: 100%;
  }

  .top-slider h1 {
    font-size: 39px;
  }

  .buttons {
    flex-direction: column;
  }

  .buttons a {
    width: 100%;
  }

  .buttons a:first-child {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width:920px) {

  .top-slider h1 {
    line-height: 1.9;
    font-size: 29px;
  }
}

@media only screen and (max-width:440px) {

  /* section-data */
  .section-data {
    width: 350px;
    flex: none;
  }
}