@import "https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap";
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Rubik", sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  height: -webkit-fill-available;
  direction: rtl;
}

a,
button {
  cursor: pointer;
  border: none;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
  box-shadow: none;
  text-decoration: none;
}

.container {
  max-width: 75rem;
  height: auto;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.heading-xl {
  font-family: inherit;
  font-size: clamp(2.648rem, 6vw, 4.241rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}
.heading-lg {
  font-family: inherit;
  font-size: clamp(2.179rem, 5vw, 3.176rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}
.heading-md {
  font-family: inherit;
  font-size: clamp(1.794rem, 4vw, 2.379rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
}
.heading-sm {
  font-family: inherit;
  font-size: clamp(1.476rem, 3vw, 1.782rem);
  font-weight: 600;
  line-height: 1.5;
}
.heading-xs {
  font-family: inherit;
  font-size: clamp(1.215rem, 2vw, 1.335rem);
  font-weight: 500;
  line-height: 1.5;
}

.paragraph {
  font-family: inherit;
  font-size: clamp(1rem, 2vw, 1.125rem);
  text-wrap: balance;
  color: var(--color-white-200);
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  outline: none;
  border: none;
  border-radius: 0.25rem;
  text-transform: unset;
  transition: all 0.3s ease-in-out;
  border: 1px solid #a2926e;
  color: #a2926e;
  padding: 10px 15px;
}
.btn:hover {
  background-color: #a2926e;
  color: #f8ecde;
  border: 1px solid #a2926e;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: all 0.35s ease;
  background-color: #1a3733;
  color: #f8ecde;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30%;
  height: 4.25rem;
  margin: 0 auto;
  padding: 15px 0px;
}

.brand img {
  width: 75px;
}

.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  padding: 4rem 0 3rem;
  overflow: hidden;
  background-color: var(--color-black-300);
  box-shadow: var(--shadow-medium);
  transition: all 0.4s ease-in-out;
}
.menu.is-active {
  top: 0;
  width: 100%;
  height: auto;
  background-color: rgba(30, 27, 27, 0.8);
}
.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
}
.menu-link {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-white-100);
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.menu-link:hover {
  color: #a2926e;
}
.menu-block {
  display: inline-block;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  text-align: center;
  margin-left: auto;
  padding: 0.65rem 1.5rem;
  border-radius: 3rem;
  text-transform: capitalize;
  color: var(--color-white);
  background-color: var(--color-blue-600);
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 48rem) {
  .menu {
    position: relative;
    top: 0;
    width: auto;
    height: auto;
    padding: 0rem;
    margin-left: auto;
    background: none;
    box-shadow: none;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    margin: 0 auto;
  }
  .menu-link {
    text-transform: capitalize;
  }
  .menu-block {
    margin-left: 2rem;
  }
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 10;
  width: 1.6rem;
  height: 1.15rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
}
@media only screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 1rem;
  transform: rotate(0deg);
  background-color: #f8ecde;
  transition: 0.25s ease-in-out;
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

.banner {
  background-color: #1a3733;
  border-bottom: 7px solid #a2926e;
}
.banner-column {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 3rem;
}
@media only screen and (min-width: 48rem) {
  .banner-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
  }
}
@media only screen and (min-width: 64rem) {
  .banner-column {
    grid-template-columns: 1fr max-content;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
}
.banner-image {
  display: block;
  max-width: 16rem;
  height: auto;
  margin-top: 5rem;
  -o-object-fit: cover;
     object-fit: cover;
  justify-self: center;
  margin-bottom: 22px;
}
@media only screen and (min-width: 48rem) {
  .banner-image {
    order: 1;
    max-width: 20rem;
    height: auto;
  }
}
@media only screen and (min-width: 64rem) {
  .banner-image {
    max-width: 25rem;
    height: auto;
  }
}
.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.75rem;
}
.banner-links {
  position: absolute;
  top: 30%;
  right: 1.5rem;
  display: grid;
  justify-items: center;
  row-gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (min-width: 64rem) {
  .banner-links {
    opacity: 1;
    visibility: visible;
  }
}
.banner-links > * {
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--color-white-100);
}
.banner-links::before {
  position: absolute;
  content: "";
  top: -3rem;
  width: 4rem;
  height: 1.5px;
  transform: rotate(90deg);
  background: var(--color-white-100);
}
.banner-links::after {
  position: absolute;
  content: "";
  bottom: -3rem;
  width: 4rem;
  height: 2px;
  transform: rotate(90deg);
  background: var(--color-white-100);
}

.banner-inner {
  padding: 25px;
}
.banner-inner .heading-xl {
  color: #f8ecde;
}
.banner-inner .heading-xl span {
  color: #a2926e;
}
.banner-inner .paragraph {
  color: #f8ecde;
}
.banner-inner .arrow {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform: rotate(0deg);
  cursor: pointer;
}
@media (max-width: 767px) {
  .banner-inner .arrow {
    display: none;
  }
}
.banner-inner .arrow span {
  display: block;
  width: 1.5vw;
  height: 1.5vw;
  border-bottom: 5px solid #a2926e;
  border-right: 5px solid #a2926e;
  transform: rotate(0deg);
  margin: -10px;
  animation: animate 2s infinite;
}
.banner-inner .arrow span:nth-child(2) {
  animation-delay: -0.2s;
}
.banner-inner .arrow span:nth-child(3) {
  animation-delay: -0.4s;
}
@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}

