@font-face {
  font-family: "Tajawal light";
  src: url("../fonts/Tajawal-Light.eot");
  src: url("../fonts/Tajawal-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Tajawal-Light.woff2") format("woff2"), url("../fonts/Tajawal-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tajawal medium";
  src: url("../fonts/Tajawal-Medium.eot");
  src: url("../fonts/Tajawal-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Tajawal-Medium.woff2") format("woff2"), url("../fonts/Tajawal-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Segoe";
  src: url("../fonts/segoesc.ttf");
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* N A V    B A R */
.bg-header {
  box-shadow: 0px 5px 10px 0px #aaa;
  background-image: radial-gradient(circle, #dec3c4, #e0cbcc, #e2d4d4, #e4dcdd, #e6e5e5);
  opacity: 0.9;
}

.navbar input[type=checkbox],
.navbar .hamburger-lines {
  display: none;
}

.navbar {
  position: fixed;
  width: 100%;
  color: #fff;
  z-index: 100;
  font-family: "Tajawal medium";
  transition: all 0.2s ease-in-out;
}
.navbar .container {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 64px;
  align-items: center;
}

.menu-items {
  order: 2;
  display: flex;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  padding: 5rem;
  position: relative;
  z-index: 1;
}

.logo {
  order: 1;
  width: 90px;
  padding: 0.25rem;
}

.menu-items li {
  list-style: none;
  margin-left: 1.5rem;
  font-size: 1.3rem;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.navbar a:hover {
  color: #000;
}

.arabic .menu-items {
  direction: rtl;
}

@media (max-width: 768px) {
  .navbar {
    opacity: 0.95;
  }
  .navbar-container input[type=checkbox],
  .navbar-container .hamburger-lines {
    display: block;
  }
  .navbar-container {
    display: block;
    position: relative;
    height: 64px;
  }
  .navbar-container input[type=checkbox] {
    position: absolute;
    display: block;
    height: 32px;
    width: 30px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }
  .navbar-container .hamburger-lines {
    display: block;
    height: 28px;
    width: 35px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .navbar-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #333;
  }
  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.3s ease-in-out;
  }
  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }
  .navbar-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.3s ease-in-out;
  }
  .navbar .menu-items {
    padding-top: 100px;
    background: #fff;
    height: 100vh;
    max-width: 300px;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 40px;
    transition: transform 0.5s ease-in-out;
    overflow: hidden;
  }
  .navbar .menu-items li {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    font-weight: 500;
  }
  .logo {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 2.5rem;
  }
  .navbar-container input[type=checkbox]:checked ~ .menu-items {
    transform: translateX(0);
  }
  .navbar-container input[type=checkbox]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
  }
  .navbar-container input[type=checkbox]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }
  .navbar-container input[type=checkbox]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
  }
}
.lang {
  margin-left: 4rem;
}
.lang a.active {
  pointer-events: none;
  color: #000;
}

@media screen and (max-width: 767px) {
  .logo {
    width: 70px;
  }
  .navbar .menu-items li a, .navbar .menu-items li {
    color: #4d4c4c;
  }
  .navbar .menu-items li a:hover {
    color: #000;
  }
  .arabic .navbar .menu-items {
    align-items: center;
  }
}
@media (max-width: 500px) {
  .navbar-container input[type=checkbox]:checked ~ .logo {
    display: none;
  }
}
@media screen and (min-width: 1500px) {
  .navbar .container {
    max-width: 1500px;
  }
}
html {
  scroll-behavior: smooth;
}

[data-reveal] {
  transform: translateY(50px);
  opacity: 0;
  transition: 0.7s all ease var(--delay);
}

[data-reveal=left] {
  transform: translate(-50px, 0);
}

[data-reveal=right] {
  transform: translate(50px, 0);
}

