body {
  font-family: "Cairo", sans-serif;
  background-color: #222;
  position: relative;
}

/* style information section */
.information {

}

.information .info-section {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  border: 3px solid #73A534;
  border-radius: 50%;
  width: 15rem;
  height: 15rem;
  box-shadow: 0 5px 10px 5px rgb(0 0 0 / 20%);
  padding: 3rem;
}

.information .info-section img {
  width: 3rem;
}

.information .info-section h4 {
  font-size: 1.15rem;
  color: #73A534;
  line-height: 1;
}

.information .info-section h4 a {
  color: inherit;
  text-decoration: none;
}


/* style loader */
.loader {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999;
  background-color: #73A534;
}

.loader .img-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loader img {
  width: 22rem;
}

.loader img.logo-img {
  /* left: 50%;
  top: 20%;
  transform: translate(-50%, 0); */
  animation: driving 3s ease-in-out 0s forwards infinite;
}

.loader img.logo-text {
  /* top: 55%;
  left: 50%;
  transform: translate(-50%, 0) rotate(0); */
}

.loader.remove {
  animation: fadeOut 1s forwards;
}

/*
@media (min-width: 571px) and (max-width: 767px) {
  .loader img {
    width: 35%;
  }
  .loader img.logo-text {
    top: 75%;
  }
}

@media (min-width: 768px) {
  .loader img {
    width: 30%;
  }

  .loader img.logo-text {
    top: 60%;
  }
} */

@keyframes driving {
  0% {
    transform: rotate(0);
  } 
  25% {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(-20deg);
  }
  75% {
    transform: rotate(20deg)
  }
  100% {
    transform: rotate(0)
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}

/*
  style header
*/
header {
  padding: 1.35rem;
  background-color: #222;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.2);
  width: 100%;
  z-index: 9999;
  transition: all 0.3s;
  position: fixed;
  top: 0;
  left: 0;
}

header.sticky {
  padding: 0.75rem;
}

header .header-content {
  text-align: center;
}

header img {
  width: 13%;
}

header h2 {
  display: inline-block;
  font-weight: 500;
  font-size: 1.25rem;
  color: #eee;
  width: 50px;
}

/* 
  style hero section
*/
.hero {
  height: 100vh;
  margin-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(/images/driver.jpg);
  background-color: rgba(0, 0, 0, 0.8);
  background-blend-mode: color;
}

.main-content {
  position: relative;
}

.main-content .content-container {
  width: 22rem;
  height: 22rem;
  padding: 1rem;
  text-align: center;
  background-color: #141e08;
  border-radius: 50%;
  position: relative;
  margin: 0;
  color: #73a534;
  border: 5px solid #73a534;
  box-shadow: 0px 0px 10px 10px rgb(0 0 0 / 30%);
}

.info-item {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background-color: #73a534;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem;
  position: absolute;
  box-shadow: 0px 0px 10px 10px rgb(0 0 0 / 30%);
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.info-item:first-child {
  left: 100%;
  top: 0;
  transform: translateX(-50%) translateY(-100%);
}

.info-item:nth-child(4) {
  top: 0;
  left: 0;
  transform: translateX(-50%) translateY(-100%);
}

.info-item:nth-child(2) {
  left: 125%;
  top: 50%;
  transform: translateX(0) translateY(-50%);
}

.info-item:nth-child(3) {
  left: -25%;
  top: 50%;
  transform: translateX(-100%) translateY(-50%);
}

.info-item img {
  width: 100%;
}

.info-item a {
  width: 100%;
}

.info-item:hover {
  background-color: #223a04;
}

.info-item.active {
  background-color: #223a04;
  box-shadow: 0 0 10px 5px #141e08;

}

/*
 style content containers (inside hero section)
*/
.content-item {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  width: 100%;
  transition: opacity 0.75s;
}

.content-item.active {
  opacity: 1;
  visibility: visible;
}

/* car-wheel */
#car-wheel {
  width: 100%;
}

/* main logo */
.main-logo img {
  width: 80%;
}

/* 
  style services slider
*/
.services .bg-img {
  background-image: unset; /* will set by js */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 100%;
  filter: brightness(0.5) blur(4px);
  transition: all 0.5s;
}

.services h2 {
  color: #eee;
  text-align: center;
  font-size: 2.25rem;
  position: relative;
}

.swiper-slide {
  width: 150px;
}

.swiper-slide h6 {
  padding: 1.5rem 0;
  font-size: 1.25rem;
  text-align: center;
  font-weight: 500;
  color: #eee;
  margin-bottom: 0;
  background-image: linear-gradient(45deg, #73a534 0, #141e08 100%);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.swiper-slide img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  color: #73a534;
}

/* 
  style contact-us section   
*/
.form-item {
  border-bottom: 1px solid #eee;
}

.form-item:last-child {
  margin-bottom: 0;
}

.form-item label {
  display: block;
  color: #eee;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.form-item input,
.form-item textarea {
  width: 100%;
  min-height: 2.5rem;
  background-color: transparent;
  border-radius: 5px;
  border: none !important;
  outline: none !important;
  color: #ddd;
}

.form-item input:focus-visible,
.form-item input:focus,
.form-item textarea:focus,
.form-item textarea:focus-visible {
  border: none !important;
  outline: none !important;
}

.contact-us-section h2 {
  color: #eee;
  text-align: center;
  font-size: 2.25rem;
}

.contact-us-section form {
  padding: 0 4rem 0 1rem;
}

.contact-us-section form button {
  transition: color 0.3s, background-color 0.3s, border 0.3s;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1rem 3rem;
}

.contact-us-section form button:hover {
  border: 1px solid #eee;
  background-color: #222;
  color: #eee;
}

/* 
  style footer 
*/
footer {
  text-align: center;
  padding: 2.5rem 0 0 0;
  background-color: #000;
}

footer .footer-info {
  margin-bottom: 2rem;
}

footer h5 {
  font-weight: normal;
  font-size: 1.1rem;
  color: #eee;
}

footer h6 {
  font-weight: normal;
  font-size: 0.9rem;
  color: #eee;
}

footer .contact-numbers a {
  color: #73a534;
  transition: color 0.3s;
}

footer .contact-numbers a:hover {
  color: #72a534c0;
}

footer .social-links img {
  width: 7%;
}

footer .copyright-section {
  border-top: 1px solid #676767;
}

footer .copyright-section a {
  text-decoration: none;
  color: #73a534;
}

/*
  responsive fixes 
*/

@media (max-width: 767px) {
  html {
    font-size: 8px;
  }

  .contact-us-section form button {
    width: 100%;
    padding: 1.25rem 0;
  }
}

@media (max-width: 991px) {
  header img {
    width: 25%
  }
}