/************************************************************************************
********** Global
*************************************************************************************/
* {
  box-sizing: border-box;
  font-family: Tajawal;
  margin: 0;
  padding: 0;
}
body,
html {
  color: #1e1c29;
  direction: rtl;
  max-width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
}
/* body { */
/*   background-image: radial-gradient(102% 61% at 53% 7%, #eee 0, #fff 900px); */
/*   background-position: 0 0, 0 0; */
/*   background-size: 100% 100%; */
/* } */
main {
  margin-top: 70px;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 300ms ease;
}
a:hover {
  color: #5f3afb;
}
.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  to {
    transform: translateY(0);
  }
}
.bounce {
  animation: bounce 1s ease-in-out infinite;
}
@media only screen and (max-width: 1000px) {
  main {
    margin-top: 100px;
  }
}

/************************************************************************************
********** Classes
*************************************************************************************/
.shadow {
  position: relative;
  background-color: #e1eaee;
}
.shadow:before,
.shadow:after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  background: linear-gradient(
    45deg,
    #fb0094,
    #0000ff,
    #00ff00,
    #ffff00,
    #ff0000,
    #fb0094,
    #0000ff,
    #00ff00,
    #ffff00,
    #ff0000
  );
  background-size: 400%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  z-index: -1;
  animation: animate 20s linear infinite;
  border-radius: inherit;
}

.shadow:after {
  filter: blur(20px);
}

@keyframes animate {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 300% 0;
  }
  100% {
    background-position: 0 0;
  }
}
.ltr {
  direction: ltr;
}

.cta__button {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 600;
  background-color: #1e1c29;
  color: #fff;
  line-height: 1.8em;
  border: none;
  border-radius: 12px;
  text-align: start;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline-start: 1em;
  cursor: pointer;
  transition: all 300ms ease;
}

.cta__button:hover {
  transform: scale(1.05);
  color: #fff;
}
.cta__button > span {
  background: #fff;
  height: calc(1.8em - 6px);
  margin: 0 3px;
  display: flex;
  align-items: center;
  width: calc(1.8em - 6px);
  justify-content: center;
  border-radius: 8px;
}
.cta__button.small {
  font-size: 1.2rem;
  font-weight: 600;
  gap: 0.8em;
}
.cta__button.small > span > img {
  height: 12px;
  width: 12px;
}
/************************************************************************************
********** Navbar
*************************************************************************************/
.nv__wrapper {
  position: fixed;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 10;
}

.nv__wrapper > .container {
  align-items: center;
  display: flex;
  gap: 26px;
  margin: 0 auto;
  max-width: 1444px;
  padding: 1rem 2rem;
}
.nv__logo {
  font-size: 24px;
  font-weight: 600;
  margin-inline-end: auto;
  display: flex;
  gap: 6px;
  align-items: center;
}
.nv__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nv__links a {
  display: flex;
  align-items: center;
  gap: 6px;
}

@media only screen and (max-width: 1000px) {
  .nv__links {
    display: none;
  }
}

/************************************************************************************
********** Hero
*************************************************************************************/

