* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  transition: 0.2s;
}

*:focus {
  outline: none;
}

.content {
  background-color: #505050;
  font-size: 20px;
}

.colour {
  color: #FE3218;
}

.backgroundColour {
  background-color: #F1F2ED;
}

.section {
  min-height: 500px;
  background-color: #F1F2ED;
  padding-left: 5vw;
  padding-right: 5vw;
  overflow-y: hidden;
}

.fullWidthAlwaysCentred {
  width: 100%;
  text-align: center;
}

.midHeader {
  font-size: 2em;
}

.largeHeader {
  font-size: 2.5em;
}

.smallHeader {
  font-size: 1.5em;
}

.button {
  display: inline-block;
  background-color: #FE3218;
  /* Blue background */
  color: white;
  /* White text */
  padding: 15px 40px;
  /* Top & Bottom, Left & Right padding */
  text-align: center;
  text-decoration: none;
  /* Remove underline */
  font-size: 1.5em;
  /* Font size */
  border: none;
  /* No border */
  border-radius: 50px;
  /* Rounded corners */
  cursor: pointer;
  /* Mouse pointer on hover */
  transition: background-color 0.3s;
  /* Smooth background color change on hover */
  margin: 5px;
  border-bottom: 5px solid #D0191C;
}

.smallButton {
  display: inline-block;
  background-color: #FE3218;
  /* Blue background */
  color: white;
  /* White text */
  padding: 7px 20px;
  /* Top & Bottom, Left & Right padding */
  text-align: center;
  text-decoration: none;
  /* Remove underline */
  font-size: 1em;
  /* Font size */
  border: none;
  /* No border */
  border-radius: 50px;
  /* Rounded corners */
  cursor: pointer;
  /* Mouse pointer on hover */
  transition: background-color 0.3s;
  /* Smooth background color change on hover */
  margin: 5px;
  border-bottom: 5px solid #D0191C;
}

.mobileOnly {
  display: none;
}

.button:hover,
.smallButton:hover,
.buttonBackground:hover {
  background-color: #D0191C;
  /* Darker blue background on hover */
}

.button:focus,
.smallButton:focus {
  outline: none;
  /* Remove outline */
}

.input-hidden {
  opacity: 0;
}

/*NAVIGATION*/
.navBar {
  display: flex;
  align-items: center;
  color: black;
  position: -webkit-sticky;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0;
  z-index: 100;
  background-color: white;
}

.navSpace {
  display: block;
  width: 100%;
  height: 70px;
}

.navBarLinks {
  position: absolute;
  right: 0%;
}

.brandTitleContainer {
  margin-top: 15px;
  margin-left: 5vw;
  margin-bottom: 15px;
}

.brandTitle {
  float: left;
  font-size: 30px;
}

.navBarLinks {
  padding: 0;
}

.navBarLinks ul {
  margin: 0px;
  padding: 0;
  display: flex;
}

.navBarLinks li {
  list-style: none;
}

.navBarLinks li a {
  text-decoration: none;
  color: grey;
  display: block;
  font-size: 20px;
  transition: 0.2s;
  padding: 20px;
}

.navBarLinks li a:hover {
  color: #D23D22;
}

.toggleButton {
  position: absolute;
  font-size: 30px;
  top: 0px;
  right: 0px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  text-decoration: none;
  color: grey;
  transition: 0.3s;
  margin-right: 15px;
  margin-top: 15px;
}

.toggleButton.clicked {
  color: black;
}

.underNavSpace {
  height: 70px;
  width: 100%;
}

/*FIFTY WIDTH STUFF*/
.fiftyFiftyContainer {
  width: 100%;
}

.fiftyWidth {
  width: 50%;
  display: inline-block;
  text-align: center;
}

.fiftyLeft {
  float: left;
}

.fiftyRight {
}

/*HERO SECTION*/
.heroSectionTextContainer {
  height: 60vh;
  min-height: 400px;
  position: relative;
}

.heroSectionText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  width: 100%;
}

.heroImage {
  height: 60vh;
  min-height: 400px;
}

/*SERVICES*/
#servicesContainer {
  text-align: justify;
  -ms-text-justify: distribute-all-lines;
  text-justify: distribute-all-lines;
}

