@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100;200;300;400&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'League Spartan', sans-serif;
    
}
h1{
    font-size: 50px;
    line-height: 64px;
    color: #222;
}
h2{
    font-size: 46px;
    line-height: 54px;
    color: #222;
}
h4{
    font-size: 20px;
    color: #222;
}
h6{
    font-weight: 700;
    font-size: 12px;
}
p{
    font-size: 18px;
    color: #465b52;
    margin: 15px 0 20px 0;
}
.section-p1{
    padding: 40px 80px;
}
.section-m1{
    margin: 40px 0;
}

body{
    width: 100%;
}

/* Header */
#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 80px;
    background-color: #e3e6f3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9999;
}
#navbar{
    display: flex;
    align-items: center;
    justify-content: center;
}
#navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;
}
#navbar li a{
    text-decoration: none;
    font-size: 25px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.3s ease;
}
#navbar li a:hover,
#navbar li a.active{
    color: #088178;
}
#navbar li a.active::after,
#navbar li a:hover::after{
    content: "";
    width: 30%;
    height: 2px;
    background-color: #088178;
    position: absolute;
    left: 20px;
    bottom: -4px;
}
#mobile{
    display: none;
    align-items: center;
}
#close{
    display: none;
}
@media (max-width:799px) {
    #navbar{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px; 
        height: 100vh;
        width: 300px;
        background-color: #e3e6f3;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 10px;
        transition: 0.3s;
    }
    #navbar li{
        margin-bottom: 25px;
    }
    #mobile{
        display: flex;
        align-items: center;
    }
    #mobile i{
        color: #1a1a1a;
        font-size: 24px;
        padding-left: 20px;
    }
    #mobile .fa-cart-shopping{
        padding-top: 10px;
    }
    #navbar.active{
        right: 0px;
    }
    #close{
        position: absolute;
        top: 30px;
        left: 30px;
        color: #1a1a1a;
        font-size: 24px;
        display: initial;
    }
    #lg-bag{
        display: none;
    }
}
@media (max-width:477px){
    #header{
        padding: 10px 30px;
    }
    #hero{
        padding: 0 20px;
        background-position: 40%;
    }
   

}

/* Hero section */
#hero{
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)), url(img/photo_2023-01-17_13-43-03.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 85vh;
    width: 100%;
    padding: 0 80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}
#hero h4,
#hero h2,
#hero h1,
#hero p{
    color: #e3e6f3;
}
#hero h4{
    padding-bottom: 15px;
}
#hero button{
    background-color: chocolate;
    color: #e3e6f3;
    border: 0;
    padding: 1em;
    cursor: pointer;
    font-size: 15px;
    border-radius: 30px;
}
#hero button:hover{
    background-color: #088178;
}

/* Feature */
#feature{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
#feature .fe-box{
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 255, .2);
    border: 1px solid #cce7d0;
    border-radius: 4px;
    margin: 15px 0;
}
#feature .fe-box h6{
    font-size: 18px;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    color: #088178;
    background-color: blanchedalmond;
}
@media screen and (max-width: 767px) {
    #feature .fe-box {
        width: 100%;
    }
}

/* Featured Products */
#product1 .pro-container{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
}
#product1 .pro{
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #cce7d0;
    background-color: #e3e6f3;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
}
#product1 .pro:hover{
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}
#product1 .pro img{
    width: 100%;
    border-radius: 20px;  
}
#product1 .pro .des{
    text-align: start;
    padding: 10px 0;
}
#product1 .pro .des span{
    color: #606063;
    font-size: 12px; 
}
#product1 .pro .des h5{
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 20px;
}
#product1 .pro .des i{
    font-size: 12px;
    color: rgb(243, 181, 25);
}
#product1 .pro .des h4{
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #088178;
}
#product1 .pro .cart{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    /* background-color: blanchedalmond; */
    color: #088178;
    border: 1px solid #cce7d0;
    position: absolute;
    bottom: 20px;
    right: 10px;
}
@media screen and (max-width: 768px) {
    #product1 .pro {
        width: 48%;
    }
}

