/* Colors */
/* white: #fff;
greenLight: #70A1AA
green: rgb(18,170,92)
orange: rgb(241,101,30)
red: rgb(237,48,49)
blue: #2B4671 */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
html {
  box-sizing: border-box;
  font-size: 50%;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  background: linear-gradient(to bottom, #70a1aa, #2b4671);
}

.container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 3rem;
  min-height: calc(100vh - 9rem);
  display: flex;
  flex-direction: column;
}

/* Typography */

.h1 {
  font-size: 3.4rem;
  font-weight: bold;
}
.text {
  font-size: 2.1rem;
  font-weight: 400;
}

/* Button */

.btn {
  padding: 0.8rem 0;
  display: flex;
  justify-content: center;
  border: solid 0.08rem #fff;
  border-radius: 3rem;
  width: 23rem;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 2.1rem;
  text-decoration: none;
  color: #fff;
  margin: 2rem 0 1rem;
}

.btn--green {
  background-color: rgb(18, 170, 92);
}
.btn--orange {
  background-color: rgb(241, 101, 30);
}
.btn--red {
  background-color: rgb(237, 48, 49);
}

/* Action */

.actions {
  display: flex;
  justify-content: space-between;
}

.action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.action__img {
  height: 8rem;
}

/* Logos */

.logo {
  height: 10rem;
}

.company-logo {
  height: 5rem;
}

.td-logo {
  height: 4rem;
  position: absolute;
  right: 0;
}

/* Header */

header {
  display: flex;
  justify-content: center;
  padding: 2rem 0rem;
  background-color: rgb(237, 48, 49);
}

.details {
  text-align: center;
  margin: 4rem 0;
}

/* Footer */

footer {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.footer-logos {
  margin-top: 3rem;
  width: 100%;
  /* height: 4rem; */
}

/* Util */
.show-xs {
  display: none;
}

@media (max-width: 767px) {
  html {
    font-size: 43.75%;
  }
  .container {
    padding: 2rem;
    width: 100%;
    min-height: calc(100vh - 8rem);
    align-items: initial;
  }
  .h1 {
    font-size: 2.8rem;
  }
  .text {
    font-size: 1.8rem;
  }
  .details {
    margin: 0 0 2rem;
  }
  .actions {
    flex-direction: column;
  }
  .action {
    margin-bottom: 1rem;
  }
  /* footer {
    padding-bottom: 100px;
  } */
  .footer-logos {
    margin-top: 1rem;
    position: relative;
    display: flex;
    justify-content: center;
  }
  .company-logo {
    height: 4rem;
    position: initial;
    transform: initial;
  }
  .td-logo {
    height: 2.5rem;
    position: initial;
    transform: initial;
  }

  .action__img {
    display: none;
  }
  .hidden-xs {
    display: none;
  }
  .show-xs {
    display: block;
  }
}
