* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --color-primary: #67263a;
  --color-light: #ffffff;
  --color-dark: #000000;
}
p {
  font-size: 18px;
  color: var(--color-light);
  font-weight: 700;
  font-family: "Cairo", sans-serif;
  letter-spacing: 0%;
}
.hero{
  display: none;
}
.home-fullScreen {
  width: 100%;
  height: 100vh;
  background-color: var(--color-primary);
  padding: 30px 56px;
  background-image: url(./images/Frame\ 1686552789.png);
  background-repeat: no-repeat;
  background-position: center;
}
.home-fullScreen .all-sections{
   display: flex ;
  align-items: center;
  justify-content: space-evenly;
    flex-direction: column;

    gap: 110px;
}
.home-fullScreen .first-sections{
  width: 100%;
  display: flex ;
  align-items: center;
  justify-content: space-evenly;
}
.home-fullScreen .first-sections .card {
  width: 444px;
  height: 122px;
  background-color: var(--color-light);
  padding: 16px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-fullScreen .first-sections .card:first-child,
.home-fullScreen .center-sections .card:first-child {
  border-radius: 15px 15px 15px 0px;

}
.home-fullScreen .first-sections .card:last-child ,
.home-fullScreen .center-sections .card:last-child {
    border-radius: 15px 15px 0px 15px;
}
.home-fullScreen .first-sections .card p{
  color: var(--color-dark);
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}


.home-fullScreen .center-sections{
  width: 100%;
  display: flex ;
  align-items: center;
  justify-content: space-between;
}
.home-fullScreen .center-sections .card {
  width: 444px;
  height: 122px;
  background-color: var(--color-light);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-fullScreen .center-sections .card p{
  color: var(--color-dark);
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}
.home-fullScreen .social-media{
  padding-top:30px ;
  display: flex ;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.home-fullScreen .social-media .download p{
  font-size: 20px;
  font-weight: 400;
}
.home-fullScreen .social-media .all-social-media{
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (min-width: 768px) and (max-width : 1300px){
.home-fullScreen {
  padding: 30px 40px;
}
.home-fullScreen .all-sections{
    gap: 140px;
}
.home-fullScreen .first-sections .card {
  width: 350px;
  height: 100px;
  padding: 16px 10px;
}
.home-fullScreen .first-sections .card p{
  font-size: 17px;
}

.home-fullScreen .center-sections .card {
  width: 350px;
  height: 100px;
  padding: 16px 10px;
}
.home-fullScreen .center-sections .card p{
  font-size: 18px;
}
.home-fullScreen .social-media .download p{
  font-size: 20px;
  font-weight: 400;
}
}
@media (max-width: 800px) {
  .home-fullScreen {
    display: none;
  }
  p {
    font-size: 14px;
  }
  .hero {
    padding: 60px 12px;
    width: 100%;
    height: 100vh;
    background-color: var(--color-primary);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .hero .bg-hero {
    position: absolute;
    top: 257px;
    left: 0;
  }
  .hero .bg-hero img {
    width: 100%;
    height: 100%;
  }
  .hero .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .hero .content-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 0px;
    width: 65%;
    gap: 43px;
  }
  .hero .content-hero .desc-hero {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .hero .social-media .btn {
    color: var(--color-light);
    font-size: 20px;
    font-family: "Cairo", sans-serif;
    font-weight: 600;
    cursor: pointer;
    text-align: end;
  }
  .hero .social-media .btn:hover {
    color: var(--color-dark);
    transition-duration: 0.4s;
  }
  .hero .social-media {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
  }
  .hero .social-media .all-social-media{
    display: flex ;
    align-items: center;
    gap: 20px;
  }
}
