* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cairo", Sans-serif;
}

html {
  direction: rtl;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

button {
  cursor: pointer;
  outline: none;
}

.container {
  width: 80%;
  margin: 0 auto;
}

.style {
  color: white;
  border-right: 1.7px solid white;
  padding: 10px 35px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  font-weight: 700;
  font-size: 12px;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.334), rgba(255, 255, 255, 0) 50%);
}

.style-after {
  color: black;
  position: relative;
  padding: 15px 0;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 17px;
}
.style-after::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.4px;
  background-color: black;
  width: 70%;
  right: 0;
}

.btn {
  padding: 10px 20px;
  font-size: 10px;
  font-weight: 800;
  border-radius: 5px;
  border: none;
  width: -moz-fit-content;
  width: fit-content;
}

.fill {
  background: linear-gradient(to right, #f58425, #94298d, #252161);
  color: white;
  transition: all 0.3s ease-in-out;
}
.fill:hover {
  background-color: rgb(29.7423076923, 26.5269230769, 77.9730769231);
}

.empty {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  transition: all 0.3s ease-in-out;
}
.empty:hover {
  background-color: rgba(73, 73, 73, 0.136);
}

header {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 2px 4px rgba(94, 94, 94, 0.048);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
header .container .logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
header .container .logo img {
  width: 70px;
}
header .container .logo .logo-text {
  text-align: center;
  line-height: 1.5;
}
header .container .logo .logo-text h1 {
  color: #2e2e2e;
  font-size: 27px;
}
header .container .logo .logo-text P {
  color: #939598;
  font-size: 11px;
}
header .container ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .container ul li {
  padding: 0;
  position: relative;
  transition: 0.5s;
}
header .container ul li a {
  padding: 10px 15px;
}
header .container ul li::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background: linear-gradient(to right, #f58425, #94298d, #252161);
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out 0.25s;
}
header .container ul li:hover::after {
  transform: scaleX(1);
}
header .container ul li:hover {
  transform: translateY(-4px);
}

.burger {
  display: none;
}

.open {
  transform: translateX(0%);
}

section.home {
  background: url("../images/test-bg.jpg") no-repeat center center;
  background-size: cover;
  height: 83vh;
  z-index: 1;
  position: relative;
}
section.home:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.758));
  z-index: -9;
}
section.home .container {
  height: 100%;
  z-index: 5 !important;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-align: center;
}
section.home .container h2 {
  font-size: 45px;
}
section.home .container p {
  font-size: 11px;
  font-weight: 600;
  max-width: 700px;
}
section.home .container .buttons {
  display: flex;
  gap: 25px;
  padding: 15px 0;
}

section.services {
  z-index: 999999;
  padding: 0 0 50px 0;
}
section.services .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  justify-content: center;
}
section.services .container .service {
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: white;
}
section.services .container .service .service-icon {
  width: 100%;
  height: 240px;
}
section.services .container .service .service-icon img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.services .container .service .service-content {
  background: #ffffff;
  border-radius: inherit;
  padding: 14px 15px;
  text-align: center;
  box-shadow: 0 0 30px rgba(128, 128, 128, 0.073);
}
section.services .container .service .service-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
section.services .container .service .service-content p {
  font-size: 14px;
  padding: 3px 0 15px 0;
  line-height: 2.4;
  color: #2e2e2e;
}

section.cta {
  text-align: center;
  margin: -20px auto 50px auto;
  background: linear-gradient(to left, #252161, #94298d, #f58425);
  width: -moz-fit-content;
  width: fit-content;
  padding: 25px;
  border-radius: 8px;
  z-index: 1000 !important;
  position: relative;
  color: white;
}
section.cta ion-icon {
  padding: 5px;
  background: #ffffff;
  border-radius: 50%;
  color: #94298d;
  font-weight: bolder;
}
section.cta p {
  width: 80%;
  margin: 10px auto;
  font-size: 14px;
}

section.about {
  padding: 50px 0;
}
section.about .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
section.about .container .about-img {
  width: 45%;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
section.about .container .about-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
section.about .container .about-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right bottom, rgba(0, 0, 0, 0.129), rgba(0, 0, 0, 0.829));
}
section.about .container .about-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
section.about .container .about-content p {
  color: #2e2e2e;
  font-size: 15px;
  line-height: 2.1;
}
section.about .container.proc-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 15px;
}
section.about .container.proc-container .proc {
  width: 50%;
  padding: 25px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  border: 1.5px solid #034390;
}
section.about .container.proc-container .proc ion-icon {
  font-size: 20px;
  color: #034390;
}
section.about .container.proc-container .proc p {
  color: #2e2e2e;
  font-size: 13px;
  line-height: 2.1;
}