.Head_sections {
  margin-bottom: 30px;
  padding: 25px;
  font-family: inherit;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  white-space: wrap;
}
.Head_sections span {
  color: #a2926e;
}

.about-us {
  padding: 35px 15px;
  background-image: linear-gradient(#eee, #e4dccc);
}
.about-us .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-us .content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 20px;
}
.about-us .content ul li {
  list-style-type: initial !important;
  font-size: 22px;
  color: #a2926e;
  font-weight: 700;
}
.about-us .content ul li::marker {
  font-size: 22px;
  color: #a2926e;
  padding: 0;
  margin: 0;
}
.about-us .content .content_line {
  border-bottom: 2px solid #a2926e;
}

.head_Services {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.head_Services hr {
  border: 2px solid #a2926e;
  width: 200px;
}
.head_Services img {
  width: 35px;
}

.Title_Services {
  color: #a2926e;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  margin-bottom: 50px;
}

.Our_Services {
  padding: 40px 0px;
  border-bottom: 7px solid #a2926e;
}
.Our_Services .Services_Box {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-top: 4px solid #a2926e;
  color: #a2926e;
  height: 100%;
}
.Our_Services .Services_Box h3 {
  color: #a2926e;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
}
.Our_Services .Services_Box p {
  color: #1a3733;
  font-size: 16px;
  text-align: center;
}
.Our_Services .Services_Box img {
  width: 160px;
  height: 160px;
  border: 3px dashed #a2926e;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 5px;
  border-radius: 100%;
}

.Choose_us {
  padding: 15px;
  background-color: #eee;
  min-height: 70vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../img/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.Choose_us::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.Choose_us .choos_p {
  position: relative;
  z-index: 5;
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.Features {
  padding: 35px 15px;
  background-image: linear-gradient(#e4dccc, #eee);
}
.Features .Features_Box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  background-color: #eee;
  padding: 10px;
  border-radius: 10px;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  border-bottom: 3px solid #1a3733;
  margin: 10px;
}
.Features .Features_Box img {
  width: 80px;
}
.Features .Features_Box h3 {
  color: #1a3733;
  font-weight: 700;
  font-size: 21px;
  text-align: center;
}

.Contact_us {
  min-height: 80vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../img/contact.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  border-bottom: 3px solid #a2926e;
}
.Contact_us::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.Contact_us .Details {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}
.Contact_us .Details .Row_one {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.Contact_us .Details .Row_one .image {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #a2926e;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Contact_us .Details .Row_one .image img {
  width: 30px;
}
.Contact_us .Details .info h2 {
  color: #f8ecde;
  font-weight: 700;
  font-size: 24px;
  padding: 0px;
  margin: 0px;
  margin-bottom: 4px;
}
.Contact_us .Details .info a {
  font-size: 20px;
  color: #f8ecde;
  padding: 0px;
  margin: 0px;
}
.Contact_us .contact-form {
  margin-top: 20px;
  position: relative;
  z-index: 5;
  background-image: linear-gradient(#eee, #f1eee5);
  padding: 40px;
  width: 100%;
  padding-bottom: 25px;
  padding-top: 20px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  border: 1px solid #a2926e;
}
.Contact_us .contact-form h2 {
  font-weight: bold;
  font-size: 2em;
  margin-bottom: 20px;
  color: #a2926e;
}
.Contact_us .contact-form .input-box {
  width: 100%;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.Contact_us .contact-form .input-box label {
  font-size: 20px;
  color: #a2926e;
}
.Contact_us .contact-form .input-box input {
  padding: 12px 28px;
  border: 1px solid #a2926e;
  border-radius: 8px;
}
.Contact_us .contact-form .input-box textarea {
  border: 1px solid #a2926e;
  border-radius: 8px;
}
.Contact_us .contact-form .input-box .btn {
  color: #a2926e;
  padding: 12px 28px;
  border: 1px solid #a2926e;
  border-radius: 8px;
}
.Contact_us .contact-form .input-box .btn:hover {
  background-color: #a2926e;
  color: #ffffff;
}

footer {
  background-color: #1a3733;
  padding: 35px 20px 5px 20px;
}
footer .logo {
  margin-bottom: 40px;
}
footer .logo img {
  width: 145px;
}
footer .Links {
  margin-bottom: 40px;
}
footer .Links ul li {
  margin-bottom: 10px;
}
footer .Links ul li a {
  color: #a2926e;
}
footer .Links ul li a:hover {
  color: #f8ecde;
}
footer .social_link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-direction: column;
}
footer .social_link h3 {
  font-size: 16px;
  font-weight: 600;
  color: #a2926e;
  text-align: start;
}
footer .social_link .links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
footer .social_link .links a img {
  width: 30px;
}
footer .social_link .links a img:hover {
  filter: brightness(2);
}
footer .Copyright {
  color: #a2926e;
  border-top: 1px solid #a2926e;
  text-align: center;
  padding-top: 10px;
}
footer .Copyright p {
  padding: 5px;
}/*# sourceMappingURL=style.css.map */