html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  max-width: 1300px;
  margin: auto;
  padding: 0 15px 0 15px;
}

.heroBG {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 350px;
  background-image: url(./assets/hero_background_image.jpg);
}

.ibtk-logo {
  width: 30%;
}

.section {
  margin: 35px 0 35px 0;
  height: 100%;
}

#flex-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.wrapperSize {
  height: 184px;
}

.wrapperRight {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  align-items: center;
  justify-content: space-between;
}

.wrapperLeft {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  align-items: center;
}

.bodyTxt {
  font-family: 'Open Sans', sans-serif;
  color: #404042;
  font-size: 18px;
  line-height: 32px;
}

.btnLink {
  margin-top: 20px;
  width: 172px;
  height: 60px;
  border-radius: 5px;
  outline: none;
  background-color: #ff941f;
  border: none;
  color: white;
  font-family: 'Open Sans', Sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.btnLink:hover {
  box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.2);
}

.footer {
  background-color: #404042;
  padding: 15px 0 15px 0;
  margin: 25px 0 0 0;
}

.copyright {
  font-family: 'Open Sans', sans-serif;
  font-weight: 200;
  font-size: 14px;
  color: #ff941f;
}

/* --------------- MOBILE -------------- */

@media screen and (max-width: 500px) {
  .heroBG {
    min-height: 150px;
    max-height: 300px;
  }

  #flex-row {
    flex-direction: column;
  }

  .wrapperLeft {
  }

  .wrapperSize {
    height: auto;
  }

  .logo {
    max-width: 280px;
  }
}

/* ---------- TABLET ------- */

@media screen and (max-width: 1024px) {
  .heroBG {
    height: 20%;
  }

  .ibtk-logo {
    width: 50%;
  }

  .logo {
    max-width: 300px;
  }

  #flex-row {
    flex-wrap: wrap;
  }

  .wrapperLeft {
    max-width: 400px;
    margin: 35px 0;
  }

  .wrapperSize {
    width: auto;
  }

  .wrapperRight {
    max-width: 400px;
    margin: 35px 0;
  }

  .bodyTxt {
    text-align: center;
  }
}
