@charset "utf-8";
body {
  font-family: 'Saira', sans-serif;
  margin: 0;
}
.banner {
  background-image: url(banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #232323;
  color: white;
  text-align: center;
  position: relative;
  height: 500px;
}
.brands-section {
  position: relative;
  background-color: #E5E5E5;
  padding: 1rem 3rem 3rem 3rem;
}
.brands-section::before {
  position: absolute;
  top: -47px;
  right: 0;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 48px 100vw;
  border-color: transparent transparent #E5E5E5 transparent;
}
.box-container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
.button-icon {
  padding-top: 6px;
  float: right;
}
.box {
  flex: 1;
  padding: 20px 20px 5px 20px;
  margin: 0 20px;
  text-decoration: none;
  color: #232323;
  width: 100%;
  display: flex;
  flex-direction: column;
  /*justify-content: space-between;*/
}
.box h3 {
  font-weight: 400;
  margin-bottom: 0;
}
.box-link {
  text-decoration: none;
  color: #232323;
  display: inline-block;
  float: right;
  text-align: center;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  margin-top: 1rem;
  background-color: #FFD31C;
  border-radius: 0.375rem;
}
.banner-content {
  max-width: 800px;
  position: absolute;
  top: 25%;
  right: 115px;
}
.banner-content a.box-link {
    float: left;
}
.banner h1 {
font-size: 45px;
    margin-top: 0;
    margin-bottom: 10px;
    color: #FF8D00;
    text-align: left;
}
.banner p {
  margin-top: 0;
  font-size: 18px;
  text-align: left;
}
.section-heading {
  color: #232323;
  margin: 0;
  display: block;
  text-align: center;
}
.brand-logo {
  width: 100%;
  /*height: 170px;*/
}
@media only screen and (max-width: 1450px) {
  .banner-content {
    right: 50px;
  }
}
@media only screen and (max-width: 1175px) {
  .banner-content {
    right: 10px;
  }
}