@media screen and (max-width: 480px) {
    #product1 .pro {
        width: 100%;
    }
}
@media screen and (max-width: 480px) {
    #product1 h2 {
        font-size: 24px;
    }

    #product1 p {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* Banner */
#banner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(to right, rgba(255, 149, 0, 0.7), rgba(255, 2, 2, 0)), url(img/front-view-woman-with-shopping-bag-concept.jpg);
    background-repeat: no-repeat;
    width: 100%;
    height: 40vh;
    background-position: 10%;
}
#banner h2{
    font-size: 40px;
    padding: 10px 0;
}
#banner .normal{
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #1a1a1a;
    background-color: #e3e6f3;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}
#banner .normal:hover{
    background-color: #088178;
    color: #e3e6f3;
}


#sm-banner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#sm-banner .banner-box {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)), url(img/banner/IMG_2204.JPG);
    background-size: cover;
    background-position: center;
    height: 400px;
    min-width: 580px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
}

#sm-banner .banner-box2 {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)), url(img/banner/IMG_2392.JPG);
    background-size: cover;
    background-position: center;
    height: 400px;
    min-width: 580px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
}

.banner-box h4,
.banner-box h2,
.banner-box span,
.banner-box2 h4,
.banner-box2 h2,
.banner-box2 span {
    color: #e3e6f3;
    padding: 8px;
}

#sm-banner .banner-box2 button,
#sm-banner .banner-box button {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #1a1a1a;
    background-color: #e3e6f3;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}

#sm-banner .banner-box2 button:hover,
#sm-banner .banner-box button:hover {
    background-color: #088178;
    color: #e3e6f3;
}

@media screen and (max-width: 768px) {
    #sm-banner .banner-box,
    #sm-banner .banner-box2 {
        min-width: 100%;
        height: 300px;
        padding: 20px;
        align-items: center;
    }

    #sm-banner .banner-box {
        background-position: center center;
    }

    #sm-banner .banner-box2 {
        background-position: center center;
    }

    #sm-banner .banner-box h4,
    #sm-banner .banner-box h2,
    #sm-banner .banner-box span,
    #sm-banner .banner-box2 h4,
    #sm-banner .banner-box2 h2,
    #sm-banner .banner-box2 span {
        padding: 8px;
        font-size: 14px;
    }

    #sm-banner .banner-box button,
    #sm-banner .banner-box2 button {
        font-size: 12px;
        padding: 10px 20px;
    }
}

@media screen and (max-width: 480px) {
    #sm-banner .banner-box,
    #sm-banner .banner-box2 {
        min-width: 100%;
        height: 200px;
        padding: 15px;
        align-items: center;
    }

    #sm-banner .banner-box {
        background-position: center center;
    }

    #sm-banner .banner-box2 {
        background-position: center center;
    }

    #sm-banner .banner-box button,
    #sm-banner .banner-box2 button {
        font-size: 10px;
        padding: 8px 16px;
    }
}

#banner3{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
}
#banner3 .banner-box{
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)), url(img/banner/masati.jpg);
    background-size: cover;
    background-position: center;
    height: 30vh;
    min-width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    margin-bottom: 20px;
}
#banner3 .banner-box2{
    background-image: linear-gradient(to right, rgba(0, 76, 182, 0.553), rgba(0, 0, 0, 0)), url(img/banner/DSC_5089.JPG);
}
#banner3 .banner-box3{
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)), url(img/products/hats/capes1.jpg);
}
#banner3 h2{
    color: #e3e6f3;
    font-weight: 900;
    font-size: 22px;
}
#banner3 h3{
    color: chocolate;
    font-weight: 800;
    font-size: 22px;
}


/* newsletter */
#newsletter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-image: url(img/wp2367992-dexters-laboratory-wallpapers.jpg);
    background-repeat: no-repeat;
    background-position: 20% 30%;
}

#newsletter h4 {
    font-size: 30px;
    font-weight: 700;
    color: #e3e6f3;
}

#newsletter p {
    font-size: 20px;
    font-weight: 600;
    color: #818ea0;
}

#newsletter p span {
    color: chocolate;
}

#newsletter input {
    height: 3.125rem;
    padding: 0 1.25em;
    font-size: 20px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
    outline: none;
}

