@import url("https://fonts.googleapis.com/css2?family=Tajawal&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "bootstrap-icons";
  src: url("/assets/fonts/bootstrap-icons.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
:root {
  --main-color: rgb(106, 41, 41);
  --main-hover: rgb(118, 60, 60);
  --text-color: #111111;
  --link-color: var(--main-color);
  --main-font: "Tajawal", sans-serif;
  --background-first: #f0f0f0;
  --background-second: #ffffff;
  --main-radius: 0.396rem;
}

body {
  font-family: var(--main-font);
  color: var(--text-color);
  font-weight: 400;
  background-color: var(--background-second);
}
body img {
  pointer-events: none;
}

::-moz-selection {
  background-color: var(--main-color);
  color: white;
}

::selection {
  background-color: var(--main-color);
  color: white;
}

.navbar {
  background-color: var(--background-second);
  min-height: 6rem;
  position: fixed;
  width: 100%;
  z-index: 999999;
  font-weight: 600;
}
.navbar .navbar-brand img {
  width: 60px;
  max-height: 60px;
  display: block;
}
.navbar a {
  --nav-links-color: var(--text-color);
  color: var(--nav-links-color);
}
.navbar a:hover {
  color: var(--main-color);
}
.navbar-brand {
  color: var(--main-color) !important;
  font-weight: 600;
  font-size: 1.5rem;
}
.navbar .container {
  max-width: 1200px;
}
.navbar .menu,
.navbar .drop-menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.navbar .menu-item {
  display: inline-block;
  position: relative;
}
.navbar .menu-item a {
  text-decoration: none;
  display: block;
}
.navbar .drop-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  border-radius: var(--main-radius);
  min-width: 100px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.navbar .drop-menu-item {
  width: 100%;
  padding: 0.5rem 1rem;
  min-width: -moz-max-content;
  min-width: max-content;
}
.navbar .drop-menu-item a:hover {
  color: #000;
}
.navbar .drop-menu-item a {
  color: #555;
}
.navbar .menu-item:hover .drop-menu {
  display: block;
}

.clearspace {
  height: 6rem;
}

.carousel-overly {
  position: absolute;
  background-color: black;
  opacity: 0.7;
  width: 100%;
  z-index: 999;
  height: 100%;
}

button:not(:disabled), [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), .carousel-indicators {
  z-index: 9999;
}

.carousel-inner {
  position: relative;
}

.hero-text {
  position: absolute;
  z-index: 99999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
.hero-text h2 {
  font-weight: 600;
}

.our-skills {
  padding: 2rem 1rem;
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
}
.our-skills .skill-item {
  text-align: center;
  width: 50%;
  margin-bottom: 2rem;
}
.our-skills .skill-item .skill-icon {
  margin-bottom: 1rem;
}
.our-skills .skill-item .skill-icon i {
  color: var(--main-color);
  font-size: 2em;
}
.our-skills .skill-item .skill-info h2 {
  font-weight: 600;
  font-size: 3em;
}
.our-skills .skill-item .skill-info p {
  margin-top: 1rem;
  max-width: 100%;
}
.our-skills .skill-item .skill-info .learnmore {
  padding: 1rem 0;
}
.our-skills .skill-item .skill-info .learnmore a {
  color: white;
  border-radius: var(--main-radius);
  background: var(--main-color);
  border: 2px solid var(--main-color);
  transition: 0.4s;
  padding: 0.7rem 3rem;
  min-width: 200px;
}
.our-skills .skill-item .skill-info .learnmore a:hover {
  color: var(--main-color);
  background: transparent;
}

.about-us {
  margin-top: 3rem;
  padding: 1rem 2rem;
  text-align: center;
}
.about-us-title {
  margin-bottom: 1rem;
}
.about-us-title h2 {
  font-weight: 600;
}
.about-us-content {
  width: 50%;
  margin: auto;
}
.about-us-more a {
  color: var(--main-color);
  border-radius: var(--main-radius);
  background: transparent;
  border: 1px solid var(--main-color);
  transition: 0.4s;
  padding: 0.5rem 2rem;
}
.about-us-more a:hover {
  color: white;
  background: var(--main-color);
}

.holder-image {
  padding: 2rem 0;
  text-align: center;
  margin-bottom: 3rem;
}
.holder-image img {
  width: 55%;
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
}

.our-work {
  margin-top: 2rem;
}
.our-work-title {
  text-align: center;
  margin-bottom: 1rem;
}
.our-work-title h2 {
  font-weight: 600;
}
.our-work-content {
  text-align: center;
  width: 50%;
  margin: auto;
  margin-bottom: 1rem;
}
.our-work .work-card {
  display: flex;
  width: 80%;
  margin: auto;
}
.our-work .work-card .work-image {
  width: 47%;
  padding: 1rem;
}
.our-work .work-card .work-image img {
  width: 100%;
  border-radius: var(--main-radius);
  height: 300px;
}
.our-work .work-card .work-details {
  width: 53%;
  margin-top: 4rem;
  background: white;
  padding: 2.5rem 2.5rem 2rem;
  border-radius: var(--main-radius);
  margin-right: -4rem;
  box-shadow: 0 5px 50px rgba(97, 93, 93, 0.2);
}
.our-work .work-card .work-details h2 {
  font-weight: 600;
  font-size: 1.4rem;
}
.our-work .work-card .work-details .show-works {
  padding-top: 1rem;
}
.our-work .work-card .work-details .show-works a {
  color: var(--main-color);
  border-radius: var(--main-radius);
  background: transparent;
  border: 1px solid var(--main-color);
  transition: 0.4s;
  padding: 0.5rem 2rem;
}
.our-work .work-card .work-details .show-works a:hover {
  color: white;
  background: var(--main-color);
}

.contact-us-global {
  background-color: var(--main-color);
  color: white;
  margin-top: 6rem;
}
.contact-us-global .contact-us {
  display: flex;
  padding: 10rem;
}
.contact-us-global .contact-us .contact-side {
  width: 60%;
  padding-left: 6rem;
}
.contact-us-global .contact-us .contact-side .contact-title {
  color: white;
  margin-bottom: 2rem;
}
.contact-us-global .contact-us .contact-side .contact-title h2 {
  font-weight: 600;
}
.contact-us-global .contact-us .contact-side form input,
.contact-us-global .contact-us .contact-side form textarea {
  margin-bottom: 2rem;
  background: transparent;
  border: 1px solid gray;
  color: white;
}
.contact-us-global .contact-us .contact-side form ::-moz-placeholder {
  color: #f0f0f0 !important;
}
.contact-us-global .contact-us .contact-side form ::placeholder {
  color: #f0f0f0 !important;
}
.contact-us-global .contact-us .contact-side form .send-message-btn button {
  background: white;
  color: var(--main-color);
  padding: 0.7rem 2.5rem;
}
.contact-us-global .contact-us .contact-side .social-media-container {
  margin-top: 2rem;
}
.contact-us-global .contact-us .contact-side .social-media-container ul {
  display: flex;
  list-style: none;
  align-items: center;
}
.contact-us-global .contact-us .contact-side .social-media-container ul li {
  margin-left: 1rem;
}
.contact-us-global .contact-us .contact-side .social-media-container ul li a {
  text-decoration: none;
  width: 50px;
  height: 50px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-direction: column;
  font-size: 1.7em;
  color: var(--main-color);
}
.contact-us-global .contact-us .logo-side {
  width: 40%;
}
.contact-us-global .contact-us .logo-side img {
  width: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 600px;
  box-shadow: 0 2px 14px 7px rgba(0, 0, 0, 0.2392156863);
}

.title-hero {
  background: var(--main-color);
  color: white;
  height: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
}
.title-hero h2 {
  font-weight: 600;
}

.products {
  width: 75%;
}
.products-title {
  text-align: center;
  margin-bottom: 1rem;
}
.products-title h2 {
  font-weight: 600;
  font-size: 24px;
}
.products .product {
  border: 1px solid rgb(227, 227, 227);
  border-radius: var(--main-radius);
}
.products .product-image img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--main-radius) var(--main-radius) 0 0;
}
.products .product-image-view img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--main-radius);
}
.products .product-content {
  padding-right: 1rem;
  margin-top: 1rem;
}
.products .product-content p {
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 0;
  margin: 0.5rem 0;
}
.products .product-content #info1,
.products .product-content #info2 {
  display: block;
}
.products .product-content #info2 {
  margin-bottom: 1rem;
}
.products .product-content #info1 {
  font-weight: 600;
  color: var(--main-color);
  font-size: 23px;
  margin-bottom: 1rem;
}
.products .product-content .show-more {
  margin-bottom: 1rem;
}
.products .product-content .show-more a {
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: white;
}
.products .product-content .show-more a:hover {
  background: transparent;
  color: var(--main-color);
}

