@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Poppins:wght@400;500;700&display=swap');


*{
  margin: 0;
  padding: 0;
  font-family:'Open Sans', sans-serif;
  box-sizing: border-box;
}


/* fully responsive nav bar */

nav{
  display: flex;
  width: 100%;
  padding: 0.8em;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

 nav .logo {
  width:  10em;
}

ul {
  display: flex;
  flex-wrap: wrap;
  margin-right: 0.2em;
}

ul li{
  list-style: none;
  margin-right: 1em;
}

li a{
  text-decoration: none;
  color: #5a189a;
  transition: all 0.3s ease;
  font-size: 0.9rem;  
}

 .active
{
  background-color:#5a189a;
  color: #fff;
  padding: 0.5em;
  font-size: 0.9rem;
  border-radius: 15px;
}

li a:hover{
  background-color: #f4e3fe;
  padding: 0.5em;
  font-size: 0.9rem;
  border-radius: 15px;
}

nav .menu-btn i{
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
}
input[type="checkbox"]{
  display: none;
}

@media (max-width: 600px) {
  nav{
    position: fixed;
    background-color: hsl(277, 63%, 87%);
    top: 0;
    z-index: 1;
  }
  nav .menu-btn i{
    display: block;
  }
  #click:checked ~ .menu-btn i:before{
    content: "\f00d";
  }
  nav ul{
    position: fixed;
    top:3.5em;
    left: -100%;
    background: hsl(277, 64%, 87%);
    height: 45vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
  }
  #click:checked ~ ul{
    left: 0;
  }
  nav ul li{
    width: 100%;
    margin: 40px 0;
  }
  nav ul li a{
    width: 100%;
    margin-left: -100%;
    font-weight: 800;
    color: #ffffff;
    display: block;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  #click:checked ~ ul li a{
    margin-left: 0px;
  }
  nav ul li a.active,
  nav ul li a:hover{
    background: none;
    color: #5a189a;
    padding: 0;

  }
  nav .menu-btn i{
    color: #5a189a;
    font-size: 22px;
    cursor: pointer;
    display: contents;
}
}

/* finally, end of nav bar..lol */


#accept{
  display:inline;
}

.ufc💳,.grey,.accept,.💳,.💻,.tick,.🔗{
  padding-left: 2%;
}

.ufc💳{
  color: #5a189a;  
  margin-bottom: 0.75rem;
  padding-left: 2%;
}

@media(max-width:600px){
.ufc💳{
  margin-top: 5rem
}
}

.grey{
  color: grey;
  font-size: 0.9rem;
  line-height: 2rem;
}

.accept{
  font-weight: 600;
  margin-top: 0.85rem;
}

.accept a{
  text-decoration: none;
}

.tick{
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.🔗{
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.💻{
display: flex;
gap: 0.75em;
flex-wrap: wrap;
}


.📦{
  display: flex;
  text-align: center;
  flex-basis: 200px;
  flex-direction: column;
  align-items: center;
  border: 1px solid #5a189a;
  border-radius: 7px;
  padding: 3.5%;
  gap: 0.3em;
  
}

.📦:hover{
  background: #7a38bc;
  color: #fff;
}
.📦 img{
  width: 20px;
}

@media(max-width:600px){
  .💻{
    flex-direction: column;
  }
  
  .📦{
    flex-basis: 0;
    margin: 0 auto;
    width: 80%;
    padding: 2%;
    gap: 0.5em;
    flex-direction:row;
    justify-content: center;
  }
  .📦 img{
    width: 4%;
  }
}

/* FOOTER */

footer{
  background: #5a189a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #f4e3fe;
  margin-top: 2em;
}

.first{
  padding: 1.5%;
}

.first .logo{
  width: 55%;
  cursor: pointer;
}

.second{
display: flex;
flex-direction: column;
justify-content: center;
margin-right: 1.5em;
gap: 1em;
}

.second-a{
  display: flex;
  gap: 1em;
  font-size: 0.75em;
  font-weight: 600;
}

.second-a a {
  text-decoration: none;
  color: #f4e3fe;
}

.social{
  display: flex;
  gap: 0.8em;
  flex-direction: row-reverse;
}
.social a{
  width: 5.5%;
}

.social img{
  width: 95%;
  cursor: pointer;
}

@media(max-width:600px){
  footer{
    display: grid;
    grid-template-columns: 100%;
    padding: 3%;
    gap: 2em;
  }

  .first{
    order: 2;
  }


.second{
    order: 1;
  }
  .second-a{
    flex-direction: column;
  }

  .social{
    flex-direction: row;
    width: 12.5em;
  }
}