.section {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #000;
}

.contain {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 50px;
  padding-left: 50px;
}

.div-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.div-block-2 {
  width: 40%;
  height: 500px;
  background-image: url('../images/NOSSAGINGA_7x7_LOGOS_CORES_1-03.png');
  background-position: 50% 0%;
  background-size: contain;
  background-repeat: no-repeat;
}

.div-block-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 60%;
  margin-top: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.div-block-4 {
  height: 400px;
  background-image: url('../images/Screen-Shot-2022-04-19-at-2.25.11-PM.png');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.div-block-5 {
  height: 100px;
  padding-top: 20px;
  text-align: center;
}

.button {
  width: 300px;
  height: 50px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 0px;
  padding-bottom: 0px;
  border-radius: 12px;
  background-color: #fff;
  color: #3a3a3a;
  font-size: 16px;
  line-height: 50px;
}

@media screen and (max-width: 991px) {
  .div-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .div-block-2 {
    width: 100%;
    height: 350px;
  }

  .div-block-3 {
    width: 100%;
    margin-top: 0px;
  }

  .div-block-5 {
    padding-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

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

  .div-block-2 {
    height: 240px;
  }

  .div-block-4 {
    height: 300px;
  }
}

@media screen and (max-width: 479px) {
  .div-block-4 {
    height: 200px;
  }

  .button {
    width: 100%;
  }
}

