
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Impact';
}

a {
    text-decoration: none;
    color: black;
}

h1 {
    font-size: 50px;
    line-height: 64px;
    color: white;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: white;
}

h4 {
    font-size: 20px;
    color: lightgray;
}

h6 {
    font-weight: 700;
    font-size: 20px;
}

p {
    font-size: 16px;
    color: lightgray;
    margin: 15px 0 20px 0; 
}

.section-p1 {
    padding: 40px 80px;
}

.section-p2 {
    padding: 120px 100px
}

.section-p3 {
    padding: 0 80px 60px 80px;
}

.section-m1 {
    margin: 40px 0;
}

button.normal{
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: black;
    background-color: white;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}

body {
    width: 100%;
    background-color: black;
}

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background-color: black;
    box-shadow: 0 5px 15px darkgray;
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}

#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: 22px;
    font-weight: 600;
    color: white;
    transition: 0.3s ease;
}
#navbar li a:hover,
#navbar li a.active {
    color: gray;
}

#navbar li a.active::after,
#navbar li a:hover::after{
    content: "";
    width: 30%;
    height: 2px;
    background-color: gray;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

#mobile {
    display: none;
    align-items: center;
}

#close {
    display: none;
}

#man {
    background-image: url("Img/skatepark.jpeg");
    text-align: center;
    height: 30vh;
    width: 100%;
    background-size: cover;
    background-position: top 40% right 0;
    padding: 10px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#man h4 {
    color: maroon;
    font-size: 36px;
}



#hero {
    background-image: url("Img/Nyjah1.jpeg");
    text-align: left;
    height: 45vh;
    width: 100%;
    background-size: cover;
    background-position: top 80% right 0;
    padding: 10px 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

#hero a {
    color: white;
}

#hero h4 {
    padding-bottom: 15px;
}

#hero h1 {
    color: lightblue;
}

#hero button {
    background-color: gray;
    font-size: 16px;
    color: white;
    border: 0;
    padding: 10px 50px;
    border-radius: 10px;
    transition: 0.2s ease;
    cursor: pointer;
}

#hero button:hover {
    color: black;
    background-color: lightgray;
}

#feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #444444;
}

#feature img {
    height: 100px;
    width: 100px;
}

#feature .fe-box {
    background-color: white;
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
    border: 1px solid #cce7d0;
    border-radius: 4px;
    margin: 15px 0px;
    cursor: pointer;
    transition: 0.2s ease;
}

#feature .fe-box:hover {
    box-shadow: 10px 10px 54px gray;
}

#product1 {
    text-align: center;
}

#product1 .pro-container{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
}

#product1 .pro{
    background-color: lightgray;
    width: 250px;
    padding: 10px 12px;
    border: 5px solid gray;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px darkgray;
    margin: 15px 0;
    transition: 0.2s ease;
}

#product1 .pro:hover{
    box-shadow: 20px 20px 30px white;
}

#product1 .pro img{ 
    height: 200px;
    width: 200px;
    border-radius: 20px;
}

#banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    background-image: url("Img/luan.jpeg");
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: top 20% right 25%;
    padding: 10px 60px;
    box-shadow: 0 5px 15px darkgray;
}

#banner button {
    padding: 10px 10px;
    margin: 10px 0 20px 0;
    border-radius: 10px;
}

#banner h4 {
    color: darkred;
    margin: 10px 0;
    font-size: 34px;
}

#banner a {
    color: white;
    margin: 10px 0;
    
}

#banner h2 {
    color: white;
    margin: 10px 0;
}

#banner button:hover {
    background-color: darkgray;
    color: white;
}

#newsletter{
    background-color: darkgray;
    background-image: url("Img/dylan.jpeg");
    text-align: right;
    height: 50vh;
    width: 100%;
    background-size: cover;
    background-position: top 80% right 0;
    padding: 10px 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    box-shadow: 0 5px 15px darkgray;
}

#newsletter h4{
    color: white;
    font-size: 32px;
}

#newsletter p{
    color: lightblue;
    font-size: 28px;
}

#newsletter button{
    padding: 10px 10px;
    margin: 10px 0 20px 0;
    border-radius: 10px;
}

#newsletter button:hover {
    color: white;
    background-color: darkgray;
}


#featureshop{
    text-align: center;
}

#featureshop .pro-container{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
}

#featureshop .pro{
    background-color: lightgray;
    width: 250px;
    padding: 10px 12px;
    border: 5px solid gray;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px darkgray;
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
}

#featureshop .pro img{ 
    height: 200px;
    width: 200px;
    border-radius: 20px;
}

#featureshop .pro .des{
    text-align: start;
    padding: 10px 0;
}

#featureshop .pro .des i {
    font-size: 12px;
    color: gold;
}

#featureshop .pro .des h4 {
    padding-top: 7px;
    font-size: 18px;
    font-weight: 700;
    color: black;
}



#featureshop .pro .cart {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    background-color: white;
    font-weight: 500;
    color: lightblue;
    border: 1px solid white;
    position: absolute;
    bottom: 20px;
    right: 10px;
}

