* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  text-align: center;
  background: #fff;
}

.navbar {
  position: fixed;
  width: 100%;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.home-nav { background: rgba(0,0,0,0.4); }
.tyre-nav { background: rgba(200,0,0,0.7); }
.glass-nav { background: rgba(255,200,0,0.7); }

.navbar ul {
  list-style: none;
  display: none;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
  padding: 10px;
}

.hamburger {
  font-size: 24px;
  cursor: pointer;
  color: white;
}

.logo {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.section {
  padding: 120px 20px;
}

.tyre-bg { background: url("Tyre_Deal_Company_profile_01_page7_img1.png") center/cover; color: white; }
.glass-bg { background: url("GP_Glasspoint_Profile_page6_img1.png") center/cover; color: white; }

.grey { background: #eee; }
.black { background: #000; color: white; }

.btn {
  padding: 15px 30px;
  margin: 10px;
  display: inline-block;
  color: white;
  text-decoration: none;
}

.red { background: red; }
.yellow { background: goldenrod; }

.btn:hover, .icons a:hover {
  transform: scale(1.1);
}

.icons a {
  font-size: 30px;
  margin: 10px;
}

.slide {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}

.slide.show {
  opacity: 1;
  transform: translateY(0);
}
