@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap");
/* Normalize */
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}
/* body */
body {
  font-family: "Cairo", sans-serif;
  direction: rtl;
  background: #f4f5f9;
}
/* assets */
.btn-d {
  background: #ffffff3b;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 15px 20px;
  display: inline-block;
}
.btn-d2 {
  background: #280eef;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 15px 20px;
  display: inline-block;
  color: #fff;
  margin-bottom: 17px;
}
.w-100 {
  width: 100%;
}
/* var */
:root {
  --var: ;
}
/* all  */
.all {
  padding: 50px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
/* the-header */
.the-header {
  background: #eee;
  padding: 30px 50px;
  border-radius: 60px;
  min-height: 300px;
  color: #fff;
}
.the-header a {
  color: #fff;
}
.the-header nav {
  display: flex;
  align-items: center;
}
.the-header nav .list {
  margin-right: 30px;
}
.the-header nav .list a {
  margin-left: 30px;
}
.the-header nav .btn-d {
  margin-right: auto;
}
.the-header .hero {
  display: flex;
  align-items: center;
}
.the-header .the-info {
  max-width: 500px;
}
.the-header .price {
  margin-bottom: 15px;
  margin-top: 15px;
}
.the-header .hiro-info {
  display: table;
  margin: 0 auto;
  background: #ffffff;
  position: relative;
  color: #3d34eb;
  font-weight: bold;
  padding: 1px 9px;
  border-radius: 15px;
  margin-top: 10px;
  margin-bottom: 15px;
}

/* the-options */
.the-options {
  text-align: center;
  margin: 44px 0;
}
.the-options .options {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 35px 0 0 0;
}
.the-options .item::after {
  content: "";
  display: block;
  background: url(../imgs/check.png);
  background-position: center;
  background-size: 41px 41px;
  background-repeat: no-repeat;
  background-color: var(--color);
  width: 60px;
  height: 60px;
  position: absolute;
  top: -18px;
  right: calc(50% - 30px);
  border-radius: 999px;
}
.the-options .item {
  background: #ffffff;
  box-shadow: 0px 13px 19px rgb(0 0 0 / 10%);
  border-radius: 8px;
  width: 100%;
  max-width: 300px;
  padding: 58px 37px 26px;
  font-size: 19px;
  margin-bottom: 30px;
  margin-top: 30px;
  position: relative;
  color: var(--color);
}
/* the-photo */
.the-photo {
  text-align: center;
}
.the-photo .photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 35px 0 0 0;
}
.the-photo .item {
  margin: 23px 15px;
  /* border-radius: 15px; */
  overflow: hidden;
  /* box-shadow: 0px 8px 16px #00000014; */
}
.the-photo .item img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  max-width: 316px;
  box-shadow: 0px 8px 16px #00000014;
  border-radius: 15px;
}
/* the-footer */
.the-footer {
  text-align: center;
  font-weight: bold;
  background: #eeeeee78;
  padding: 31px;
  border-radius: 50px;
  margin-top: 42px;
}
.the-footer h2 {
  margin-bottom: 30px;
}
.the-footer p span {
  display: inline-flex;
  direction: ltr;
}
/* the-post  */
.the-post {
  background: #fff;
  padding: 30px 60px;
  border-radius: 60px;
  font-size: 19px;
  line-height: 42px;
  box-shadow: 0px 8px 16px #00000014;
}
.the-post p,
.the-post img {
  margin-bottom: 20px;
}
.the-post img {
  max-width: 100%;
  border: 1px solid #6a6a6a;
}
/* the-back  */

.the-back a {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* the-top-post  */
.the-top-post {
  text-align: center;
}
/* media  */
@media (max-width: 840px) {
  .the-header nav .list {
    display: none;
  }
}
@media (max-width: 650px) {
  .all {
    padding: 10px;
  }
}

@media (max-width: 580px) {
  .the-header .hero {
    flex-direction: column;
    text-align: center;
    margin-top: 30px;
  }
  .the-header , .the-post {
    padding: 30px 20px;
    border-radius: 20px;
  }
  .the-header .hiro-info {
    text-align: center;
  }
  .the-top-post {
    margin-top: 30px;
  }
}