.hr__u {
  gap: 16px;
  display: grid;
  grid-template-columns: 55% 1fr 1fr;
  margin-top: 24px;
}
.hr__u > div {
  background-color: #e1eaee;
  border-radius: 28px;
  height: 400px;
  max-height: 52vh;
}
.hr__1 {
  overflow: hidden;
  padding: 24px 48px;
  position: relative;
}
.hr__1 h1 {
  font-size: 48px;
  font-weight: 800;
  height: 3.6em;
}
.hr__1 .content {
  position: relative;
  z-index: 1;
}
.hr__1 button {
  background: #fff;
  border: none;
  bottom: 24px;
  font-size: 48px;
  height: 60px;
  padding: 0;
  right: 24px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hr__1 .circle,
.hr__1 button {
  border-radius: 100%;
  position: absolute;
}
.hr__1 .circle {
  align-items: center;
  background-image: url(https://img.freepik.com/premium-vector/arabic-pattern-ornament_36073-709.jpg);
  background-position: -1px 0;
  background-size: 99% 100%;
  display: flex;
  height: 500px;
  justify-content: center;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s ease;
  width: 500px;
  z-index: 0;
  text-align: center;
}
.hr__2 {
  background-color: #1e1c29 !important;
  background-position: top;
  background-size: cover;
  display: flex;
}
.hr__2 .content {
  background-color: rgba(225, 234, 238, 0.95);
  border-radius: inherit;
  height: 60%;
  margin-top: auto;
  padding: 1rem;
  width: 100%;
}
.hr__2 p {
  margin-top: 12px;
}
.hr__3 {
  position: relative;
}
.hr__3 a {
  background-position: center center;
  align-items: center;
  background-color: #1e1c29 !important;
  background-image: url(https://i.pinimg.com/originals/20/eb/2c/20eb2ce434d7dacc54d1d9f65f5960cf.jpg);
  background-size: cover;
  border: none;
  border-radius: inherit;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 54px;
  font-weight: 800;
  height: 100%;
  justify-content: center;
  padding: 12px 24px 38px;
  text-align: start;
  transition: all 0.2s ease;
  width: 100%;
}
.hr__3 a:hover {
  transform: scale(1.05);
}
.hr__3 i {
  background: #fff;
  border: none;
  border-radius: 100%;
  bottom: 18px;
  color: initial;
  font-family: monospace;
  font-size: 32px;
  font-style: normal;
  left: 18px;
  line-height: 50px;
  padding: 0;
  position: absolute;
  text-align: center;
  width: 50px;
}
.hr__3 span {
  bottom: 26px;
  font-size: 16px;
  position: absolute;
  right: 18px;
}
.hr__d {
  grid-column-gap: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 16px;
}
.hr__d > div {
  background-color: #e1eaee;
  border-radius: 28px;
  height: 1800px;
  max-height: 25vh;
}
.hr__4 {
  display: flex;
}
.hr__4 a {
  font-size: 36px;
  font-weight: 500;
  margin: auto;
}
.hr__5 {
  display: flex;
}
.hr__5 a {
  font-size: 36px;
  font-weight: 500;
  margin: auto;
}
.hr__6 {
  display: flex;
}
.hr__6 a {
  font-size: 36px;
  font-weight: 500;
  margin: auto;
}
.hr__links {
  display: none;
  gap: 1rem;
  list-style: none;
  padding: 1rem;
  text-align: center;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.hr__links h3 {
  width: 100%;
}
.hr__links a {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media only screen and (max-width: 1000px) {
  .hr__links {
    display: flex;
  }
  .hr__u {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto auto;
  }
  .hr__1 .circle {
    height: 300px;
    width: 300px;
  }
  .hr__1 button {
    display: none;
  }
  .hr__1 h1 {
    font-size: 36px;
  }
  .hr__2 .content {
    margin-top: 0;
    height: 100%;
    width: 80%;
    margin-inline-end: auto;
  }
  .hr__u > div {
    height: 200px;
    max-height: 52vh;
  }
  .hr__3 a {
    font-size: 36px;
  }
  .hr__d {
    display: none;
  }
}

/************************************************************************************
********** Brands
*************************************************************************************/

.brd__wrapper {
  margin: 1rem auto;
}
.brd__wrapper > ul {
  background-color: rgba(225, 234, 238, 0.95);
  border-radius: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  list-style: none;
  padding: 1.62rem 2rem;
}
.brd__wrapper > ul li {
  align-items: center;
  display: flex;
  font-size: 24px;
}
@media only screen and (max-width: 1000px) {
  .brd__wrapper > ul {
    justify-content: center;
  }
}

/************************************************************************************
********** Showcase examples
*************************************************************************************/

.shc__wrapper {
  direction: rtl;
  display: flex;
  gap: 2rem;
  margin: 1rem auto 4rem;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
  user-select: none;
}
.shc__wrapper:hover ul {
  animation-play-state: paused;
}
.shc__wrapper ul {
  animation: shc 36s linear infinite;
  display: flex;
  gap: 2rem;
  list-style: none;
}
.shc__wrapper li {
  background-position: top;
  background-size: 100%;
  border-radius: 14px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  height: 333px;
  margin: 1rem 0;
  min-width: 205px;
}
.shc__wrapper:before {
  background: linear-gradient(
    -90deg,
    rgba(38, 36, 32, 0),
    hsla(0, 0%, 100%, 0.565)
  );
  left: 0;
}
.shc__wrapper:after,
.shc__wrapper:before {
  content: " ";
  height: 100%;
  position: absolute;
  width: 15vw;
  z-index: 9;
}
.shc__wrapper:after {
  background: linear-gradient(
    90deg,
    rgba(38, 36, 32, 0),
    hsla(0, 0%, 100%, 0.565)
  );
  right: 0;
}
@keyframes shc {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(100% + 2rem));
  }
}
/************************************************************************************
********** WHY work with us
*************************************************************************************/
.why__wrapper h2 {
  font-size: 38px;
  font-weight: 800;
  margin: 1rem auto;
  max-width: 555px;
  text-align: center;
}
.why__wrapper ol {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  list-style: none;
  margin: 4rem auto;
}
.why__wrapper li {
  background-color: #e1eaee;
  border-radius: 28px;
  display: flex;
  padding: 1rem 0;
}
.why__wrapper li span {
  color: #a5aeb2;
  font-size: 111px;
  font-weight: 900;
  margin: auto;
  min-width: 130px;
  text-align: center;
}
.why__wrapper li > div {
  margin: auto;
  padding: 1rem 0 1rem 2rem;
}
.why__wrapper li h3 {
  margin-bottom: 1rem;
}

@media only screen and (max-width: 1000px) {
  .why__wrapper ol {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
}

/************************************************************************************
********** Services
*************************************************************************************/
.services_wrapper {
  background-color: #e1eaee;
}

.services_wrapper h3 {
  font-size: 90px;
  font-weight: 900;
}

.services_wrapper > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 4rem 20px;
}

.services_wrapper > .container > li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  background-color: #fff;
  border-radius: 28px;
  overflow: hidden;
}

.services_wrapper .info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
}

.services_wrapper .info a {
  margin-top: auto;
}
.services_wrapper .info h4 {
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
}
.services_wrapper .info .price {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.services_wrapper .info .price span:first-child {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.7;
  text-decoration: line-through;
}
.services_wrapper .info .price span:last-child {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 2.6rem;
}
.services_wrapper .info .price span:last-child i {
  font-size: 1.6rem;
  vertical-align: top;
  line-height: 1.6rem;
  margin-inline-start: -6px;
  margin-top: 6px;
  font-weight: 500;
  font-style: normal;
}

.services_wrapper .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 1000px) {
  .services_wrapper h3 {
    font-size: 32px;
    text-align: center;
  }
  .services_wrapper > .container > li {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
}

/************************************************************************************
********** Stars
*************************************************************************************/
.stars__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 2rem 1rem 4rem;
}

/************************************************************************************
********** Steps
*************************************************************************************/
.steps__wrapper {
  background-color: #e1eaee;
  padding: 6rem 0;
}

.steps__wrapper h3 {
  margin-bottom: 2rem;
  font-size: 3rem;
  font-weight: 900;
}

.steps__wrapper ol {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.steps__wrapper li {
  flex: 1;
  background: #fff;
  border-radius: 28px;
  padding: 1.2rem;
}

.steps__wrapper h5 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.steps__wrapper h5 span {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.4;
}
@media only screen and (max-width: 1000px) {
  .steps__wrapper h3 {
    font-size: 32px;
    text-align: center;
  }
  .steps__wrapper ol {
    flex-direction: column;
  }
}

.last__wrapper {
  min-height: 400px;
  width: 100%;
  border-radius: 28px;
  padding: 2rem;
  margin: 6rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.last__wrapper > h4 {
  font-size: 2.5rem;
  font-weight: 900;
}
.last__wrapper > p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.last__wrapper > a {
  margin: 0 auto;
  width: 260px;
}
.last__wrapper .stars__wrapper {
  padding: 0;
  margin-top: 2rem;
}

footer {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}