html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

h1, h2, h3, h4, h5, h6, p, a, input, textarea, label {
  font-family: 'Roboto', sans-serif;
}

a {
  color: black;
  text-decoration: none;
}

button {
  background-color: white;
  border: 1.5px solid #BE1500;
  padding: 10px 67px 10px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  position: relative;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s;
}

button:after {
  content: '';
  position: absolute;
  background-color: #E5A199;
  height: calc(100% + 0.4px); /* Fixes bug that show a pixel of white line */
  width: 41px;
  top: -0.3px; /* Fixes bug that show a pixel of white line */
  right: -0.3px;
  overflow: hidden;
  transition: all 0.3s;
  z-index: -1;
}

button:hover::after {
  width: 100.3%;
  background-color: #BE1500;
}

button::before {
  content: '➝';
  position: absolute;
  color: white;
  font-size: 22px;
  z-index: 20;
  right: 7px;
  top: 3px;
}

button:hover {
  color: #F2F2F2;
}

input, textarea {
  display: inline-block;
  width: calc(100% - 15px);
  margin-bottom: 20px;
  border: none;
  border-bottom: 1px solid black;
  height: 40px;
  border-radius: 0;
}

input:focus, button:focus, textarea:focus {
  outline: none;
}

textarea {
  height: 150px;
  margin-top: 15px;
  resize: none;
}

label {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #BE1500;
}

label img {
  margin-right: 5px;
}

p a {
  color: #BE1500;
}

.error-input {
  border-bottom: 1px solid #BE1500;
}

.nav {
  width: 100%;
  height: 45px;
  padding-top: 10px;
}

.nav img {
  margin: 10px auto 10px 20px;
  height: 25px;
}

.nav-burger {
  position: fixed;
  right: 0;
  top: 10px;
  margin: 10px 20px 10px auto;
  height: 25px; width: 35px;
  cursor: pointer;
  z-index: 30;
}

.nav-burger-line {
  position: absolute;
  right: 0;
  margin: auto;
  background-color: black;
  border-radius: 20px;
  height: 2.5px; width: 100%;
}

.nav-burger-line:nth-child(2) {
  top: 0;
  bottom: 0;
  width: 50%;
}

.nav-burger-line:nth-child(3) {
  bottom: 2px;
  width: 75%;
}

.nav-menu {
  background-color: #232323;
  right: 0;
  height: 100%;
  top: 0;
  width: 0;
  position: fixed;
  z-index: 20;
  min-height: 250px;
}

.nav-menu-links {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-menu a:hover  {
  color: white;
  opacity: 1.0;
}

.nav-menu a {
  display: blocK;
  overflow: hidden;
  white-space: nowrap;
  font-size: 20px;
  transition: all 0.1s;
  color: #F2F2F2;
  opacity: 0.9;
  margin: 20px auto;
  width: 100%;
}

.footer {
  margin: 20px 40px;
  padding-bottom: 30px;
  border-top: 1px solid #433E3D;
}

.footer p {
  float: left;
}

.footer-links {
  margin-top: 15px;
  float: right;
  font-size: 14px;
}

.landing {
  position: relative;
  min-height: calc(100% - 75px);
}

.landing-welcome {
  position: absolute;
  width: 600px;
  top: calc((100% - 55px)/2);
  -webkit-transform: translateY(-50%);
}

.landing-welcome p {
  font-size: 18px;
}

.padding-inner {
  margin: 40px 100px;
}

.info-gray {
  background-color: #F2F2F2;
}

.center {
  width: 100%;
  text-align: center;
  display: table;
  margin: 0 auto
}

.info-list, .split-landing {
  display: inline-block;
  width: 100%;
  max-width: 1500px;
  text-align: left;
}

.info-list-title, .info-list-parent {
  margin: auto 40px;
}

.link {
  text-decoration: none;
  color: #BE1500;
  position: relative;
  transition: all 0.1s;
}

.link::before {
  content: '─';
  margin-right: 10px;
  transition: all 0.1s;
}

.link:hover {
  opacity: 0.6;
}

.link:hover::before {
  padding-right: 5px;
}

.info-list-title {
  float:left;
  width: 350px;
}

.info-gray h1, .info-white h1 {
  font-size: 48px;
}

.info-white {
  margin-top: 25px;
}

.info-gray h1, .info-white h1, .info-gray h3, .info-white h3, .info-gray p, .info-white p   {
    color: #433E3D;
}

.info-list-parent {
  float: right;
  display: inline-block;
  max-width: 640px;
}

.info-list-child {
  float: left;
  width: 250px;
  margin: 10px;
  padding: 25px;
  transition: all 0.3s;
  cursor: pointer;
}

.info-list-child:hover {
  background-color: white;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}

.info-list-child h3 {
  font-size: 22px;
  margin: 0 auto;
}

.tsb h1 {
  font-size: 52px;
  margin-bottom: 0;
}

.tsb p {
  margin-top: 10px;
  margin-bottom: 50px;
}

.split-landing-left {
  width: calc(40% - 42px);
  float: left;
  display: inline-block;
  padding-right: 20px;
}

.split-landing-right {
  width: 60%;
  float: right;
  border-left: solid #E5E5E5 1px;
  padding-left: 20px;
}

.split-landing-right button {
    margin-top: 40px;
}

.go-back::before {
  content: '🡠';
  margin-right: 10px;
}

.input-parent {
  position: relative;
  float: left;
  width: 100%;
  text-align: center;
}

.input-parent h3 {
  font-size: 26px;
  margin-bottom: 0;
}

/* Tablets */
@media only screen and (max-width: 1370px) {
  .info-list-parent {
    float: none;
  }
  .info-list {
    max-width: 720px;
  }
  .landing-welcome {
    width: 450px;
  }
  .tsb h1 {
    font-size: 38px;
  }
  .tsb p {
    font-size: 16px;
  }
  button {
    font-size: 18px;
  }
  .info-list-title {
    width: 275px;
  }
  .info-list-title h1 {
    font-size: 42px;
  }
  .info-list-child {
    margin: 10px 0px;
  }
  .split-landing-left {
    width: 100%;
    float: none;
  }
  .split-landing-right {
    width: 100%;
    float: none;
    border-left: none;
    padding-left: 0;
}

/* Phones */
@media only screen and (max-width: 936px) {
  .info-list {
    max-width: 300px;
  }
  .info-list-title {
    margin: auto 0;
  }
  .info-list-parent {
    margin: auto 0;
  }
  .landing-welcome {
    width: auto;
    margin-right: 25px;
  }
  .padding-inner {
    margin: 20px;
  }
  .tsb h1{
    font-size: 30px;
  }
  .tsb p {
    font-size: 14px;
  }
  button {
    font-size: 12px;
  }
  .footer {
    margin: 20px;
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 536px) {
  .info-list-title {
    max-width: 220px;
  }
  .info-list-title h1 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 350px) {
  .info-list-title {
    max-width: 220px;
  }
  .info-list-title h1 {
    font-size: 32px;
  }
  .info-list-child {
    width: 175px;
  }
  .info-list-child h3 {
    font-size: 18px;
  }
  .info-list-child p {
    font-size: 14px;
  }
}
