/*
  dark-gray: rgb(62.62.62)
  medium-gray: rgb(124,124,124)
  light-gray: rgb(198,198,198)
  red1: rgb(231,52,63)
  red2: rgb(141,25,38)
  */
html, body {
  background: white;
  font-family: 'Tajawal', sans-serif;
  font-weight: normal; /* 400 */
  font-size: 1.1rem;
  color: rgb(124,124,124);
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
}

/* main flex layout */
body {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
}
body > header,
body > #content {
  flex: 0 0 auto;
}
body footer {
  flex: 1 0 auto;
}


header {
  text-align: center;
  display: flex;
  flex-direction: column;
}
h1 {
  flex: 0 1 auto;
  order: 2;
}
header .container {
  flex: 0 1 auto;
  order: 1;
  /*background: rgb(62,62,62);*/
  background: rgb(102,102,102);
  background: linear-gradient(90deg, rgba(90,90,90,1) 0%, rgba(0,0,0,1) 100%);
  color: white;
}

header nav {
  max-width: 980px;
  margin: auto;
  text-align: left;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
header nav ul {
  display: inline-block;
  margin: 0;
  padding: 0;
}
header nav ul li {
  display: inline-block;
  padding: .75rem 1rem .5rem 0rem;
}
header nav ul li a {

}
header nav a {
  color: white;
  text-decoration: none;
}
header .nav-img {
  height: 1.2rem;
  width: auto;
  vertical-align: middle;
}
header nav ul.main {
  flex: 0 1 auto;
}
header nav ul.phone {
  flex: 0 0 auto;  
}

footer {
  /* background: rgb(62,62,62); */
  background: rgb(102,102,102);
  background: linear-gradient(90deg, rgba(90,90,90,1) 0%, rgba(0,0,0,1) 100%);
  color: white;
  font-size: 1.0rem;
}
footer .container {
  max-width: 980px;
  margin: 1rem auto;
  display: flex;
  flex-direction: row;
}
footer .container div {
  margin-right: 1rem;
  flex: 0 0 auto;
}
footer .container div.text {
  flex: 1 0 auto;
}
footer a {
  color: white;
  text-decoration: none;
}
footer p {
  margin-top: 0;
}




#brands {
  max-width: 980px;
  margin: 2.5rem auto;
  display: flex;
  justify-content: space-around;
}
#brands > div {
  flex: 0 1 100%;
  text-align: center;
  font-weight: 500;
  font-size: 1.25rem;
  color: white;
  background: rgb(198,198,198);
  padding: 5px 5px 0;
  margin: 0 5px;
}
#brands > div:first-child {
  margin-left: 0;
}
#brands > div:last-child {
  margin-right: 0;
}
#brands p {
  margin: 1rem 0 .5rem;
}
#brands img {
  display: block;
  background: white;
  width: 100%;
  height: auto;
}

#hero {
  text-align: center;
  color: white;
  vertical-align: middle;
  height: 350px;
}
#hero div {
  /* background image for slide */
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}

#intro-text {
  max-width: 980px;
  margin: auto;
  text-align: center;
  font-size: 1.25rem;
  line-height: 2.0rem;
}



.button {
  display: inline-block;
  text-decoration: none;
  color: white;
  background: rgb(231,52,63);
  background: linear-gradient(99deg, rgba(231,52,63,1) 0%, rgba(141,25,38,1) 100%);
  font-size: 1.5rem;
  font-weight: 500; /* medium */
  padding: .75rem 1.25rem;
  padding-bottom: .35rem;
  border-radius: .5rem;
}

strong, b, h1, h2, h3, h4, h5, h6, h7, h8 {
  font-weight: 500; /* medium */
}