* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* .navbar {
    position: fixed;
    background-color: transparent;
    width: 100%;
    height: 80px;
    left: 0px;
    z-index: 1100;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: height 0.3s, background-color 0.3s; 
} */
body, body.layout1 {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
    flex: 1;
}
.nav-menu {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
}
.logo a{
    align-items: center;
    height: 65%;
    margin-right: 50px;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
}
.logo a img {
    height: 170px;
    max-width: 100%;
    max-height: 100%;
}
.main-menu ul, .user-menu ul{
    display: flex;
    gap: 15px;
    list-style: none;
}
.main-menu ul a, .user-menu ul a{
    text-decoration: none;
    color: black;
    font-size: 16px;
    padding: 6px 10px;
    transition: color 0.3s ease;
}
.menu-list1 li a:hover,
.user-menu-list li a:hover {
  color: #b22222; 
}
.user-menu{
    margin-left: auto;
}
.hero-section {
    min-height: 50vh;
    /* background: url('/images/stylish-happy-girl-shopping-portrait-modern-woman-with-shop-bag-laughing-smiling-satisfied.jpg') no-repeat center center/cover; */
    text-align: center;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
}
.hero-content h1 {
    font-size: 4rem;
}
.hero-section p {
    font-size: 3rem;
}
.footer {
  background-color: #222;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}

/* .hero-content a button {

} */