/* start-navbar  */
.navbar {
  background-color: #fff;
  /* position: fixed; */
  width: 100%;
  top: 0;
  right: 0;
  background-color: rgba(var(--primary-100),.6);
  /* box-shadow: 0 2px 3px #00000030; */
  transition: background-color 300ms ease-in-out;
  z-index: 5;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 0.5rem 1rem;
}
.navbar__links_wrapper {
  display: flex;
  justify-content: center;
  @media only screen and (max-width: 991px) {
    position: fixed;
    top: 0;
    right: 0;
    min-height: 100vh;
    min-height: 100svh;
    width: 100%;
    z-index: 9;
    display: none;
    pointer-events: none;
  }
}
.navbar__links_wrapper.show {
  @media only screen and (max-width: 991px) {
    /* animation: SlideLeft 400ms ease-in-out 0s 1 normal forwards; */
    display: flex;
    pointer-events: fill;
  }
}
.navbar__links_wrapper .navbar__links {
  display: flex;
  gap: 0.25rem;
  @media only screen and (max-width: 991px) {
    background-color: rgb(var(--primary-600));
    width: 450px;
    flex-direction: column;
    padding: 2rem;
    position: fixed;
    top: 0;
    right: -100%;
  }

  @media only screen and (max-width: 768px) {
    width: 260px;
  }
}
.navbar__links_wrapper.show .navbar__links {
  @media only screen and (max-width: 991px) {
    height: 100%;
    animation: SlideLeft 200ms ease-in-out 0s 1 normal forwards;
  }
}

.navbar__links_wrapper .navbar__links li {
  box-sizing: border-box;
}
.navbar__links_wrapper .navbar__links li a {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  transition: background 200ms ease-in-out;
  text-transform: capitalize;
  font-size: 1rem;
  @media only screen and (max-width: 991px) {
    display: block;
    padding: 0.5rem;
    color:White;
  }
}
.navbar__links_wrapper .navbar__links li a:hover {
  background-color: rgb(var(--primary-500));
  color: #fff;
}
.navbar__links_wrapper button {
  display: none;
  @media only screen and (max-width: 991px) {
    display: flex;
    flex: 1;
    background-color: #00000080;
  }
}
.navbar .navbar__menu_icon {
  display: none;
  @media only screen and (max-width: 991px) {
    display: block;
  }
}
/* end-navbar  */
@keyframes SlideLeft {
  0% {
    rigth: -100%;
  }
  100% {
    right: 0%;
  }
}
/* end-navbar   */
/* -------------------------------------------------- */
/* start-hero  */
.hero {
  background-color: rgba(var(--primary-100),.6);
  position:relative;
}
.hero__container {
  display:flex;
  gap:32px;
  align-items:center;
  flex-wrap: wrap;
  @media only screen and (max-width:768px){
    flex-direction: column;
  }
  @media only screen and (max-width:420px){
    gap:0;
  }
}
.hero__text{
  flex:1;
}
.hero__text h1{
  font-size:3rem;
  margin-bottom:2rem;
  color:rgb(10,10,10);
  @media only screen and (max-width:768px){
    text-align: center;
  }
}
.hero__text p {
  line-height:30px;
  max-width:55ch;
  margin-bottom:2rem;
  @media only screen and (max-width:768px){
    text-align: center;
  }
}
.hero__text .hero__download-links {
  display:flex;
  gap:8px;
  align-items:center;
  @media only screen and (max-width:768px){
    justify-content: center;
  }
}
.hero__text .hero__download-links a {
  /* width:200px; */
  padding:12px 32px;
  border-radius:.75rem;
  display:flex;
  justify-content: center;
  align-items:center;
  gap:8px;
  border:1px solid rgba(var(--primary-400), 0.3);
  @media only screen and (max-width:420px){
    padding:12px 24px;
  }
}
.hero__images {
  display:flex;
  align-items: center;
  justify-content: center;
  height:calc(100vh-70px);
  min-height:550px;
  flex:1;
  @media only screen and (max-width:768px){
   height:fit-content;
   min-height: auto;
   padding:80px 0;
  }
}

