* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
}
header {
  /* background-color: #333; */
  color: #fff;
  padding: 1rem;
  text-align: center;
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  box-shadow: 0 4px 20px hsla(207, 24%, 35%, 0.1);
  background-color: white;
  z-index: 1;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  gap: 35%;
}

.logo a {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
}

.logo a span {
  color: #8739fa;
}
.logo{
  display: flex;
  gap: 0;
  align-items: center;
}
.logo img{
  width: 30px;
}
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.menu a {
  display: block;
  padding: 7px 15px;
  font-size: 17px;
  font-weight: 500;
  transition: 0.2s all ease-in-out;
  color: #240b88;
  text-decoration: none;
}

.menu a:hover {
  color: #333;
}
.menu a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #333;
  transition: width 0.3s;
}
.menu a:hover::after {
  width: 100%;
}
.menu a.active {
  color: #333;
}
.menu a.active::after {
  width: 100%;
}

.menu-icon {
  display: none;
}

#menu-toggle {
  display: none;
}

#menu-toggle:checked ~ .menu {
  transform: scale(1, 1);
}

.header button {
  background-color: #240b88;
  color: #fff;
  border: none;
  padding: 0.8rem 1.3rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.header button:hover {
  background-color: #1a0a5f;
}


/* banner */
.banner {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #240b88;
}
.banner__text {
  width: 50%;
  margin: auto;
  margin-left: 10%;
}
.banner__text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #240b88;
}
.banner__text p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.banner__text button {
  background-color: #240b88;
  color: #fff;
  border: none;
  padding: 0.8rem 1.3rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.banner__text button:hover {
  background-color: #1a0a5f;
}
.banner__image {
  width: 40%;
  margin: auto;
  position: relative;
}
.banner__image img {
  width: 50%;
}
.feature {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 50%;
  margin: 7% 0 0 35%;
}
.each__feature {
  width: 540px;
  height: 425px;
  flex-shrink: 0;
}
.each__feature img {
  width: 50%;
  height: 50vh;
}

footer {
  width: 100%;
  background: #4e38a9;
  align-items: center;
}


.footer__menu {
  width: 70%;
  background: #4e38a9;
  /* align-items: center; */
  color: white;
  /* text-align: center; */
  padding: 3rem 0;
}
.menuu {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: none;
}
.footer__links ul {
  list-style: none;
  gap: 3rem;
}
.footer__links ul li a {
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
}
.footer__links ul li a:hover {
  color: #333;
}
.footer__social ul {
  list-style: none;
  gap: 1rem;
  display: flex;
}
.footer__social ul img {
  width: 30px;
  height: 30px;
}
.designers {
  width: 100%;
  background: white;
  align-items: center;
  color: black;
  text-align: center;
  padding: 1.2rem 0;
}
.designers p {
  font-size: 1.2rem;
}
.designers strong {
  color: #4e38a9;
}
.designers a {
  text-decoration: none;
  color: #4e38a9;
}


@media only screen and (max-width: 600px) {
  body {
    width: 100%;
  }
  main {
    width: 100%;
    margin-left: 0%;
  }
  .banner {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #240b88;
    flex-direction: column;
    /* margin-left: 5%; */
  }
  .banner__text {
    width: 90%;
    margin: 0;
    /* margin-left: 0; */
  }
  .banner__text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #240b88;
    margin-top: 2rem;
  }
  .banner__text p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .banner__image {
    width: 90%;
    margin: auto;
    position: relative;
  }
  .banner__image img {
    width: 50%;
    /* margin-left: 23%; */
  }
  .feature {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3%;
    width: 100%;
    margin: 7% 0 0 0%;
    /* text-align: center; */
  }
  .each__feature {
    width: 90%;
    height: 355px;
    /* text-align: center; */
    flex-shrink: 0;
    padding-left: 5%;
  }
  .each__feature h1 {
    font-size: 1.5rem;
  }
  .each__feature p{
    font-size: 1rem;
  }
  .each__feature img {
    width: 100%;
    height: 50vh;
    text-align: center;
    align-items: center;
  }
  .footer {
    width: 100%;
    margin: 0;
  }
  .download {
    width: 100%;
    background: #ebe7ff;
    align-items: center;
    margin: 3% 0 3% 0%;
  }
  .download__img {
    width: 100%;
    height: 30vh;
    gap: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .footer__menu {
    width: 100%;
    /* background: #4E38A9; */
    color: white;
    padding: 3rem 0;
    /* margin-left: 5%; */
  }
  .menuu {
    width: 90%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 3rem;
  }
  .footer__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: none;
  }
  .footer__links ul {
    list-style: none;
    gap: 3rem;
    margin-top: 5%;
  }
  .footer__links ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
  }
  .designers {
    width: 100%;
    background: white;
    align-items: center;
    color: black;
    text-align: center;
    padding: 1.2rem 0;
    margin-left: 0%;
  }
  .designers p {
    font-size: 0.9rem;
  }
  .designers strong {
    color: #4e38a9;
  }
  .designers a {
    text-decoration: none;
    color: #4e38a9;
  }
}









@media only screen and (max-width: 950px) {
  .menu {
    flex-direction: column;
    background-color: white;
    align-items: start;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 1;
    transform: scale(1, 0);
    transform-origin: top;
    transition: transform 0.3s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  }

  .menu a {
    margin-left: 12px;
  }

  .header button{
    margin-left: 24px;
  }

  /* .menu li {
    margin-bottom: 10px;
  } */

  .menu-icon {
    display: block;
    color: #240b88;
    font-size: 28px;
    cursor: pointer;
  }
}