@font-face {
  font-family: "GT-America-Arabic";
  src: url("../assets/fonts/GT-America-Arabic-VF.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "GT-America-Arabic", sans-serif;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.5;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: var(--bs-white);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.root {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.root-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

@media (max-width: 991px) {
  html {
    font-size: 60%;
  }
}

@media (max-width: 768px) {
  html{
    overflow-x: hidden;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 55%;
  }
}

/* ------------------gutter override------------------ */
@media screen and (max-width: 991px) {
  .g-5 {
    --bs-gutter-x: 1.5rem;
  }
}

/* ----------------nav bar------------------ */
.nav-links li a{
  color: var(--bs-white);
  position: relative;
  padding-bottom: 5px;
}

.nav-links li a.active{
  font-weight: 500;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--bs-white);
  transition: 0.4s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after,
.nav-links li a.active:hover::after {
  width: 100%;
}

.btn-contact-us{
  border-radius: 0;
  padding: 1rem 2.4rem;
}

.logo-links{
  gap: 6rem;
}

/* ----------------------------sidebar----------------------- */
.offcanvas {
  background-color: var(--bs-white);
  width: 30rem;
  max-width: 90vw;
}

.offcanvas-body a {
  color: var(--bs-dark);
  padding: 1rem 0;
  display: block;
  text-align: center;
  border: 1px solid var(--bs-dark);
  border-radius: 0.8rem;
  transition: 0.3s;
  font-weight: 500;
}

.offcanvas-body a:hover {
  background-color: var(--bs-dark);
  color: var(--bs-light);
}

.btn-sidebar img{
  width: 4rem;
}

/* --------------------------footer-------------------------- */
.footer-discription{
  max-width: 42rem;
  line-height: 2;
}

.address{
  max-width: 27.7rem;
  line-height: 2;
}

/* --------------------hero section swiper-------------------- */
.hero-swiper img{
    height: 71.2rem;
    width: 100%;
    object-fit: cover;
}
