body {
  overflow-x: hidden;
}

* {
  font-family: "Noto Sans Arabic", sans-serif;
}

:root {
  --primary: #0840a2;
}

/* Global styles */

.container {
  width: 1600px;
  margin: auto;
}

.button {
  background-color: var(--primary);
  padding: 10px 25px;
  border-radius: 10px;
  color: white;
  border: 0;
  min-width: 100px;
}

.section__header{
  text-align: center;
  margin-bottom: 30px;
  font-weight: bolder;
  color: var(--primary);
}
section{
  overflow: hidden;
}
section .container{
  border-bottom: 1px solid rgba(0 0 0 / .2);
  padding: 45px 20px;
}
/* End Global styles */

/* Navbar styles */

header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

nav {
  box-shadow: 0px -5px 20px 0px rgba(0 0 0 / 0.25);
}

.nav__logo {
  width: 150px;
}

.nav__logo img {
  width: 100%;
}

.nav__lang {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0 0 0 / 0.3);
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  font-weight: bolder;
}

.nav__lang-list{
  width: 100px;
  /* box-shadow: 0px 2px 7px 0px rgba(0 0 0 / .3); */
  border: 1px solid rgba(0 0 0 / 0.3);
  border-radius: 5px;
  text-align: center;
  transform-origin: top left;
  transform: scale(0);
  transition: .3s;
}

.nav__lang-cont.active .nav__lang-list{
  transform: scale(1);
}

.nav__lang-item{
  padding: 10px;
  transition: .2s;
  cursor: pointer;
}
.nav__lang-item:hover{
  padding: 10px;
  color: white;
  background-color: var(--primary);
}

.nav__list .container{
  width: 100% !important;
}

.nav__list-item a {
  color: rgba(0 0 0 / 0.42);
  text-decoration: none;
}
.nav__list-item--active a {
  color: var(--primary);
}

.nav__bars{
  display: none;
}
/* End Navbar styles */

/* Hero section start */
.hero {
  background-image: linear-gradient(
      rgba(255 255 255 / 0.73),
      rgba(255 255 255 / 0.73)
    ),
    url("../images/empty-hallway-background.jpg");
  background-size: cover;
  min-height: 100vh;
  padding: calc(76px + 40px) 30px 50px;
  text-align: center;
  overflow-x: hidden;
}

.hero .container {
  gap: 200px;
}

.hero__logo {
  width: 300px;
}
.hero__logo img {
  width: 100%;
}

.her__text {
  font-size: 26px;
}

.hero__img {
  width: 50%;
  max-width: 450px;
  border: 1px solid black;
  border-radius: 10px;
  overflow: hidden;
}
.hero__img img {
  width: 100%;
}

.hero__img--float {
  position: absolute;
  top: -50%;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}

.hero__img--right {
  transform: translateX(10%);
}
.hero__img--left {
  transform: translateX(-10%);
}

/* Hero section end */
/* Features section start */



.feature__card{
  border: 1px solid rgba(0 0 0 / .3);
  border-radius: 15px;
  padding: 40px;
  height: 100%;
}

.features__img{
  color: var(--primary);
  width: 80px;
  height: 80px;
  margin: auto;
}
.features__img img{
  width: 100%;
  height: 100%;
  
}

.features__text{
  font-weight: bolder;
  font-size: 20px;
}

/* Features section end */

/* Clients section start */

.client__card-text{
  padding: 23px;
}

.client__card-img{
  max-height: 400px;
  overflow: hidden;
}

.client__card-img img{
  height: 100%;
  object-fit: cover;
}

/* Clients section end */

/* Register section start */

.register__label{
  white-space: nowrap;
  min-width: 100px;
  flex-shrink: 0;
  font-weight: bolder;
}

.register__input{
  padding: 10px;
  border: 1px solid rgba(0 0 0 / .3);
  border-radius: 5px;
  outline: 0;
  direction: rtl;
}

.register__input--textarea{
  height: 150px;
  resize: none;
}

.register__error{
  color: red;
  font-size: 12px;
}

/* Register section end */

/* Footer start */

.footer__bottom{
  background-color: var(--primary);
  color: white;
}

.footer__icon{
  width: 40px;
  height: 40px;
}
.footer__icon img{
  width: 100%;
  height: 100%;
}

.footer__logo{
  width: 150px;
}
.footer__logo img{
  width: 100%;
}

/* Footer end */


/* Loader start */
.content-loader{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: white;
  z-index: 2000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.lds-ring {
  display: inline-block;
  position: relative;
  margin: auto;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #000;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #000 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* Loader end */

@media (max-width: 992px) {
  .container {
    width: 720px;
  }
  .register__label{
    width: 150px;
  }
}
@media (max-width: 768px) {
  .container {
    width: 540px;
  }
  .nav__bars{
    display: block;
  }
  .nav__lang{
    display: none;
  }
  
  .nav__list{
    position: absolute;
    top: 100%;
    background-color: white;
    right: 0;
    left: 0;
    transition: .3s;
    height: 290px;
    overflow: hidden;
  }
  .nav__list.collapsed{
    height: 0px;
  }
  .nav__list .container{
    flex-direction: column;
    margin: 0;
    gap: 0 !important;
    width: 100% !important;
  }
  .nav__list-item{
    padding: 15px 20px;
  }
  .hero .container {
    gap: 50px;
  }
  .hero__img--float,
  .hero__img--right,
  .hero__img--left {
    transform: translate(0, 0);
  }
  .hero__img--float {
    position: static;
    width: 100%;
    order: -1;
    max-width: none;
  }
  .hero__imgs {
    flex-wrap: wrap;
    gap: 20px;
  }
  .hero__img--right,
  .hero__img--left {
    width: calc(50% - 10px);
  }
  .hero__logo {
    width: 200px;
  }
  .button {
    font-size: 12px;
  }
  .footer__top{
    font-size: 14px;
  }
  .footer__icon{
    width: 25px;
    height: 25px;
  }
  .footer__logo{
    width: 90px;
  }
}
@media (max-width: 576px) {
  .container {
    width: 100%;
  }
}