#featureshop .pro:hover{
    box-shadow: 20px 20px 30px white;
}

#featureshop .pro .cart:hover{
    background-color: lightblue;
}

#calculator {
    background-color: lightgray;
    padding: 30px 0;
    width: 500px;
    height: 500px;
    margin: 70px auto;
    border-radius: 50px;
    border: 5px solid #444444;
    box-shadow: 20px 20px 30px darkgray;
    cursor: default;
}

#calculator .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

#calculator .row button {
    margin: 30px 0 0 0;
    padding: 10px 20px;
    font-size: 28px;
    border-radius: 20px;
    background-color: black;
    color: white;
}

#calculator .row button:hover {
    background-color: white;
    color: black;
    cursor: pointer;
    transition: 0.4s ease-in-out;
}

#calculator .row input {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 20px;
    cursor: text;
}

#calculator h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    color:black;
    margin: 0 0 10px 0;
}

#calculator p {
    color: black;
    font-size: 18px;
}

#calculator select {
    text-decoration: none;
    font-size: 28px;
    font-family: impact;
    width: 250px;
    margin: 20px 0 0 0;
    border-radius: 20px;
    background-color: white;
}

#calculator2 {
    background-color: lightgray;
    padding: 30px 0;
    width: 500px;
    height: 600px;
    margin: 70px auto;
    border-radius: 50px;
    border: 5px solid #444444;
    box-shadow: 20px 20px 30px darkgray;
    cursor: default;
}

#calculator2 .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

#calculator2 .row button {
    margin: 30px 0 0 0;
    padding: 10px 20px;
    font-size: 28px;
    border-radius: 20px;
    background-color: black;
    color: white;
}

#calculator2 .row button:hover {
    background-color: white;
    color: black;
    cursor: pointer;
    transition: 0.4s ease-in-out;
}

#calculator2 .row input {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 20px;
    cursor: text;
}

#calculator2 h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    color:black;
    margin: 0 0 10px 0;
}

#calculator2 p {
    color: black;
    font-size: 18px;
}

#calculator2 select {
    text-decoration: none;
    font-size: 28px;
    font-family: impact;
    width: 250px;
    margin: 20px 0 0 0;
    border-radius: 20px;
    background-color: white;
}

@media (max-width:799px) {
    .section-p1 {
        padding: 10px 10px;
    }

    #feature {
        padding: 40px 10px;
    }

    #header {
        padding: 20px 25px;
    }

    #header img{
        height: 55px;
        width: 152px;
    }

    #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: black;
        padding: 80px 0 0 10px;
        transition: 0.3s;
    }

    #navbar.active{
        right: -100px;
        box-shadow: 0 40px 60px lightgray;
    }

    #navbar li{
        margin-bottom: 25px;
    }

    #mobile {
        display: flex;
        align-items: center;
    }

    #mobile i{
        color: white;
        font-size: 24;
        padding-left: 20px;
    }

    #close{
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: white;
        font-size: 24;
    }

    #hero {
        height: 30vh;
        padding: 10px 25px;
        background-position: top 55% right 50%;
    }

    #hero h1 {
        color: white;
        padding: 0px;
    }

    #hero h4 {
        padding-bottom: 0px;
        padding-top: 10px
    }

    #hero h2 {
        font-size: 24px;
        color: lightblue;
    }

    #hero p {
        color: white;
    }

    #feature {
        justify-content: center;
        background-color: #222222;
    }

    #feature h6 {
        font-size: 12px;
    }

    #feature img {
        height: 50px;
        width: 50px;
    }

    #feature .fe-box {
        margin: 15px 15px;
        width: 110px;
        height: 110px;
    }

    #product1 .pro-container{
        justify-content: center;
    }

    #product1 .pro{
        margin: 15px;
    }

    #banner {
        height: 30vh;
    }

    #banner h4{
        font-size: 18px;
    }

    #banner h2{
        font-size: 20px;
    }

    #banner a{
        font-size: 20px;
    }

    h1 {
        font-size: 20px;
        line-height: 64px;
        color: white;
    }
    
    h2 {
        font-size: 18px;
        line-height: 54px;
        color: white;
    }
    
    h4 {
        font-size: 16px;
        color: lightgray;
    }
    
    h6 {
        font-weight: 700;
        font-size: 20px;
    }
    
    p {
        font-size: 16px;
        color: lightgray;
        margin: 15px 0 20px 0; 
    }

    #hero button {
        font-size: 10px;
        padding: 5px 25px;
    }
    
    
    #product1 h6{
        font-size: 12px;
    }

    #product1 .pro{
        width: 130px;
    }

    
    #product1 .pro img{ 
        height: 100px;
        width: 100px;
    }

    #newsletter {
    background-position: top 50% right 50%;
    }

    #featureshop .pro{
        width: 130px;
    }
    
    #featureshop .pro img{ 
        height: 100px;
        width: 100px;
    }
    
    #featureshop .pro .cart {
        width: 20px;
        height: 20px;
    }
}