[data-reveal].revealed {
  transform: translate(0, 0);
  opacity: 1;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.6rem;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
  background-color: hsl(207, 4%, 75%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(207, 4%, 65%);
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(207, 4%, 55%);
}

body {
  background-color: #e6e5e5;
}

.menu-items {
  -moz-column-gap: 2rem !important;
       column-gap: 2rem !important;
}

.brand {
  position: relative;
  overflow: hidden;
}
.brand .layer {
  position: absolute;
}
.brand .layer:nth-child(1) {
  width: 300px;
  top: 40%;
  right: -10%;
}
.brand .layer:nth-child(2) {
  width: 250px;
  top: 50%;
  left: -10%;
}
.brand .layer:nth-child(3) {
  width: 300px;
  top: 80%;
  right: -10%;
}

.brand-logo {
  position: relative;
  display: flex;
  justify-content: center;
}
.brand-logo::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10%;
  background-image: linear-gradient(180deg, transparent, #e6e5e5);
}
.brand-logo img {
  width: 100%;
}

.brand-header {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  padding-top: 3rem;
  z-index: 2;
  overflow: hidden;
}
.brand-header img {
  width: 450px;
}

.brand_title {
  font-size: 2.3rem;
  font-family: "Segoe";
  font-weight: bold;
  color: #8f181f;
  white-space: nowrap;
}

.line-before {
  grid-column: 1/2;
}

.brand-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  margin-top: 7rem;
  margin-bottom: 10rem;
  font-family: "Tajawal medium";
}
.brand-products img {
  width: 220px;
  margin-bottom: 2rem;
}

.product {
  text-align: center;
  background-color: #f2f2f2;
  border-radius: 5px;
  margin-bottom: 2rem;
  padding: 1rem 0.5rem;
}

.download {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.download a {
  text-decoration: none;
  color: #fff;
  background-color: #2d4799;
  padding: 1rem;
  font-family: "Tajawal medium";
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

@media screen and (max-width: 1200px) {
  .brand-header img {
    width: 29vw;
  }
  .brand_title {
    font-size: 3.2vw;
  }
  .brand .layer:nth-child(1) {
    width: 24vw;
    top: 30%;
  }
  .brand .layer:nth-child(2) {
    width: 18vw;
  }
  .brand .layer:nth-child(3) {
    width: 20vw;
  }
}
@media screen and (max-width: 991px) {
  .brand .layer:nth-child(1) {
    width: 20vw;
    top: 30%;
  }
}
@media screen and (max-width: 767px) {
  .brand-products {
    grid-template-columns: 1fr;
  }
  .brand .layer:nth-child(1) {
    width: 40vw;
    right: -15%;
  }
  .brand .layer:nth-child(2) {
    width: 35vw;
    left: -15%;
  }
  .brand .layer:nth-child(3) {
    width: 25vw;
  }
  .brand-products {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 496px) {
  .brand .layer:nth-child(3) {
    top: 85%;
  }
  .brand .layer:nth-child(1) {
    width: 45vw;
  }
  .brand-products img {
    width: 40vw;
  }
  .brand .layer:nth-child(2) {
    width: 45vw;
    left: -23%;
  }
  .brand .layer:nth-child(3) {
    width: 40vw;
    right: -17%;
  }
  .brand-header img {
    width: 25vw;
  }
  .brand_title {
    font-size: 3.8vw;
  }
}
@media screen and (min-width: 769px) {
  nav {
    box-shadow: 0px 5px 10px 0px #aaa;
    background-image: radial-gradient(circle, #dec3c4, #e0cbcc, #e2d4d4, #e4dcdd, #e6e5e5);
    opacity: 0.9;
  }
}
@media screen and (min-width: 1500px) {
  .brand-header img {
    width: 35vw;
  }
  .brand_title {
    text-align: center;
  }
  .brand-products img {
    width: 320px;
  }
  .brand .layer:nth-child(1) {
    width: 20vw;
  }
  .brand .layer:nth-child(2) {
    width: 19vw;
  }
  .brand.rando .layer:nth-child(1) {
    width: 13vw;
    right: 0%;
  }
  .brand.rando .layer:nth-child(3) {
    width: 20vw;
  }
}/*# sourceMappingURL=brands.css.map */