.box1,
.box2,
.box3,
.box4 {
  width: 23%;
  text-align: center;
  vertical-align: top;
  display: inline-block;
  *display: inline;
  zoom: 1;
}

.stretch {
  width: 100%;
  display: inline-block;
  font-size: 0;
  line-height: 0;
}

.servicesIcon {
  height: 6em;
  border-radius: 50%;
  border: 5px solid white;
  border-bottom: 5px solid #D0191C;
}

.serviceHeader {
  font-size: 40px;
}

.smallServicesIcon {
  height: 45px;
  border-radius: 50%;
  border: 2px solid white;
  border-bottom: 2px solid #D0191C;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  /* number of lines to show */
  line-clamp: 5;
  -webkit-box-orient: vertical;
}

/* ABOUT US */
.industryLogos {
  width: 100%;
  text-align: center;
}

.industryLogo {
  margin: 10px;
}

/* FAQs */
.accordion {
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  font-size: 1.2em;
  color: black;
}

.active,
.accordion:hover {
  color: #FE3218;
}

.panel {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  padding-bottom: 20px;
  background-color: #F1F2ED;
  color: black;
}

/*SECTIONS*/
.innerSection {
  width: 100%;
  background-color: #F1F2ED;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 5px 10px 8px rgba(0, 0, 0, 0.5);
}

.topBorderRadius {
  border-top-left-radius: 15px;
  /* Top left corner */
  border-top-right-radius: 15px;
  /* Top right corner */
}

.bottomBorderRadius {
  border-bottom-left-radius: 15px;
  /* Top left corner */
  border-bottom-right-radius: 15px;
  /* Top right corner */
}

.darkSection {
  color: #F1F2ED;
}

.footer {
  background-color: black;
  text-align: center;
  color: white;
  padding: 20px;
}

.fullHeight {
  min-height: 100vh;
}

.notOnSmallMobile {
  display: block;
}

.smallMobileOnly {
  display: none;
}

@media screen and (max-width: 1175px) {
  .box1,
  .box2,
  .box3,
  .box4 {
    width: 45%;
    margin-bottom: 30px;
  }
  
  .navBar {
    height: 60px;
    background-color: white;
  }
  
  .brandTitle {
    float: left;
    font-size: 30px;
  }
  
  .brandTitleContainer {
    margin-left: 0;
  }
  
  .navBarLinks {
    position: relative;
    background-color: white;
  }
  
  .toggleButton {
    display: flex;
  }
  
  .navBarLinks {
    display: none;
    width: 100%;
  }
  
  .navBar {
    flex-direction: column;
  }
  
  .navBarLinks ul {
    margin-right: 0;
    width: 100%;
    flex-direction: column;
  }
  
  .navBarLinks li {
    text-align: center;
  }
  
  .navBarLinks.active {
    display: flex;
  }
  
  /*FIFTY WIDTH STUFF*/
  .fiftyFiftyContainer {
    width: 100%;
  }
  
  .fiftyWidth {
    width: 100%;
  }
  
  .fiftyLeft {
  }
  
  .fiftyRight {
    display: none;
  }
  
  /*HERO SECTION*/
  .heroSectionTextContainer {
    height: 60vh;
  }
  
  .heroSectionText {
    text-align: center;
  }
  
  .industryLogos {
    display: none;
  }
  
  .mobileOnly {
    display: inline-block;
  }
  
  .notOnSmallMobile {
    display: block;
  }
  
  .smallMobileOnly {
    display: none;
  }
}

@media screen and (max-width: 650px) {
  .notOnSmallMobile {
    display: none;
  }
  
  .smallMobileOnly {
    display: block;
  }
  
  .fiftyFiftyContainer {
    min-height: 100vh;
  }
  
  .box1,
  .box2,
  .box3,
  .box4 {
    width: 100%;
    margin-bottom: 40px;
  }
  
  .navSpace {
    height: 60px;
  }
  
  .brandTitle {
    float: left;
    height: 20px;
    font-size: 25px;
  }
  
  .brandTitleContainer {
    margin-top: 15px;
    margin-left: 0vw;
    margin-bottom: 15px;
  }
}
