* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 1vw;
}

body {
  direction: rtl;
  font-family: Arial;
  font-size: 1rem;
  margin: 0;
}

@media screen and (max-width: 1023px) {
  body {
    font-size: 4.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .hide_on_desktop {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .hide_on_mobile {
    display: none;
  }
}

#header {
  width: 100%;
  margin-bottom: 3rem;
}

#header .logo {
  background-image: url("../images/header.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 1.4rem 0;
  text-align: center;
  position: relative;
}

#header .logo img {
  width: 12rem;
}

@media screen and (max-width: 1023px) {
  #header .logo img {
    width: 30%;
  }
}

#header .logo img.clubcar {
  width: 8rem;
  position: absolute;
  left: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 1023px) {
  #header .logo img.clubcar {
    width: 18%;
    left: 3rem;
  }
}

#header .menu-trigger {
  display: none;
  position: absolute;
  right: 4rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 1023px) {
  #header .menu-trigger {
    display: block;
  }
}

#header .menu-trigger .hamburger .line {
  width: 26px;
  height: 3px;
  background-color: #FFFFFF;
  border-radius: 0;
  display: block;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#header .menu-trigger .hamburger:hover {
  cursor: pointer;
}

#header .menu-trigger .hamburger.is-active .line:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}

#header .menu-trigger .hamburger.is-active .line:nth-child(2) {
  opacity: 0;
}

#header .menu-trigger .hamburger.is-active .line:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

#header .menu {
  background-color: #FFFFFF;
  border-bottom: 2px solid #f0f0f0;
}

@media screen and (max-width: 1023px) {
  #header .menu {
    display: none;
    position: absolute;
    width: 100%;
    z-index: 99;
  }
}

#header .menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1023px) {
  #header .menu ul {
    display: block;
  }
}

#header .menu ul li {
  padding: 0 1.8rem;
  font-size: 1.2rem;
}

@media screen and (max-width: 1023px) {
  #header .menu ul li {
    padding: 1.4rem 7rem;
    font-size: 5rem;
    background: #444444;
  }
  #header .menu ul li:not(:last-of-type) {
    border-bottom: 1px solid #666666;
  }
}

#header .menu ul li a {
  display: block;
  padding: 1rem 0;
  color: #191819;
  position: relative;
  text-decoration: none;
}

@media screen and (max-width: 1023px) {
  #header .menu ul li a {
    color: #FFFFFF;
  }
}

#header .menu ul li a:hover {
  color: #0c23a5;
}

@media screen and (max-width: 1023px) {
  #header .menu ul li a:hover {
    color: #FFFFFF;
  }
}

#header .menu ul li.current a:after {
  content: "";
  position: absolute;
  width: 100%;
  right: 0;
  bottom: -2px;
  border-bottom: 2px solid #555555;
}

@media screen and (max-width: 1023px) {
  #header .menu ul li.current a:after {
    display: none;
  }
}
/*# sourceMappingURL=site-components.css.map */