* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  font-family: helvetica;
}

#header {
  width: 100%;
  background-color: #333;

  overflow: auto;
}
/* Wraps whole navigation and logo */
#header-wrapper {
  width: 80%;
  margin: 0 auto;
}
/* Styling Logo */
.logo {
  float: left;
  width: 250px;
  line-height: 70px;
  color: #fbce24;
  letter-spacing: 2px;
}
.logo-pt2 {
  text-transform: uppercase;
  font-size: 15px;
  color: #777777;
}
.logo-link {
  color: #fff;
}
/* Styling Navigation */
nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  height: 70px;
}
nav ul {
  float: right;
}
nav ul li {
  display: inline-block;
  line-height: 70px;
  margin: 0 5px;
}
nav ul li a {
  color: #fff;
  font-size: 15px;
  margin: 0 10px;
}
nav ul li a:hover {
  color: #ffd32a;
  transition: 0.5s;
}

/* Styling Nav Icon behaviour */
.checkbtn {
  color: #fff;
  font-size: 30px;
  float: right;
  line-height: 70px;
  cursor: pointer;
  display: none;
}
#check {
  display: none;
}

/* Styling Contact box in the header */
.nav-contact {
  color: #fff;
  height: 50px;
  border: 1px solid #ffd32a;
  border-radius: 10px;
  width: 180px;
  margin: 10px 20px;
  text-align: center;
}
.nav-contact div {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: ;
}
.nav-email {
  color: #ffd32a;
}
/*** Styling Slider and its content  ***/
#slider {
  background-image: url("images/truck.jpg");
  background-position: top; /* Center the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  min-height: 750px;
  width: 100%;
}
.slider-content,
.slider-message {
  width: 80%;
  margin: 0 auto;
}
.slider-message {
  float: left;
  font-size: 30px;
  color: #fff;
  position: relative;
  top: 150px;
  line-height: 50px;
}
.slider-message button {
  background-color: #ffd32a;
  color: #000;
  padding: 20px 40px;
  width: 150px;
  font-size: 14px;
  font-weight: bold;
  margin-top: 150px;
  margin-right: 50px;
  border: 0;
}
.slider-message button:hover {
  background-color: #fff;
  transition: 0.8s;
  color: #333;
}
/***  Styling Content of the Website / Pages ***/
#body {
  min-height: 100%;
  width: 100%;
  margin: 0 auto;
}

#content {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  min-height: 100%;
  background-color: #ffffff;
}
/***  Styling Home Page elements ***/
.image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.s-image {
  vertical-align: middle;
}
.s-image img {
  width: 80px !important;
  height: 80px !important;
  float: left;
}

.s-title {
  vertical-align: middle;
  text-align: center;
}
.s-title h3 {
  text-align: left;
  margin-left: 20px;
}
/****************************************************
-------------------------- Styling Footer Section -----------------------------------------
****************************************************/
#footer {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  bottom: 0;
  height: 178px;
}
.footer-wrap {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 30px;
  box-sizing: border-box;
  background-color: #fbce24;
}
.footer-wrap ul li {
  padding: 5px 0;
  font-size: 15px;
}
.footer-wrap ul li a:hover {
  color: #000;
}
.footer-copyright {
  width: 80%;
  margin: 0 auto;
  padding: 2px;
  background-color: #333333;
  text-align: center;
  color: #fff;
  font-size: 12px;
}
/* Styling very large screens */
@media (min-width: 1361px) {
  /*** Styling Slider and its content  ***/
  #slider {
    background-image: url("images/truck.jpg");
    background-position: top; /* Center the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    min-height: 950px;
    width: 100%;
  }
}

/*** Styling website for smaller screen sizes  ***/
@media (max-width: 952px) {
  .logo {
    width: 200px;
    font-size: 13px;
  }
  nav ul li a {
    font-size: 13px;
    margin: 0 8px;
  }
  .nav-contact {
    width: 150px;
    margin: 10px 30px 0px;
  }
  .nav-contact p {
    font-size: 12px;
  }
}
@media (max-width: 890px) {
  .checkbtn {
    display: block;
  }
  nav {
    flex-direction: row-reverse;
    justify-content: flex-start;
  }
  nav ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 70px;
    left: -100%;
    text-align: center;
    background-color: #444;
    transition: all 0.5s;
    z-index: 4;
  }
  nav ul li,
  nav ul li a {
    display: block;
  }
  nav ul li:hover {
    background-color: #333;
    transition: 0.5s;
  }

  #check:checked ~ ul {
    left: 0;
  }
}
@media (max-width: 450px) {
  .logo {
    font-size: 9px;
    letter-spacing: normal;
  }
  .logo-pt2 {
    font-size: 9px;
  }
  .about-image {
    width: 100%;
  }
  .nav-contact {
    width: 150px;
    margin: 10px 10px 0px;
  }
  .slider-message button {
    padding: 5px 20px;
    width: 100px;
    font-size: 14px;
    margin-top: 80px;
    margin-right: 10px;
    border: 0;
  }
}