.hero__images img{
  filter:drop-shadow(0px 4px 8px rgba(var(--primary-500), .2));
  @media only screen and (max-width:991px){
    width:170px
  }
  @media only screen and (max-width:420px){
    width:130px
  }
}
.hero__images img:first-of-type{
  transform:translateY(-50px);
}
.hero__images img:last-of-type{
  transform:translateY(50px);
}
.hero__circle-one {
  /* width:200px; */
  /* height:200px; */
  border-radius: 50%;
  background-color: rgba(var(--primary-500),.5);
  position:absolute;
  bottom:0px;
  left:0;
  z-index:-1;
  filter:blur(40px)
}
.hero__circle-two {
  /* width:200px; */
  /* height:200px; */
  border-radius: 50%;
  background-color: rgba(var(--primary-100),.8);
  position:absolute;
  top:0;
  right:0;
  z-index:-1;
  filter:blur(40px)
}
/* end-hero  */
/* -------------------------------------------------- */
/* start-categories  */
.categories {
  padding:84px 0;
}
.categories .section-title {
  color:rgb(var(--primary-700));
  margin-bottom:2rem;
  text-align: center;
  font-size:2rem;
}
.categories__cards {
  display:flex;
  gap:16px;
  justify-content: center;
  flex-wrap: wrap;
}
.categories__card {
  flex:1;
  flex-basis: 22%;
  height:160px;
  background-color: rgba(var(--primary-100), 1);
  border-radius:8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:12px;
  padding:16px;
  @media only screen and (max-width:768px){
    flex-basis: 45%;
  }
  @media only screen and (max-width:500px){
    height:140px;
  }
}
.categories__card:first-of-type{
  background-color: rgba(var(--primary-200), 1);
}
.categories__card:nth-of-type(2){
  background-color: rgba(var(--secondary-200), 1);
}
.categories__card:nth-of-type(3){
  background-color: rgba(var(--primary-300), 1);
}
.categories__card:nth-of-type(4){
  background-color: rgba(var(--secondary-300), 1);
}
.categories__card img {
  @media only screen and (max-width:500px){
    width:80px;
  }
}
/* end-categories  */
/* -------------------------------------------------- */
/* start-features  */
.features{
  padding:86px 0;
  /* background-color: rgba(var(--gray-100), .8); */
}
.features .section-title {
  color:rgb(var(--primary-900));
  font-size:2rem;
  margin-bottom:3rem;
  text-align: center;
}
.features__cards {
  display:flex;
  flex-wrap: wrap;
  gap:8px;
}
.features__card {
  flex:1;
  min-width:300px;
  border:1px solid #ddd;
  padding:20px;
  border-radius: 8px;
  position:relative;
  overflow: hidden;
}
.features__card::before{
  content:"";
  position:absolute;
  top:40px;
  right:40px;
  height:30px;
  width:30px;
  border-radius: 50%;
  background-color:rgba(var(--secondary-200),1);
  transition:300ms ease-in;
  z-index: -1;
}
.features__card:hover::before{
  transform: scale(50,50);
}
.features__card > div {
  width:48px;
  height:48px;
  border-radius:50%;
  background-color:rgba(var(--secondary-200),1);
  margin-bottom:1rem;
  display: flex;
  justify-content: center;
  padding:.5rem;
  box-sizing: content-box;
  align-items: center;
}
.features__card > h6 {
  font-size:1rem;
  margin-bottom:.5rem;
}
.features__card > p {
  color:rgb(var(--gray-600))
}
/* end-features  */
/* -------------------------------------------------- */
/* start-steps  */

.steps {
  padding:86px 0;
  @media only screen and (max-width:768px){
    background:linear-gradient(#ffffff90,#ffffff90) , url("/images/shopping.jpg") ;
    background-repeat: no-repeat;
    background-size:cover;
   }
}
.steps .section-title {
  text-align: center;
  font-size:2rem;
  margin-bottom:3rem;
  color:rgb(var(--primary-900));
  @media only screen and (max-width:768px){
    text-align: start;
  }
}
.steps__content{
  display: flex;
  flex-wrap: wrap;
  gap:32px;
  align-items: center;
}
.steps__image {
  flex:1;
  height:400px;
  overflow: hidden;
  border-radius: 32px;
  @media only screen and (max-width:768px){
    display: none;
  }
}
.steps__image img {
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: top;
}
.steps__steps {
  flex:1;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  height: fit-content;

}

.steps__steps:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 0px;
  /* bottom: 20px; */
  height:calc(100% - 50px);
  width: 2px;
  background-color: transparent;
  border-right: 2px dashed #ddd;
}

.steps__step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.steps__step-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--primary-500), 1);
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  flex-shrink: 0;
}

.steps__step-content {
  margin-right: 20px;
}

.steps__step-content h6 {
  font-size: 1.2em;
  font-weight: bold;
  margin: 5px 0;
}

.steps__step-content p {
  font-size: 1em;
  color: #555;
}

/* end-steps  */
/* -------------------------------------------------- */
/* start-footer */
.footer {
  padding: 90px 0;
  background: linear-gradient(
    145deg,
    rgb(var(--primary-950)),
    rgb(var(--primary-800))
  );
}
.footer .container {
  display: flex;
  gap: 16px;
  row-gap: 64px;
  flex-wrap: wrap;
}
.footer .container > div {
  flex: 1;
  color: #ddd;
  flex-basis: 23%;
  min-width: 270px;
}

.footer__logo img {
  margin-bottom: 16px;
}

.footer__links h6,
.footer__download-links h6,
.footer__socials h6 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 16px;
}

.footer__links ul li {
  padding: 4px 0;
}
.footer__links ul li:hover a {
  color: #fff;
}
.footer__download-links > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__download-links > div > a {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid rgb(var(--primary-700));
  border-radius: 8px;
  width: 200px;
  /* flex-basis:140px; */
  font-size: 1rem;
  font-weight: 400;
  background-color: rgba(var(--primary-100), 0.1);
  transition: all 300ms ease;
  @media only screen and (min-width: 991px) {
    font-size: 1.2rem;
    font-weight: 600;
    /* flex-basis:200px; */
  }
}

.footer__socials > div {
  display: flex;
  gap: 16px;
}
.footer__socials > div a {
  height: 64px;
  width: 64px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* end-footer  */