#newsletter button {
    font-size: 16px;
    font-weight: 600;
    padding: 15px 30px;
    color: #1a1a1a;
    background-color: chocolate;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
    margin-top: 5px;
}

#newsletter button:hover {
    background-color: #088178;
    color: #e3e6f3;
}

@media screen and (max-width: 768px) {
    #newsletter {
        flex-direction: column;
        background-position: center center;
        text-align: center;
    }

    #newsletter h4 {
        font-size: 24px;
    }

    #newsletter p {
        font-size: 18px;
    }

    #newsletter input {
        margin: 10px 0;
    }

    #newsletter button {
        font-size: 14px;
        padding: 12px 25px;
    }
}

@media screen and (max-width: 480px) {
    #newsletter {
        background-size: cover;
    }

    #newsletter h4 {
        font-size: 20px;
    }

    #newsletter p {
        font-size: 16px;
    }

    #newsletter input {
        padding: 0.7em;
    }

    #newsletter button {
        font-size: 12px;
        padding: 10px 20px;
    }
}

/* Footer */
footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

footer .logo {
    margin-bottom: 30px;
}

footer h4 {
    font-size: 25px;
    padding-bottom: 20px;
}

footer p {
    font-size: 20px;
    margin: 0 0 8px 0;
}

footer a {
    font-size: 18px;
    text-decoration: none;
    color: #222;
    margin-bottom: 10px;
}

footer .follow {
    margin-top: 20px;
}

footer .follow i {
    color: #606063;
    padding-right: 4px;
    cursor: pointer;
    padding-bottom: 4px;
    font-size: 25px;
}

footer .col-payments .row img {
    border: 1px solid #088178;
    border-radius: 6px;
}

footer .follow i:hover,
footer a:hover {
    color: #088178;
}

.col a {
    font-size: 20px;
}

footer .copyright {
    width: 100%;
    text-align: center;
}

@media screen and (max-width: 768px) {
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    footer .col {
        margin-bottom: 40px;
    }

    footer .col-payments .row img {
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    footer h4 {
        font-size: 20px;
    }

    footer p {
        font-size: 16px;
    }

    footer a {
        font-size: 14px;
    }

    footer .follow i {
        font-size: 20px;
    }

    .col a {
        font-size: 16px;
    }

    footer .col-payments .row img {
        max-width: 80%;
    }
}

/* SHOP PAGE HTML */
#page-hero{
    background-image: url(img/shopping-concept-close-up-portrait-young-beautiful-attractive-redhair-girl-smiling-looking-camera.jpg);
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}
#page-hero h2{
    color: #1a1a1a;
}
#page-hero h2 span{
    color: rgb(255, 108, 2);
}
@media screen and (max-width: 320px) {
    #page-hero h2 {
        font-size: 24px;
    }
}
@media screen and (max-width: 240px) {
    #page-hero h2 {
        font-size: 18px;
    }
}

/* Single Product */
#prodetails{
    display: flex;
    margin-top: 20px;
}
#prodetails .single-pro-details{
    width: 50%;
    padding-top: 30px;
    font-size: 20px;
}
#prodetails .single-pro-image{
    border: 0.5rem solid #088178;
}
#prodetails .single-pro-details h4{
    padding: 40px 0 20px 0;
}
#prodetails .single-pro-details h2{
    font-size: 26px;
}
#prodetails .single-pro-details select{
    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;
    font-size: 15px;
}
#prodetails .single-pro-details input{
    width: 50px;
    height: 47px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
}
#prodetails .single-pro-details input:focus{
    outline: none;
}
#prodetails .single-pro-image{
    width: 40%;
    margin-right: 40px;
}
.single-pro-details button{
    background-color: #088178;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;  
}
.single-pro-details button:hover{
    background-color: chocolate;
}
.single-pro-details span{
    line-height: 25px;
    
}
@media (max-width: 477px){
    #prodetails {
        display: flex;
        flex-direction: column;
    }
    #prodetails .single-pro-image {
        width: 100%;
        margin-right: 0px;
    }
    #prodetails .single-pro-details {
        width: 100%;
        margin-right: 40px;
    }
}