footer {
  text-align: center;
  color: var(--main-color);
  padding: 2rem 0;
}
footer p {
  margin-bottom: 0;
  font-weight: 600;
}

.dark {
  --text-color: #f0f0f0;
  --background-first: #0d1117;
  --background-second: #161b22;
}
.dark .navbar {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28240, 240, 240, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

@media screen and (max-width: 991px) {
  .carousel img {
    height: 200px !important;
  }
  .our-skills {
    display: block;
  }
  .contact-us-global .contact-us {
    display: block;
  }
  .our-work .work-card {
    display: block;
  }
  .contact-us-global .contact-us .logo-side img {
    width: 100%;
  }
  .our-work-content {
    width: 100%;
  }
  .our-work .work-card .work-details {
    width: 100%;
    margin-right: 0;
    margin-top: 1rem;
  }
  .holder-image img {
    height: 250px;
    width: 90%;
  }
  .contact-us-global .contact-us .logo-side {
    width: 100%;
  }
  .our-skills .skill-item {
    width: 100%;
  }
  .contact-us-global .contact-us .contact-side {
    padding-left: 0;
  }
  .contact-us-global .contact-us {
    padding: 1rem;
  }
  .our-work .work-card .work-image {
    width: 100%;
  }
  .our-work .work-card .work-image img {
    height: -moz-fit-content;
    height: fit-content;
  }
  .contact-us-global .contact-us .contact-side {
    width: 100%;
  }
  .navbar-toggler {
    border: 0;
  }
}/*# sourceMappingURL=style.css.map */