.profile-items {
  display: flex;
  flex-direction: column;
  margin: 25px 0;
}
.profile-items .profile-item {
  display: flex;
  margin: 30px 0;
  padding: 15px 0;
  align-items: center;
  justify-content: space-between;
}
.profile-items .profile-item:not(:first-child) {
  border-top: 1px solid rgba(226, 226, 226, 0.279);
}
.profile-items .profile-item .profile-img {
  width: 47%;
}
.profile-items .profile-item .profile-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile-items .profile-item .profile-content {
  width: 47%;
}
.profile-items .profile-item:nth-child(2) .profile-content {
  order: 2;
}
.profile-items .profile-item:nth-child(3) .profile-content {
  order: 0;
}
.profile-items .profile-item:nth-child(4) .profile-content {
  order: 2;
}
.profile-items .profile-item:nth-child(5) .profile-content {
  order: 0;
}
.profile-items .profile-item:nth-child(6) .profile-content {
  order: 2;
}
.profile-items .profile-item:nth-child(7) .profile-content {
  order: 0;
}
.profile-items .profile-item:nth-child(8) .profile-content {
  order: 2;
}
.profile-items .profile-item:nth-child(9) .profile-content {
  order: 0;
}
.profile-items .profile-item:nth-child(10) .profile-content {
  order: 2;
}
.profile-items .profile-item:nth-child(11) .profile-content {
  order: 0;
}
.profile-items .profile-item:nth-child(12) .profile-content {
  order: 2;
}
.profile-items .profile-item:nth-child(13) .profile-content {
  order: 0;
}

.machines {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.machines .heading {
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}
.machines .heading p {
  font-size: 12px;
  color: #2e2e2e;
  margin: 5px 0;
}
.machines .heading h3::after {
  display: none;
}
.machines .heading h3 {
  border-bottom: 1.5px solid black;
  font-size: 29px;
  padding-bottom: 5px;
}
.machines .container {
  width: 70% !important;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 15px;
  justify-content: space-between;
}
.machines .container .image {
  overflow: hidden;
  height: 240px;
  position: relative;
}
.machines .container .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.machines .container .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right bottom, rgba(0, 0, 0, 0.412), rgba(0, 0, 0, 0.599));
}

.container.map iframe {
  width: 100% !important;
  margin-top: 15px;
  border-radius: 8px;
}

.contact {
  background-color: rgba(245, 245, 245, 0.466);
  padding-bottom: 15px;
}
.contact .heading {
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0 8px 0;
}
.contact .heading p {
  font-size: 12px;
  color: #2e2e2e;
  margin: 5px 0;
}
.contact .heading h3::after {
  display: none;
}
.contact .heading h3 {
  border-bottom: 1.5px solid black;
  font-size: 29px;
  padding-bottom: 5px;
}
.contact .social {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  gap: 10px;
}
.contact .social ion-icon {
  background-color: rgba(128, 0, 128, 0.047);
  color: purple;
  padding: 9px;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.5s;
}
.contact .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}
.contact .container .contact-box {
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(232, 232, 232);
  padding: 20px;
  border-radius: 8px;
}
.contact .container .contact-box .contact-header small {
  font-weight: bolder;
  color: #94298d;
}
.contact .container .contact-box .contact-header h4 {
  font-size: 20px;
}
.contact .container .contact-box .contact-header p {
  font-size: 12px;
  color: #2e2e2e;
}
.contact .container .contact-box ion-icon {
  padding: 10px;
  border-radius: 50%;
  background-color: rgba(128, 0, 128, 0.11);
  color: purple;
  font-size: 19px;
  transition: 0.5s;
}
.contact .container .contact-box .contact-item {
  display: flex;
  padding: 10px 0;
  cursor: pointer;
  gap: 8px;
  align-items: center;
  transition: 0.5s;
}
.contact .container .contact-box .contact-item .contact-item-body {
  padding: 5px 0;
  transition: 0.5s;
}
.contact .container .contact-box .contact-item .contact-item-body h4 {
  font-size: 16px;
}
.contact .container .contact-box .contact-item .contact-item-body p {
  font-size: 12px;
  color: #2e2e2e;
}
.contact .container .contact-box .contact-item:hover {
  background-color: rgba(128, 0, 128, 0.047);
}
.contact .container .contact-box .contact-item:hover .contact-item-body {
  transform: translateX(-15px);
}
.contact .container .contact-box .contact-item:hover ion-icon {
  transform: translateX(-15px);
}

