@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css");

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  font-family: "Rubik", sans-serif;
}
:root {
  --form-fontFamily: "Rubik", sans-serif !important;
  --form-backgroundColor: rgba(0, 0, 0, 0.5) !important;
  --form-labelsColor: #ffffff !important;
  --form-inputColor: #1f1f1f !important;
  --form-mutedBg: #666666 !important;
  --form-highlightColor: #e6b605 !important;
  --form-btnColors: #ffffff !important;
}
main {
  min-height: 400px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}
li {
  list-style: none;
}
img {
  width: 100%;
  height: auto;
}
a:link {
  text-decoration: none;
  color: #1f1f1f;
}
a:hover {
  color: #e6b605;
}
header {
  position: sticky;
  background-color: white;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 8px 5%;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer {
  padding: 16px 5%;
  background-color: #1f1f1f;
}
div.logo {
  display: flex;
  align-items: center;
}
div.logo a {
  display: inline-block;
  width: 80px;
}
div.logo h1 span {
  font-weight: lighter;
}
.awd,
.awd a {
  color: white;
  text-align: center;
}
.awd a:hover {
  color: #e6b605;
}
div.menu {
  display: flex;
  gap: 16px;
  align-items: center;
}
div.menu a.sendMail {
  color: #1f1f1f;
  font-size: 18px;
  display: inline-block;
  padding-left: 12px;
}
div.menu a.sendMail::before {
  font-family: "Font Awesome 7 Free";
  content: "\f0e0";
  font-weight: 700;
  margin-right: 6px;
}
div.menu a.sendMail:hover {
  color: #e6b605;
}
div.menu a.toggleBtn {
  display: grid;
  align-items: center;
  width: 30px;
  height: 30px;
}
div.menu a.toggleBtn span {
  display: block;
  height: 4px;
  background-color: #e6b605;
  border-radius: 8px;
}
div.menu a.toggleBtn .line1,
div.menu a.toggleBtn .line3 {
  transition: all 0.2s ease-in-out;
}
div.menu a.toggleBtn .line2 {
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
div.menu a.toggleBtn.close .line1 {
  transform: translateY(10px) rotate(45deg);
}
div.menu a.toggleBtn.close .line3 {
  transform: translateY(-10px) rotate(-45deg);
}
div.menu a.toggleBtn.close .line2 {
  opacity: 0;
  transform: translateX(100%);
}
nav.mainMenu {
  position: fixed;
  top: 100px;
  right: 5%;
  z-index: 1;
  background-color: #fff;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid #e6b605;
  border-radius: 0 0 8px 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 200ms ease-in-out;
}
nav.mainMenu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
nav.mainMenu li a {
  display: block;
  color: #1f1f1f;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 12px 12px 20px;
  text-align: right;
  transform: translateX(0);
  transition: all 300ms ease-in-out;
}
nav.mainMenu li a:hover {
  transform: translateX(-8px);
  color: #e6b605;
}
main .content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}
div.hero {
  background-color: #f5f5f5;
  background: url(../images/rent-a-car-with-driver-in-cairo-limousine.jpg)
    center center/cover no-repeat;
  min-height: 600px;
  overflow: hidden;
  display: grid;
  grid-template-areas: "stack";
}
div.hero .text {
  color: white;
  margin: 80px 5%;
  grid-area: stack;
}
div.hero .text h2 {
  font-size: 48px;
  margin-bottom: 16px;
}
div.hero .text p {
  font-size: 20px;
  margin-bottom: 12px;
}
.yellow {
  color: #e6b605;
}
div.hero .overlay {
  background-color: rgba(31, 31, 31, 0.5);
  grid-area: stack;
}
div.hero #bookingengine {
  margin-bottom: 80px;
  grid-area: stack;
  align-self: end;
}
div.hero .sc-form-heading {
  display: none;
}
.pageTitle {
  background-color: #1f1f1f;
  color: white;
  text-align: center;
  padding: 48px 5%;
  font-size: 32px;
}
ul.fleet {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 48px;
}
li.car {
  border-radius: 12px;
  box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-areas:
    "photo"
    "name"
    "details";
}
li.car img {
  border-radius: 12px 12px 0 0;
  grid-area: photo;
}
li.car h4 {
  grid-area: photo;
  background-color: #e6b605;
  color: #1f1f1f;
  padding: 8px;
  margin: 8px;
  align-self: start;
  justify-self: start;
  font-weight: 400;
}
li.car h4 span {
  color: white;
  font-weight: 600;
  font-size: 20px;
}
li.car h3 {
  grid-area: name;
  color: #cca204;
  font-size: 24px;
  padding: 16px;
}
li.car ul.specs {
  border-top: 1px solid #ddd;
  grid-area: details;
  padding: 16px;
  display: flex;
  justify-content: space-between;
}
li.car ul.specs li span {
  color: #cca204;
  font-size: 18px;
  font-weight: 600;
}
li.car ul.specs li.num1::before {
  font-family: "Font Awesome 7 Free";
  content: "\f0c0";
  color: #cca204;
  font-size: 18px;
  font-weight: 700;
  margin-right: 6px;
}
li.car ul.specs li.num2::before {
  font-family: "Font Awesome 7 Free";
  content: "\f5c1";
  color: #cca204;
  font-size: 18px;
  font-weight: 700;
  margin-right: 6px;
}
/* div.contactInfoWall.be_clearfix,
div.contactInfoWall,
div.be_clearfix {
  display: none !important;
} */
@media screen and (max-width: 768px) {
  div.logo h1 {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  div.logo h1 {
    display: none;
  }
  div.hero .text h2 {
    font-size: 28px;
  }
}
