@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}  
body{
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
}
.hero-section{
    height: 90vh;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -93px;
    display: flex;
    align-items: center;
    justify-content:left;
    color: #fff;
}
/* Site Header */
.site-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 70px;
}
.header-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.main-menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:20px;
}
.main-menu li {
    list-style: none;
}
.main-menu a {
    color: #fff;
    font-weight: 600;
    position: relative;
    text-decoration: none;
}
.main-menu a:before {
    content: '';
    width: 0;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: width 0.5s ease-in-out;
}
.main-menu a:hover:before {
    width: 100%;
}
.cta ul{
    display: flex;
    align-items: center;
    gap:20px;
}
.cta ul a{
    color: #fff;
}
.s-appt{
    background-color: #d59913;
    padding: 14px;
}
/* Header Two */
.header-inner{
    background-color: #000000;
}
.header-cart{
    background-color: #d59913;
    height: 52px;
    width: 52px;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.cart-box img{
    filter: invert(1) brightness(2);
    margin-top: 16px;
}
.cart-count{
    position: absolute;
    color: #d59913;
    background-color: white;
    border-radius: 100%;
    font-size: 14px;
    top: 4px;
    right: 6px;
    padding: 0px 7px;
}