@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Cairo:wght@200..1000&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Cairo:wght@200..1000&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #eee;
  font-family: cairo;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.section-title {
  font-size: 30px;
  color: #28397A;
  text-align: center;
  width: fit-content;
  margin: auto;
  position: relative;
}
.section-title::before {
  position: absolute;
  content: "";
  width: 70px;
  height: 2px;
  background-color: #28397A;
  right: -80px;
  top: 50%;
}
.section-title::after {
  position: absolute;
  content: "";
  width: 70px;
  height: 2px;
  background-color: #28397A;
  left: -80px;
  top: 50%;
}

.sectiob-desc {
  text-align: center;
  font-size: 18px;
  width: 60%;
  margin: auto;
  margin-bottom: 25px;
}

.footer {
  background-image: url("../../assets/images/footer.png");
  background-color: #28397A;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 50px;
  background-color: rgb(42, 42, 42);
}
.footer .contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  background-color: white;
  border-top: 3px solid #E67E22;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 50px;
  border-radius: 0 0 40px 40px;
}
.footer .contact .inner-contact {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footer .contact .inner-contact a {
  color: #a6a5a5;
}
.footer .contact .inner-contact a i {
  font-size: 40px;
  color: #E67E22;
}
.footer .contact div:nth-child(2) {
  border-left: 1px solid #a6a5a5;
  border-right: 1px solid #a6a5a5;
}
.footer .inner-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.footer .inner-footer .footer-box .logo {
  width: 150px;
  height: 100px;
}
.footer .inner-footer .footer-box h3 {
  color: white;
}
.footer .inner-footer .footer-box p {
  font-size: 14px;
  width: 80%;
  color: white;
  margin-top: 15px;
}
.footer .inner-footer .footer-box a {
  color: white;
}
.footer .inner-footer .footer-box li {
  margin-bottom: 10px;
  border-bottom: 1px dashed rgba(238, 238, 238, 0.337254902);
  width: 70%;
}
.footer .inner-footer .footer-box form {
  display: flex;
  flex-direction: column;
}
.footer .inner-footer .footer-box form input {
  height: 30px;
  border: none;
  outline: none;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 10px;
  font-family: cairo;
}
.footer .inner-footer .footer-box .icons {
  margin-top: 15px;
  display: flex;
  gap: 20px;
}
.footer .inner-footer .footer-box .icons i {
  font-size: 30px;
  transition: 0.3s;
}
.footer .inner-footer .footer-box .icons i:hover {
  scale: 1.1;
  color: #E67E22;
}

header {
  background-color: white;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 576px) {
  header nav {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  header nav {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  header nav {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  header nav {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  header nav {
    max-width: 1320px;
  }
}
header nav ul {
  list-style: none;
  display: none;
  gap: 20px;
}
@media (min-width: 768px) {
  header nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }
}
header nav ul li a {
  font-size: 25px;
  text-decoration: none;
  font-weight: 700;
  color: #A67C52;
}
header nav ul li a:hover {
  color: #28397A;
}
header .icons {
  display: none;
  gap: 15px;
}
@media (min-width: 768px) {
  header .icons {
    display: flex;
  }
}
header .icons a {
  font-size: 25px;
  color: #28397A;
}
header .icons a:hover {
  color: #E67E22;
}
header .mobil-nav-icon {
  display: flex;
  cursor: pointer;
}
@media (min-width: 768px) {
  header .mobil-nav-icon {
    display: none;
  }
}

.btn-danger, .btn-braimary {
  color: white;
  padding: 5px 20px;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-braimary {
  background-color: #28397A;
}
.btn-braimary:hover {
  background-color: rgb(27.4074074074, 39.0555555556, 83.5925925926);
}

.btn-danger {
  background-color: #E67E22;
}
.btn-danger:hover {
  background-color: rgb(191.3536585366, 101.3048780488, 21.6463414634);
}

aside {
  width: 250px;
  background-color: white;
  height: calc(100vh - 80px);
  margin-top: 5px;
  border-top-left-radius: 10px;
  position: fixed;
  right: -250px;
  transition: 0.3s;
  z-index: 2000;
}
aside .mobile-menu {
  padding: 20px;
}
aside .mobile-menu .logo {
  width: 140px;
}
aside .mobile-menu ul {
  list-style: none;
}
aside .mobile-menu ul li {
  padding: 10px;
  border-bottom: 1px solid #eaeaea;
}
aside .mobile-menu ul li:hover {
  background-color: #28397A;
  cursor: pointer;
  border-radius: 5px;
}
aside .mobile-menu ul li:hover a {
  color: white;
}
aside .mobile-menu .icons {
  margin-top: 20px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}
aside .mobile-menu .icons i {
  font-size: 25px;
  color: #28397A;
  cursor: pointer;
  transition: 0.3s;
}
aside .mobile-menu .icons i:hover {
  color: #E67E22;
  scale: 1.2;
}
aside .mobile-menu form {
  margin-top: 20px;
  width: 100%;
}
aside .mobile-menu form input {
  width: 100%;
  height: 30px;
  border: 1px solid #eaeaea;
  padding-right: 10px;
  border-radius: 5px;
}
aside .mobile-menu form input:focus {
  outline: none;
  border: 1px solid #eaeaea;
  background-color: #eaeaea;
}
aside .mobile-menu .cta {
  margin-top: 20px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  gap: 20px;
}

.products {
  margin-top: 20px;
  margin-bottom: 50px;
}
.products .all-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  transition: 0.3s;
}
.products .all-products .product {
  background-color: white;
  border-radius: 5px;
  padding-bottom: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.products .all-products .product .new-add {
  width: 55px;
  height: 55px;
  padding: 0;
  font-size: 13px;
  font-weight: 700;
  position: absolute;
  z-index: 2;
  top: 10px;
  transform: rotate(-15deg);
  left: 10px;
  color: #fff;
  background: url("../../assets/images/new-add.svg") no-repeat center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.products .all-products .product:hover {
  box-shadow: 2px 2px 2px rgb(150, 150, 150);
}
.products .all-products .product .offer {
  position: absolute;
  background-color: #E67E22;
  padding: 0 15px;
  color: white;
  z-index: 1500;
  left: -35px;
  transform: rotate(-45deg);
  top: 20px;
  width: 150px;
  text-align: center;
}
.products .all-products .product .image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.products .all-products .product .image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.3s;
  cursor: pointer;
}
.products .all-products .product .image img:hover {
  transform: scale(1.05);
}
.products .all-products .product .info-product {
  padding: 10px;
}
.products .all-products .product .info-product .category {
  background-color: #28397A;
  display: flex;
  width: fit-content;
  color: white;
  padding: 0 15px;
  border-radius: 2px;
}
.products .all-products .product .info-product h3 {
  font-size: 18px;
  color: #28397A;
}
.products .all-products .product .info-product .location {
  font-size: 13px;
  position: relative;
  margin-right: 15px;
  margin-bottom: 10px;
}
.products .all-products .product .info-product .location::before {
  position: absolute;
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  color: #28397A;
}
.products .all-products .product .info-product hr {
  margin: 5px 0;
  height: 0.5px;
  background-color: #ccc;
  border: none;
  width: 80%;
}
.products .all-products .product .info-product .props {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
}
.products .all-products .product .info-product .props li {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #787878;
}
.products .all-products .product .info-product .send {
  width: 100%;
}

.hero .hero-info form .seach-area .search-item2-container .search-item2 input, .hero .hero-info form .seach-area .search-item2-container .search-item2 select, .hero .hero-info form .seach-area .search-item1 input, .hero .hero-info form .seach-area .search-item1 select {
  width: 100%;
  padding: 15px;
  padding-right: 25px;
  font-family: cairo;
  border-radius: 5px;
  border: 1px solid #ccc;
  transition: 0.3s;
}
.hero .hero-info form .seach-area .search-item2-container .search-item2 input:focus, .hero .hero-info form .seach-area .search-item2-container .search-item2 select:focus, .hero .hero-info form .seach-area .search-item1 input:focus, .hero .hero-info form .seach-area .search-item1 select:focus {
  outline: none;
  border: 1px solid #E67E22;
}

.hero {
  position: relative;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url("../../assets/images/hero.webp");
  background-color: #28397A;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 768px) {
  .hero {
    height: 600px;
  }
}
.hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.hero .hero-info {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  position: relative;
  z-index: 1000;
}
.hero .hero-info h1 {
  font-size: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .hero .hero-info h1 {
    font-size: 45px;
  }
}
@media (min-width: 992px) {
  .hero .hero-info h1 {
    font-size: 55px;
  }
}
.hero .hero-info p {
  text-align: center;
  font-size: 20px;
}
@media (min-width: 768px) {
  .hero .hero-info p {
    font-size: 25px;
  }
}
@media (min-width: 992px) {
  .hero .hero-info p {
    font-size: 30px;
  }
}
.hero .hero-info .hero-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.hero .hero-info form {
  width: 100%;
}
.hero .hero-info form .seach-area {
  margin-top: 20px;
  background-color: white;
  padding: 15px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero .hero-info form .seach-area .search-item1 {
  position: relative;
  width: 100%;
}
.hero .hero-info form .seach-area .search-item1 i {
  position: absolute;
  top: 40%;
  right: 5px;
  color: #28397A;
}
.hero .hero-info form .seach-area .search-item2-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero .hero-info form .seach-area .search-item2-container .search-item2 {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .hero .hero-info form .seach-area .search-item2-container .search-item2 {
    width: 30%;
  }
}
.hero .hero-info form .seach-area .search-item2-container .search-item2 i {
  position: absolute;
  color: #28397A;
  top: 35%;
  right: 5px;
}

.about {
  position: relative;
  padding: 50px 0;
}
.about.about::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  content: "";
  background-image: url("../../assets/images/about3.avif");
  background-position: center;
  background-size: cover;
  opacity: 0.6;
  z-index: -1;
}
@media (min-width: 768px) {
  .about .inner-about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .about .right-section {
    width: 50%;
  }
}
.about .right-section ul {
  list-style: none;
  margin-top: 20px;
  margin-bottom: 20px;
}
.about .right-section ul li {
  position: relative;
  margin-bottom: 10px;
  border-bottom: 1px dotted #ccc;
  width: fit-content;
  padding-bottom: 5px;
  font-size: 13px;
  margin-right: 25px;
}
@media (min-width: 768px) {
  .about .right-section ul li {
    font-size: 16px;
  }
}
.about .right-section ul li::before {
  position: absolute;
  content: "\f058";
  color: #28397A;
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  width: 16px;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
}
.about .right-section h2 {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .about .right-section p {
    width: 85%;
  }
}
.about .left-section {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .about .left-section {
    width: 50%;
  }
}
.about .left-section img {
  height: 600px;
  width: 100%;
}

.testimonials {
  background-color: white;
  padding-top: 50px;
  padding-bottom: 50px;
}
.testimonials .all-testimonial {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.testimonials .all-testimonial .box {
  background-color: #eee;
  padding: 10px;
  padding-top: 60px;
  padding-bottom: 15px;
  border-radius: 10px;
  border-left: 2px solid #E67E22;
  border-right: 2px solid #E67E22;
  position: relative;
  margin-top: 50px;
  cursor: pointer;
  transition: 0.3s;
}
.testimonials .all-testimonial .box::before {
  position: absolute;
  content: "\f10e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  left: 30px;
  top: 30px;
  font-size: 40px;
  color: #E41A1E;
}
.testimonials .all-testimonial .box:hover {
  scale: 1.03;
  box-shadow: 10px 10px 10px #ccc;
}
.testimonials .all-testimonial .box .image {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: -35px;
  right: 30px;
}
.testimonials .all-testimonial .box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials .all-testimonial .box h3 {
  color: #28397A;
}
.testimonials .all-testimonial .box .position {
  color: #E67E22;
  font-weight: bold;
}
.testimonials .all-testimonial .box .stars i {
  color: #FFC000;
}
.testimonials .all-testimonial .box .desc {
  text-align: start;
  font-size: 14px;
}

.partners {
  margin-top: 50px;
  margin-bottom: 50px;
}
.partners .logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15px, 1fr));
  gap: 20px;
}
.partners .logos .image img {
  cursor: pointer;
  filter: grayscale(1);
  transition: 0.3s;
}
.partners .logos .image img:hover {
  scale: 1.1;
  filter: grayscale(0);
}

.blog {
  background-color: white;
  padding-top: 50px;
  padding-bottom: 50px;
}
.blog .all-blogs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.blog .all-blogs .blog-card {
  border-radius: 10px;
  background-color: #eee;
  transition: 0.3s;
  cursor: pointer;
  overflow: hidden;
}
.blog .all-blogs .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 3px 3px 10px #7d7d7d;
}
.blog .all-blogs .blog-card .image {
  position: relative;
  width: 100%;
  height: 250px;
}
.blog .all-blogs .blog-card .image .blog-category {
  position: absolute;
  background-color: #E67E22;
  padding: 3px 15px;
  border-radius: 3px;
  color: white;
  right: 15px;
  top: 15px;
}
.blog .all-blogs .blog-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog .all-blogs .blog-card .info {
  padding: 15px;
}
.blog .all-blogs .blog-card .info h3 {
  color: #28397A;
}
.blog .all-blogs .blog-card .info p {
  font-size: 14px;
  color: #686767;
}
.blog .all-blogs .blog-card .info hr {
  margin: 15px 0;
  height: 0.5px;
  background-color: #ccc;
  border: none;
  width: 80%;
}
.blog .all-blogs .blog-card .info .blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog .all-blogs .blog-card .info .blog-footer .author {
  display: flex;
  align-items: center;
}
.blog .all-blogs .blog-card .info .blog-footer .author .author-img {
  margin-right: 15px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #E67E22;
  overflow: hidden;
}
.blog .all-blogs .blog-card .info .blog-footer .author .author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallary {
  margin-bottom: 50px;
  margin-top: 50px;
}
.gallary .all-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 30px;
}
.gallary .all-images .image {
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
}
.gallary .all-images .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.gallary .all-images .image img:hover {
  scale: 1.05;
}

.page-header {
  padding: 60px 0;
  background-color: #28397A;
}
.page-header h1 {
  color: white;
  font-size: 40px;
}
.page-header .info-aqar {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  color: white;
  font-size: 25px;
}
.page-header .info-aqar i {
  color: brown;
}

.page-content {
  padding-top: 60px;
  margin-bottom: 250px;
}
.page-content .inner-content {
  display: flex;
  gap: 20px;
}
.page-content .inner-content .right-section {
  width: 70%;
  background-color: white;
  border-radius: 6px;
  padding: 15px;
}
.page-content .inner-content .right-section .main-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 6px;
}
.page-content .inner-content .right-section .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-content .inner-content .right-section .description p {
  margin-bottom: 15px;
  font-size: 18px;
}
.page-content .inner-content .right-section h2 {
  margin-top: 20px;
  color: #28397A;
  margin-bottom: 20px;
  font-size: 28px;
}
.page-content .inner-content .right-section .props {
  display: flex;
  background-color: #eee;
  padding: 20px;
  border-radius: 6px;
}
.page-content .inner-content .right-section .props div:first-child {
  border-left: 1px solid #ccc;
}
.page-content .inner-content .right-section .props div {
  width: 50%;
  padding-right: 20px;
}
.page-content .inner-content .right-section .props div ul li {
  margin-bottom: 20px;
  position: relative;
}
.page-content .inner-content .right-section .props div ul li::before {
  position: absolute;
  content: ":";
  left: 50%;
  font-size: 20px;
}
.page-content .inner-content .right-section .props div ul li span {
  position: absolute;
  left: 15%;
}
.page-content .inner-content .right-section .extra-props {
  background-color: #eee;
  padding: 20px;
  border-radius: 6px;
  display: flex;
  gap: 15px;
}
.page-content .inner-content .right-section .extra-props .box {
  background-color: white;
  width: 33%;
  border-radius: 6px;
  padding: 10px;
  box-shadow: 3px 3px 3px #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-content .inner-content .right-section .extra-props .box i {
  font-size: 30px;
  color: #E67E22;
  background-color: rgba(230, 125, 34, 0.262745098);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-content .inner-content .right-section .extra-props .box h4 {
  margin: 10px 0;
  color: #28397A;
}
.page-content .inner-content .right-section .extra-props .box p {
  color: #E67E22;
  font-weight: bold;
  font-size: 20px;
}
.page-content .inner-content .right-section .swiper-slide {
  width: 100%;
  height: 500px;
  border-radius: 6px;
  overflow: hidden;
}
.page-content .inner-content .right-section .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-content .inner-content .right-section .arrow {
  background-color: rgba(255, 255, 255, 0.397);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 3px;
  color: #28397A;
}

/*# sourceMappingURL=style.css.map */
