@import url("https://fonts.googleapis.com/css2?family=Lato&family=Lemon&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato&family=Lemon&family=Manrope&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Lemon", serif;
  font-family: "Lato", sans-serif;
  font-family: "Lemon", serif;
  font-family: "Manrope", sans-serif;
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
}

.navbar .logo img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
}
.navbar .logo {
  font-weight: bolder;
  margin-left: 2%;
  display: flex;
  align-items: center;
  gap: 15px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(20px);
  background-color: rgb(5, 4, 4);
  height: 100px;
  z-index: 1;
  top: 0;
  color: white;
  /* box-shadow: 0 0 2px black; */
}

.nav li {
  display: inline-flex;
  justify-content: space-evenly;
  padding-inline: 10px;
}

.nav li a {
  text-decoration: none;
  color: white;
  padding: 10px;
  font-size: 20px;
}

header li .login {
  background-color: rgb(27, 241, 27);
  border-radius: 5px;
  padding: 10px 5px;
  color: black;
  display: flex;
  justify-content: space-between;
  border: none;
  box-shadow: 0 0 5px grey;
}

header li .login:hover {
  transition: all 0.2s ease-in;
  background-color: green;
  color: white;
}
.nav li a:hover {
  transition: 0.3s ease-in-out;
  background-color: rgb(45, 45, 45);
  border-radius: 5px;
}
body {
  background-image: url("background-img.jpg");
  background-size: cover;
  flex-wrap: wrap;
}

.container .pricing {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 5vh;
  flex-wrap: wrap;
}
.pricing h2 {
  color: black;
  border-radius: 10px;
  /* box-shadow: 0 0 5px black; */
  padding: 10px;
}
.pricing .items {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}
.pricing .items img {
  height: 100px;
  width: 100px;
}

.ironing,
.dryclean,
.wash {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
  border-radius: 5px;
  width: 600px;
  height: 300px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.836);
  cursor: pointer;
  box-shadow: 0 0 10px rgb(0, 0, 0);
}

.items .content {
  margin-top: 20px;
}

.ironing:hover,
.dryclean:hover,
.wash:hover {
  background-color: rgb(255, 255, 255);
  transition: 0.3s ease-in-out;
  /* gap: 50px; */
}

.items .heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: rgb(252, 166, 53);
}

footer .social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social .icons a box-icon {
  cursor: pointer;
}
footer .social a {
  padding-inline: 5px;
}

.wp .wplogo img {
  height: 90px;
  width: 100px;
  cursor: pointer;
}

.navbar span {
  display: none;
  cursor: pointer;
}

.location {
  text-decoration: none;
  color: black;
  position: relative;
  top: 10px;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  gap: 10px;
  font-style: normal;
  width: 160px;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 0 5px black;
}

.location:hover {
  transition: 0.5s;
  /* color: rgb(208, 0, 0); */
  background-color: greenyellow;
}

.wp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
}
.drop-down {
  display: none;
}

.drop-down li {
  list-style: none;
  padding: 10px 0;
}

.drop-down span {
  position: relative;
  float: right;
}

.promise {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 10%;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 20px;
}

.afford,
.satisfy,
.assurance {
  display: flex;
  gap: 20px;
  align-items: center;
}

@keyframes slideLeft {
  from {
    transform: translateX(200%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes grow {
  50% {
    transform: scale(1.08, 1.08);
  }
}

@media only screen and (max-width: 800px) {
  .navbar h1 {
    font-size: 25px;
    font-weight: 900;
  }

  .navbar {
    display: flex;
    height: 100px;
    text-align: center;
  }

  .navbar .logo img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
  }

  .navbar .nav {
    display: none;
    flex-direction: column;
    background-color: rgb(218, 217, 217);
  }

  .drop-down.show {
    background-image: url("https://findit-resources.s3.amazonaws.com/forums/1697139328702.png");
    background-size: cover;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    position: fixed;
    top: 0;
    box-shadow: 0 0 20px black;
    z-index: 2;
    animation-name: slideDown;
    animation-duration: 0.5s;
  }

  @keyframes slideDown {
    from {
      transform: translateY(-100%);
    }

    to {
      transform: translateY(0);
    }
  }

  .drop-down .nav-heading img {
    width: 35%;
    border: 2px solid rgb(47, 47, 47);
    padding: 10px;
    border-radius: 20px;
  }

  .drop-down .nav-heading {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: white; */
  }

  .drop-down .nav2 li a {
    padding: 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
    /* font-weight: bold; */
    font-size: 15px;
    text-transform: uppercase;
    border-radius: 10px;
  }
  .drop-down .nav2 li a:hover {
    box-shadow: 0 0 5px black;
    background-color: rgba(255, 255, 255, 0.436);
  }

  .dropmain {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.715);
    backdrop-filter: blur(2px);
  }

  .drop-down .nav2 {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }

  .nav2 box-icon {
    margin-right: 10px;
  }

  .drop-down span {
    align-self: flex-end;
    position: absolute;
    cursor: pointer;
    top: 20px;
    right: 10px;
  }
  .drop-down .login {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .drop-down .login:hover {
    box-shadow: 0 0 10px black;
  }

  .container.show {
    filter: blur(5px);
  }

  .pricing .items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }

  .ironing,
  .dryclean,
  .wash {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 340px;
    height: 250px;
    padding-bottom: 20px;
  }

  .ironing:hover,
  .dryclean:hover,
  .wash:hover {
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .wp .wplogo img {
    width: 65px;
    height: 55px;
  }
  .wp .phone img {
    width: 50px;
    height: 50px;
  }

  .wp {
    display: flex;
    flex-direction: column;
    bottom: 10px;
  }

  .pricing .items img {
    height: 50px;
    width: 50px;
  }

  .navbar span {
    display: block;
    margin-right: 10px;
  }
}