/* Large tablets */
@media (max-width: 1200px) {
  .container {
    width: 90%;
  }
  section.about .container {
    flex-direction: column;
  }
  section.about .container .about-img,
  section.about .container .about-content {
    width: 100%;
  }
}
/* Tablets */
@media (max-width: 992px) {
  header.header .container {
    flex-direction: column;
    gap: 20px;
  }
  .machines .container {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    width: 90% !important;
  }
  section.about .container.proc-container {
    flex-direction: column;
    gap: 20px;
  }
  section.about .container.proc-container .proc {
    width: 100%;
  }
  .profile-items .profile-item {
    flex-direction: column;
    gap: 15px;
  }
  .profile-items .profile-item .profile-content {
    order: 0 !important;
  }
  .profile-items .profile-item .profile-img,
  .profile-items .profile-item .profile-content {
    width: 100%;
  }
}
/* Mobile devices */
@media (max-width: 768px) {
  .container {
    width: 95%;
  }
  .home {
    height: auto !important;
    padding: 20px 0;
  }
  .burger {
    display: block;
    font-size: 23px;
    position: fixed;
    top: 16px;
    right: 16px;
    cursor: pointer;
    background: white;
    padding: 5px;
    border-radius: 3px;
    z-index: 10000000000000000000000;
  }
  .open {
    transform: translateX(0%) !important;
  }
  header.header .container ul {
    transform: translateX(100%);
    flex-direction: column;
    gap: 0px;
    position: fixed;
    background-color: rgb(255, 255, 255);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    width: 50%;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999999;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  header.header .container ul li {
    background-color: white;
    width: 100%;
    padding: 12.5px;
    text-align: center;
  }
  body {
    overflow-x: hidden;
  }
  .style {
    font-size: 10px;
    padding: 8px 20px;
  }
  section.home .container h2 {
    font-size: 30px;
  }
  section.home .container p {
    font-size: 10px;
    padding: 0 10px;
  }
  section.home .container .buttons {
    flex-direction: column;
    gap: 10px;
  }
  .machines .container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  .contact .container {
    grid-template-columns: 1fr;
  }
  .profile-items .profile-item {
    flex-direction: column;
    text-align: center;
  }
  .profile-items .profile-item:not(:last-child) {
    border-bottom: 1px solid rgba(224, 224, 224, 0.7176470588);
  }
}
/* Small phones */
@media (max-width: 576px) {
  .home {
    padding: 40px 0;
  }
  .home .container {
    gap: 10px !important;
  }
  .home .container .buttons {
    flex-direction: row !important;
    gap: 10px;
  }
  .home h2 {
    font-size: 24px !important;
  }
  .home p {
    font-size: 10px !important;
  }
  .style-after {
    font-size: 14px;
  }
  .btn {
    font-size: 9px;
    padding: 8px 16px;
  }
  section.services .container {
    grid-template-columns: 1fr;
  }
  .machines .heading h3 {
    font-size: 22px;
  }
  .machines .container {
    grid-template-columns: 1fr;
  }
  section.about .container .about-img {
    height: 220px;
  }
  .contact .heading h3 {
    font-size: 22px;
  }
}
@media (max-width: 464px) {
  .header .logo img {
    width: 50px !important;
  }
  .header .logo h1 {
    font-size: 19px !important;
  }
  .header .logo p {
    font-size: 9px;
  }
}/*# sourceMappingURL=style.css.map */