* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.top-navbar {
  width: 100%;
  height: 7vh;
  background-color: #a9a9a926;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: space-between;
}
.top-icons {
  margin-left: 45px;
}
.top-icons i {
  font-size: 20px;
  color: rgb(3, 204, 187);
  margin-left: 10px;
  cursor: pointer;
}
.other-links {
  margin-right: 33px;
}
.other-links i {
  color: rgb(3, 204, 187);
  font-size: 20px;
  margin-left: 10px;
  cursor: pointer;
}
#btn-login {
  width: 100px;
  border: 2px solid rgb(3, 204, 187);
  color: rgb(3, 204, 187);
  font-weight: bold;
  border-radius: 5px;
  height: 5vh;
  transition: 0.5s ease;
  cursor: pointer;
}
#btn-login a {
  text-decoration: none;
  color: rgb(3, 204, 187);
  transition: 0.5s ease;
}
#btn-login a:hover {
  background-color: rgb(8, 244, 224);
  color: white;
}
#btn-login:hover {
  background-color: rgb(7, 228, 209);
  color: white;
}
#btn-signup {
  width: 100px;
  border: 2px solid rgb(3, 204, 187);
  color: rgb(3, 204, 187);
  font-weight: bold;
  border-radius: 5px;
  height: 5vh;
  transition: 0.5s ease;
  cursor: pointer;
}
#btn-signup a {
  text-decoration: none;
  color: rgb(3, 204, 187);
  transition: 0.5s ease;
}
#btn-signup a:hover {
  background-color: rgb(3, 204, 187);
  color: white;
}
#btn-signup:hover {
  background-color: rgb(9, 230, 212);
  color: white;
}
@media screen and (max-width: 500px) {
  .top-icons {
    margin-left: 30px;
  }
  .top-icons i {
    font-size: 15px;
  }
  .other-links i {
    font-size: 15px;
  }
  #btn-login {
    width: 60px;
    height: 5vh;
  }
  #btn-signup {
    width: 70px;
    height: 5vh;
  }
}
@media screen and (max-width: 350px) {
  .top-icons {
    margin-left: 10px;
  }
  .top-icons i {
    font-size: 10px;
  }
  .other-links {
    margin-right: 10px;
  }
  .other-links i {
    font-size: 10px;
  }
  #btn-login {
    width: 50px;
    height: 5vh;
    font-size: 13px;
  }
  #btn-signup {
    width: 60px;
    height: 5vh;
    font-size: 13px;
  }
}
@media screen and (max-width: 350px) {
  .top-icons {
    margin-left: 5px;
  }
  .top-icons i {
    font-size: 12px;
  }
  .other-links {
    margin-right: 10px;
  }
  .other-links i {
    font-size: 12px;
  }
  #btn-login {
    width: 40px;
    height: 5vh;
    font-size: 10px;
  }
  #btn-signup {
    width: 50px;
    height: 5vh;
    font-size: 10px;
  }
}
/* home section */
.home-section {
  width: 100%;
  height: 93vh;
  background-color: #a9a9a926;
}
/* navbar */
#navbar {
  background-color: rgb(3, 204, 187);
  font-size: 20px;
  font-family: "Roboto Slab", serif;
}
#navbar .nav-link {
  color: white;
  font-weight: bold;
  margin-left: 5px;
  transition: 0.5s ease;
}
#navbar .nav-link:hover {
  color: white;
  border-radius: 5px;
}
.dropdown li a {
  color: white;
}
#search-btn {
  color: white;
  border: 1px solid white;
}
#search-btn:hover {
  background-color: rgb(11, 237, 218);
}
/* navbar */
/* home content */
.home {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 0;
  font-family: "Roboto Slab", serif;
}
.home .img {
  flex: 1 1 400px;
}
.home .img img {
  width: 100%;
}
.home .content {
  flex: 1 1 400px;
  margin-top: 30px;
}
.content h3 {
  margin-left: 70px;
  font-size: 50px;
  text-shadow: 1px 1px 1px black;
  color: rgb(3, 204, 187);
  font-weight: bold;
}

.content h1 {
  margin-left: 70px;
  font-size: 50px;
  text-shadow: 1px 1px 1px black;
  color: rgb(3, 204, 187);
  font-weight: bold;
}
.content h3 span {
  font-size: 40px;
}
.content p {
  margin-left: 70px;
  color: rgb(3, 204, 187);
}
.content #shopnow {
  background-color: rgb(251, 252, 251);
  margin-left: 70px;
  width: 200px;
  height: 38px;
  border: 2px solid rgb(3, 204, 187);
  font-weight: bold;
  transition: 0.5s ease;
  cursor: pointer;
}
.content #shopnow:hover {
  background-color: rgb(3, 204, 187);
  color: white;
}
@media screen and (max-width: 800px) {
  .content h3 {
    margin-left: 50px;
    font-size: 40px;
  }
  .content p {
    margin-left: 50px;
  }
  .content #shopnow {
    margin-left: 50px;
  }
}
@media screen and (max-width: 570px) {
  .content h3 {
    margin-left: 20px;
  }
  .content p {
    margin-left: 20px;
  }
  .content #shopnow {
    margin-left: 20px;
  }
}
@media screen and (max-width: 799px) {
  .home-section {
    height: 150vh;
  }
}
@media screen and (max-width: 550px) {
  .home-section {
    height: 100vh;
  }
}
/* home content */
/* home section */

/* offer */
#offer {
  margin-top: 50px;
}
#offer i {
  font-size: 60px;
  color: rgb(3, 204, 187);
}
/* offer */

/* footer */
#footer {
  padding: 0 0 30px 0;
  color: #d0d0d0;
  font-size: 14px;
  background: rgb(3, 204, 187);
  font-family: "Roboto Slab", serif;
}
#footer .footer-top {
  padding: 60px 0 30px;
  background: rgb(3, 204, 187);
  color: white;
}
#footer .footer-top .footer-contact h3 {
  color: white;
  text-shadow: 1px 1px 1px black;
}
#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 300px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact p {
  font-size: 20px;
  margin: 0;
  color: white;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top h4 {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul li {
  padding-right: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding: 0;
}
#footer .footer-top .footer-links ul li a {
  color: white;
  line-height: 2;
}
#footer .footer-top .socail-links a {
  font-size: 18px;
  display: inline-block;
  color: white;
  line-height: 1;
  padding-right: 4px;
  border-radius: 50px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.5s ease;
}
#footer .copyright {
  text-align: center;
  float: left;
}
#footer .credits {
  float: right;
  text-align: center;
}
/* footer */
