@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: '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: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px ;
    color: #ffff;
}

.section-m1 {
    margin: 40px 0;
}

#header .hlogo{
    box-shadow: -10px 10px 10px black;
}

button.normal{
    font-size: 20px;
    font-weight: 900;
    padding: 12px 30px;
    color: #270018;
    background-color: pink;
    border-radius: 1000px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}
button.white{
    font-size: 13px;
    font-weight: 900;
    padding: 11px 18px;
    color: #270018;
    background-color: transparent;
    border-radius: 1000px;
    cursor: pointer;
    border: 3px solid white;
    outline: none;
    transition: 0.2s;
}

button.white:hover{
    box-shadow: 5px 5px 10px crimson;
    color: navy;
    background-color: #9CF6FB;
    border: 5px solid #001365;
}
body {
    width: 100%;
}


/* Header start */

#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #cad2f4;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar img {
    border-radius: 30%;
}

/* parent tag, just down */
#navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #182a49;
    transition: 0.5s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: crimson;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: crimson;
    position: absolute;
    bottom: -4px;
    left: 20px;
}


/* Home Page */
#hero {
    background-image: url("logo/hero.png");
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: top 0 right 0 ;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#hero h4 {
    padding-bottom: 15px;
    color: chocolate;
}

#hero h1 {
    color: crimson;
}

#hero h2,p {
    color: chartreuse;
}

#hero button {
    background-color: transparent;
    color:aqua;
    border: .25px solid crimson;
    border-radius: 50px;
    padding: 14px 70px 14px 70px;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 1000;
    font-size:30px;
    font-family: 'Times New Roman', Times, serif;
    box-shadow: 0 0 30px 0 crimson,
    0 0 30px 0 crimson, 0 0 10px 0 crimson inset;
}  

#hero button:hover {
    color:orange;
}

#feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}


#feature .fe-box {
    background-color:chocolate;
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
    border: 1px solid #cad2f4;
    border-radius: 20px;
    margin: 15px 0;

}

#feature .fe-box:hover {
    box-shadow: 10px 10px 54px rgba(0, 251, 255, 0.808) ;
}

#feature .fe-box h6{
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 14px;
    font-family: 'Times New Roman';
    font-size: medium;
    color: aqua;
    background-color: #182a49;
}

#feature .fe-box h6:hover {
    box-shadow: 2px 2px 11px yellow;
}

#feature .fe-box img {
    width: 100%;
    margin-bottom: 10px;
}

#feature .fe-box:nth-child(2) {
    background-color: coral;
}

#feature .fe-box:nth-child(3) {
    background-color:chocolate;
}

#feature .fe-box:nth-child(4) {
    background-color: coral;
}

#feature .fe-box:nth-child(5) {
    background-color: chocolate;
}

#feature .fe-box:nth-child(6) {
    background-color: coral;
}

#product1 {
    text-align: center;
}

#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: 3px solid chocolate;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.755);
    margin: 15px 0;
    transition: 2s ease;
    position: relative;
}

#product1 .pro img {
    width: 100%;
    border-radius: 20px;
}

#product1 .pro:hover {
    box-shadow: 0 0 30px aquamarine;
}

#product1 .pro h4{
    color: orange;
    padding-top: 10px;
    font-size: 15px;
    font-weight: 700;
}

#product1 .pro .description .brand {
    color: gold;
    font-size: 20px;
}

#product1 .pro .description{
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .description h5{
    padding-top:  7px;
    font-size: 14px;
}


#product1 .pro .description i{
    font-size: 15px;
    color: #f3b519
}

#product1 h2{
    color: #f3b519;
}

#product1 .pro .cartsym{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 90px;
    color:red;
    background-color: white;
    font-weight: 600;
    border: 1px solid white;
    box-shadow: 1px 1px 10px #9CF6FB;
    position: absolute;
    bottom: 20px;
    right: 10px;
}


#banner {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: center;
    text-align: center;
    background-image: url("logo/banner2.png");
    width: 100%;
    height: 50vh;
    background-size: cover;
    background-position: center;
}

#banner h4{
    color: RED;
    font-size: 27px;
}

#banner h2{
    color: gold;
    padding: 10px 0;
    font-size: 30px;
}

#banner h3{
    color:navy;
    padding: 10px 0;
    font-size: 40px;
}

#banner h1{
    color: #001365;
    font-size: 60px;
}

#banner h1 span{
    color: deeppink;
}

#banner h1 span:hover{
    color:darkorange;
    cursor: pointer;
}

#banner button:hover {
    background-color: #270018;
    color: gold;
    box-shadow: 5px 5px 15px darkblue;
}

#n-banner .banner-box {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("logo/banner4.jpg");
    min-width: 580px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
    border: 2px solid white;
}

#n-banner .banner-box2 {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("logo/banner8.jpg");
    min-width: 580px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
    border: 2px solid white;
}

#n-banner {
    display: flex;
    justify-content: space-between;
    flex-direction:row;
    padding: 30 80px;
}

#n-banner .banner-box h4{
    color: rgb(255, 0, 0);
    font-size: 30px;
    font-weight: 500;
}

#n-banner .banner-box2 h4{
    color: navy;
    font-size: 30px;
    font-weight: 700;
}

#n-banner .banner-box h2{
    color: #350067;
    font-size: 80px;
    font-weight: 500;
    padding-top: 5%;
}

#n-banner .banner-box2 h2{
    color: #ff00fb;
    font-size: 60px;
    font-weight: 500;
    padding-top: 5%;
}

#n-banner span{
    color: #38770e;
    font-size: 30px;
    font-weight: 400;
    padding-top: 3%;
    padding-bottom: 15px;
}

#n-banner .banner-box2 span{
    color: #fffb00;
    font-size: 30px;
    font-weight: 400;
    padding-top: 3%;
    padding-bottom: 15px;
}

h2 {
    color: white;
    font-size: 30px;
}

#banner3{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
}

#banner3 .banner-boxa {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("functions/O1.jpg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#banner3 h2{
    color: white;
    font-weight: 900;
    font-size: 30px;
}

#banner3 h3{
    color: maroon;
    font-weight: 800;
    font-size: 20px;
}

#banner3 .banner-boxb {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("functions/O2.jpeg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#banner3 .banner-boxc {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("functions/O4.jpg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#news {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-image: url("functions/newss.png");
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color: #171510;
}

#news h3{
    font-size: 22px;
    font-weight: 700;
    color: white;
}

#news p {
    color: #fffb00;
    font-weight: 700;
    font-size: 20px;
}

#news p span {
    color: navy;
    background-color: oldlace;
}

#news .form {
    display: flex;
    width: 40%;
}

#news input {
    height: 3.125rem;
    padding: 0 1.25em;
    font-size: 14px;
    width: 100%;
    border: 1PX solid transparent;
    border-radius: 100px;
    outline: none;
    box-shadow: 0 0 25px aqua;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#news input:hover {
    cursor: pointer;
    box-shadow: 0 0 25px crimson ;
}

#news button {
    background-color: white ;
    color: aqua;
    box-shadow: 0 0 25px aqua;
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}


#news button:hover {
    cursor: pointer;
    box-shadow: 0 0 20px crimson ;
    color: crimson;
}

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: 14px;
    padding: 20px;

}

footer p {
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer a {
    font-size: 13px;
    text-decoration: none;
    color: aqua;
    margin-bottom: 10px;
}

footer .follow {
    margin-top: 20px;
}

footer .follow i{
    color: aqua;
    padding-right: 4px;
    cursor: pointer;
    font-size: 25px;
}

footer .install .row i{
    font-size: 40px;
    box-shadow: 0 0 10px lawngreen;
    border-radius: 20px;
    padding: 5px 5px 5px 5px;
    width: auto;
    height: auto;
    white-space: normal;
}

footer .install i{
    margin: 10px 0 15px 0;
}

footer .follow i:hover,
footer a:hover{
    color: crimson;
}

footer .copyright{
    width: 100%;
    text-align: center;
}


/* Shop Page */

#page-header {
    background-image: url("logo/banner_shop.png");
    width: 100%;
    height: 90vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}

#page-header h2{
    color: white;
    font-size: 60px;
}

#page-header p{
    color: chocolate;
    font-size: 20px;
    font-weight: 700;
}

#page-header span{
    color:cyan;
    font-size: 30px;
    font-weight: 700;
}

#pageination {
    text-align: center;
}

#pageination a {
    text-decoration: none;
    background-color: white;
    padding: 15px 20px;
    border-radius: 50px;
    color: #350067;
    font-weight: 900;
}

#pageination .a {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}


#pageination .b {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

#pageination .c {
    border-radius: 50px;
}
/* BLOG PAGE */

#page-header.blogh {
    background-image: url("blog/B2.jpg");
    width: 100%;
    height: 50vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}

#page-header.blogh h2 {
    color: brown;
    font-weight: 600;
    font-size: 60px;
}

#page-header.blogh p {
    color:navy ;
    font-weight: 900;
    font-size: 20px;
}

#blogp {
    padding: 150px 150px 0 150px;
}

#blogp .blog-box {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding-bottom: 90px;
}

#blogp .blog-img {
    width: 50%;
    margin-right: 40px;
}

#blogp img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

#blogp .blog-details {
    width: 50%;
}
#blogp .blog-details h4{
    color: yellow;
}
#blogp .blog-details p{
    color: beige;
}

#blogp .blog-details a {
    text-decoration: none;
    font-size: 11px;
    color: whitesmoke;
    font-weight: 700;
    position: relative;
    transition: 0.3s;

}

#blogp .blog-details a::after {
    content:"";
    width: 50px;
    height: 1px;
    background-color: whitesmoke;
    position: absolute;
    top: 4px;
    right: -60px;
    transition: 0.3s;
}

#blogp .blog-details a:hover {
    color: chocolate;
}

#blogp .blog-details a:hover::after {
    background-color: chocolate;
}


#blogp .blog-box h1{
    color: #c0c0c0a5;
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 70px;
    font-weight: 700;
    z-index: -9;
}


/* About Us */

#page-header.about-head{
    background-image: url("about/main-banner.jpg");
    width: 100%;
    height: 40vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}

#page-header.about-head p{
    color: black;
    font-size: x-large;
}

#page-header.about-head h2{
    color:navy;
}


#about-head {
    display: flex;
    align-items: center;
}

#about-head div {
    padding-left: 40px;
}

#about-head img {
    width: 50%;
    height: auto;
}

#about-app {
    text-align: center;
}

#about-app .video {
    width: 70%;
    height: 100%;
    margin: 30px auto 0px auto;
}

#about-app .video video {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

#about-app h1{
    color: beige;
}
#about-app h4{
    color: sandybrown;
}










/* BLOG HTML SHEET */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: '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: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px ;
    color: #ffff;
}

.section-m1 {
    margin: 40px 0;
}

#header .hlogo{
    box-shadow: -10px 10px 10px black;
}

button.normal{
    font-size: 20px;
    font-weight: 900;
    padding: 12px 30px;
    color: #270018;
    background-color: pink;
    border-radius: 1000px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}
button.white{
    font-size: 13px;
    font-weight: 900;
    padding: 11px 18px;
    color: #270018;
    background-color: transparent;
    border-radius: 1000px;
    cursor: pointer;
    border: 3px solid white;
    outline: none;
    transition: 0.2s;
}

button.white:hover{
    box-shadow: 5px 5px 10px crimson;
    color: navy;
    background-color: #9CF6FB;
    border: 5px solid #001365;
}
body {
    width: 100%;
}


/* Header start */

#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #cad2f4;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar img {
    border-radius: 30%;
}

/* parent tag, just down */
#navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #182a49;
    transition: 0.5s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: crimson;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: crimson;
    position: absolute;
    bottom: -4px;
    left: 20px;
}


/* Home Page */
#hero {
    background-image: url("logo/hero.png");
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: top 0 right 0 ;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#hero h4 {
    padding-bottom: 15px;
    color: chocolate;
}

#hero h1 {
    color: crimson;
}

#hero h2,p {
    color: chartreuse;
}

#hero button {
    background-color: transparent;
    color:aqua;
    border: .25px solid crimson;
    border-radius: 50px;
    padding: 14px 70px 14px 70px;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 1000;
    font-size:30px;
    font-family: 'Times New Roman', Times, serif;
    box-shadow: 0 0 30px 0 crimson,
    0 0 30px 0 crimson, 0 0 10px 0 crimson inset;
}  

#hero button:hover {
    color:orange;
}

#feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}


#feature .fe-box {
    background-color:chocolate;
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
    border: 1px solid #cad2f4;
    border-radius: 20px;
    margin: 15px 0;

}

#feature .fe-box:hover {
    box-shadow: 10px 10px 54px rgba(0, 251, 255, 0.808) ;
}

#feature .fe-box h6{
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 14px;
    font-family: 'Times New Roman';
    font-size: medium;
    color: aqua;
    background-color: #182a49;
}

#feature .fe-box h6:hover {
    box-shadow: 2px 2px 11px yellow;
}

#feature .fe-box img {
    width: 100%;
    margin-bottom: 10px;
}

#feature .fe-box:nth-child(2) {
    background-color: coral;
}

#feature .fe-box:nth-child(3) {
    background-color:chocolate;
}

#feature .fe-box:nth-child(4) {
    background-color: coral;
}

#feature .fe-box:nth-child(5) {
    background-color: chocolate;
}

#feature .fe-box:nth-child(6) {
    background-color: coral;
}

#product1 {
    text-align: center;
}

#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: 3px solid chocolate;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.755);
    margin: 15px 0;
    transition: 2s ease;
    position: relative;
}

#product1 .pro img {
    width: 100%;
    border-radius: 20px;
}

#product1 .pro:hover {
    box-shadow: 0 0 30px aquamarine;
}

#product1 .pro h4{
    color: orange;
    padding-top: 10px;
    font-size: 15px;
    font-weight: 700;
}

#product1 .pro .description .brand {
    color: gold;
    font-size: 20px;
}

#product1 .pro .description{
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .description h5{
    padding-top:  7px;
    font-size: 14px;
}


#product1 .pro .description i{
    font-size: 15px;
    color: #f3b519
}

#product1 h2{
    color: #f3b519;
}

#product1 .pro .cartsym{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 90px;
    color:red;
    background-color: white;
    font-weight: 600;
    border: 1px solid white;
    box-shadow: 1px 1px 10px #9CF6FB;
    position: absolute;
    bottom: 20px;
    right: 10px;
}


#banner {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: center;
    text-align: center;
    background-image: url("logo/banner2.png");
    width: 100%;
    height: 50vh;
    background-size: cover;
    background-position: center;
}

#banner h4{
    color: RED;
    font-size: 27px;
}

#banner h2{
    color: gold;
    padding: 10px 0;
    font-size: 30px;
}

#banner h3{
    color:navy;
    padding: 10px 0;
    font-size: 40px;
}

#banner h1{
    color: #001365;
    font-size: 60px;
}

#banner h1 span{
    color: deeppink;
}

#banner h1 span:hover{
    color:darkorange;
    cursor: pointer;
}

#banner button:hover {
    background-color: #270018;
    color: gold;
    box-shadow: 5px 5px 15px darkblue;
}

#n-banner .banner-box {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("logo/banner4.jpg");
    min-width: 580px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
    border: 2px solid white;
}

#n-banner .banner-box2 {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("logo/banner8.jpg");
    min-width: 580px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
    border: 2px solid white;
}

#n-banner {
    display: flex;
    justify-content: space-between;
    flex-direction:row;
    padding: 30 80px;
}

#n-banner .banner-box h4{
    color: rgb(255, 0, 0);
    font-size: 30px;
    font-weight: 500;
}

#n-banner .banner-box2 h4{
    color: navy;
    font-size: 30px;
    font-weight: 700;
}

#n-banner .banner-box h2{
    color: #350067;
    font-size: 80px;
    font-weight: 500;
    padding-top: 5%;
}

#n-banner .banner-box2 h2{
    color: #ff00fb;
    font-size: 60px;
    font-weight: 500;
    padding-top: 5%;
}

#n-banner span{
    color: #38770e;
    font-size: 30px;
    font-weight: 400;
    padding-top: 3%;
    padding-bottom: 15px;
}

#n-banner .banner-box2 span{
    color: #fffb00;
    font-size: 30px;
    font-weight: 400;
    padding-top: 3%;
    padding-bottom: 15px;
}

h2 {
    color: white;
    font-size: 30px;
}

#banner3{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
}

#banner3 .banner-boxa {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("functions/O1.jpg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#banner3 h2{
    color: white;
    font-weight: 900;
    font-size: 30px;
}

#banner3 h3{
    color: maroon;
    font-weight: 800;
    font-size: 20px;
}

#banner3 .banner-boxb {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("functions/O2.jpeg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#banner3 .banner-boxc {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("functions/O4.jpg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#news {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-image: url("functions/newss.png");
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color: #171510;
}

#news h3{
    font-size: 22px;
    font-weight: 700;
    color: white;
}

#news p {
    color: #fffb00;
    font-weight: 700;
    font-size: 20px;
}

#news p span {
    color: navy;
    background-color: oldlace;
}

#news .form {
    display: flex;
    width: 40%;
}

#news input {
    height: 3.125rem;
    padding: 0 1.25em;
    font-size: 14px;
    width: 100%;
    border: 1PX solid transparent;
    border-radius: 100px;
    outline: none;
    box-shadow: 0 0 25px aqua;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#news input:hover {
    cursor: pointer;
    box-shadow: 0 0 25px crimson ;
}

#news button {
    background-color: white ;
    color: aqua;
    box-shadow: 0 0 25px aqua;
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}


#news button:hover {
    cursor: pointer;
    box-shadow: 0 0 20px crimson ;
    color: crimson;
}

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: 14px;
    padding: 20px;

}

footer p {
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer a {
    font-size: 13px;
    text-decoration: none;
    color: aqua;
    margin-bottom: 10px;
}

footer .follow {
    margin-top: 20px;
}

footer .follow i{
    color: aqua;
    padding-right: 4px;
    cursor: pointer;
    font-size: 25px;
}

footer .install .row i{
    font-size: 40px;
    box-shadow: 0 0 10px lawngreen;
    border-radius: 20px;
    padding: 5px 5px 5px 5px;
    width: auto;
    height: auto;
    white-space: normal;
}

footer .install i{
    margin: 10px 0 15px 0;
}

footer .follow i:hover,
footer a:hover{
    color: crimson;
}

footer .copyright{
    width: 100%;
    text-align: center;
}


/* Shop Page */

#page-header {
    background-image: url("logo/banner_shop.png");
    width: 100%;
    height: 90vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}

#page-header h2{
    color: white;
    font-size: 60px;
}

#page-header p{
    color: chocolate;
    font-size: 20px;
    font-weight: 700;
}

#page-header span{
    color:cyan;
    font-size: 30px;
    font-weight: 700;
}

#pageination {
    text-align: center;
}

#pageination a {
    text-decoration: none;
    background-color: white;
    padding: 15px 20px;
    border-radius: 50px;
    color: #350067;
    font-weight: 900;
}

#pageination .a {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}


#pageination .b {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

#pageination .c {
    border-radius: 50px;
}
/* BLOG PAGE */

#page-header.blogh {
    background-image: url("blog/B2.jpg");
    width: 100%;
    height: 50vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}

#page-header.blogh h2 {
    color: brown;
    font-weight: 600;
    font-size: 60px;
}

#page-header.blogh p {
    color:navy ;
    font-weight: 900;
    font-size: 20px;
}

#blogp {
    padding: 150px 150px 0 150px;
}

#blogp .blog-box {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding-bottom: 90px;
}

#blogp .blog-img {
    width: 50%;
    margin-right: 40px;
}

#blogp img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

#blogp .blog-details {
    width: 50%;
}
#blogp .blog-details h4{
    color: yellow;
}
#blogp .blog-details p{
    color: beige;
}

#blogp .blog-details a {
    text-decoration: none;
    font-size: 11px;
    color: whitesmoke;
    font-weight: 700;
    position: relative;
    transition: 0.3s;

}

#blogp .blog-details a::after {
    content:"";
    width: 50px;
    height: 1px;
    background-color: whitesmoke;
    position: absolute;
    top: 4px;
    right: -60px;
    transition: 0.3s;
}

#blogp .blog-details a:hover {
    color: chocolate;
}

#blogp .blog-details a:hover::after {
    background-color: chocolate;
}


#blogp .blog-box h1{
    color: #c0c0c0a5;
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 70px;
    font-weight: 700;
    z-index: -9;
}


/* About Page */

/* Contact us page */






/* CART CSS SHEET */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: '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: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px ;
    color: #ffff;
}

.section-m1 {
    margin: 40px 0;
}

#header .hlogo{
    box-shadow: -10px 10px 10px black;
}

button.normal{
    font-size: 20px;
    font-weight: 900;
    padding: 12px 30px;
    color: #270018;
    background-color: pink;
    border-radius: 1000px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}
button.white{
    font-size: 13px;
    font-weight: 900;
    padding: 11px 18px;
    color: #270018;
    background-color: transparent;
    border-radius: 1000px;
    cursor: pointer;
    border: 3px solid white;
    outline: none;
    transition: 0.2s;
}

button.white:hover{
    box-shadow: 5px 5px 10px crimson;
    color: navy;
    background-color: #9CF6FB;
    border: 5px solid #001365;
}
body {
    width: 100%;
}


/* Header start */

#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #cad2f4;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar img {
    border-radius: 30%;
}

/* parent tag, just down */
#navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #182a49;
    transition: 0.5s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: crimson;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: crimson;
    position: absolute;
    bottom: -4px;
    left: 20px;
}


/* Home Page */
#hero {
    background-image: url("logo/hero.png");
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: top 0 right 0 ;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#hero h4 {
    padding-bottom: 15px;
    color: chocolate;
}

#hero h1 {
    color: crimson;
}

#hero h2,p {
    color: chartreuse;
}

#hero button {
    background-color: transparent;
    color:aqua;
    border: .25px solid crimson;
    border-radius: 50px;
    padding: 14px 70px 14px 70px;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 1000;
    font-size:30px;
    font-family: 'Times New Roman', Times, serif;
    box-shadow: 0 0 30px 0 crimson,
    0 0 30px 0 crimson, 0 0 10px 0 crimson inset;
}  

#hero button:hover {
    color:orange;
}

#feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}


#feature .fe-box {
    background-color:chocolate;
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
    border: 1px solid #cad2f4;
    border-radius: 20px;
    margin: 15px 0;

}

#feature .fe-box:hover {
    box-shadow: 10px 10px 54px rgba(0, 251, 255, 0.808) ;
}

#feature .fe-box h6{
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 14px;
    font-family: 'Times New Roman';
    font-size: medium;
    color: aqua;
    background-color: #182a49;
}

#feature .fe-box h6:hover {
    box-shadow: 2px 2px 11px yellow;
}

#feature .fe-box img {
    width: 100%;
    margin-bottom: 10px;
}

#feature .fe-box:nth-child(2) {
    background-color: coral;
}

#feature .fe-box:nth-child(3) {
    background-color:chocolate;
}

#feature .fe-box:nth-child(4) {
    background-color: coral;
}

#feature .fe-box:nth-child(5) {
    background-color: chocolate;
}

#feature .fe-box:nth-child(6) {
    background-color: coral;
}

#product1 {
    text-align: center;
}

#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: 3px solid chocolate;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.755);
    margin: 15px 0;
    transition: 2s ease;
    position: relative;
}

#product1 .pro img {
    width: 100%;
    border-radius: 20px;
}

#product1 .pro:hover {
    box-shadow: 0 0 30px aquamarine;
}

#product1 .pro h4{
    color: orange;
    padding-top: 10px;
    font-size: 15px;
    font-weight: 700;
}

#product1 .pro .description .brand {
    color: gold;
    font-size: 20px;
}

#product1 .pro .description{
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .description h5{
    padding-top:  7px;
    font-size: 14px;
}


#product1 .pro .description i{
    font-size: 15px;
    color: #f3b519
}

#product1 h2{
    color: #f3b519;
}

#product1 .pro .cartsym{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 90px;
    color:red;
    background-color: white;
    font-weight: 600;
    border: 1px solid white;
    box-shadow: 1px 1px 10px #9CF6FB;
    position: absolute;
    bottom: 20px;
    right: 10px;
}


#banner {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: center;
    text-align: center;
    background-image: url("logo/banner2.png");
    width: 100%;
    height: 50vh;
    background-size: cover;
    background-position: center;
}

#banner h4{
    color: RED;
    font-size: 27px;
}

#banner h2{
    color: gold;
    padding: 10px 0;
    font-size: 30px;
}

#banner h3{
    color:navy;
    padding: 10px 0;
    font-size: 40px;
}

#banner h1{
    color: #001365;
    font-size: 60px;
}

#banner h1 span{
    color: deeppink;
}

#banner h1 span:hover{
    color:darkorange;
    cursor: pointer;
}

#banner button:hover {
    background-color: #270018;
    color: gold;
    box-shadow: 5px 5px 15px darkblue;
}

#n-banner .banner-box {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("logo/banner4.jpg");
    min-width: 580px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
    border: 2px solid white;
}

#n-banner .banner-box2 {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("logo/banner8.jpg");
    min-width: 580px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
    border: 2px solid white;
}

#n-banner {
    display: flex;
    justify-content: space-between;
    flex-direction:row;
    padding: 30 80px;
}

#n-banner .banner-box h4{
    color: rgb(255, 0, 0);
    font-size: 30px;
    font-weight: 500;
}

#n-banner .banner-box2 h4{
    color: navy;
    font-size: 30px;
    font-weight: 700;
}

#n-banner .banner-box h2{
    color: #350067;
    font-size: 80px;
    font-weight: 500;
    padding-top: 5%;
}

#n-banner .banner-box2 h2{
    color: #ff00fb;
    font-size: 60px;
    font-weight: 500;
    padding-top: 5%;
}

#n-banner span{
    color: #38770e;
    font-size: 30px;
    font-weight: 400;
    padding-top: 3%;
    padding-bottom: 15px;
}

#n-banner .banner-box2 span{
    color: #fffb00;
    font-size: 30px;
    font-weight: 400;
    padding-top: 3%;
    padding-bottom: 15px;
}

h2 {
    color: white;
    font-size: 30px;
}

#banner3{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
}

#banner3 .banner-boxa {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("functions/O1.jpg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#banner3 h2{
    color: white;
    font-weight: 900;
    font-size: 30px;
}

#banner3 h3{
    color: maroon;
    font-weight: 800;
    font-size: 20px;
}

#banner3 .banner-boxb {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("functions/O2.jpeg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#banner3 .banner-boxc {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("functions/O4.jpg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#news {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-image: url("functions/newss.png");
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color: #171510;
}

#news h3{
    font-size: 22px;
    font-weight: 700;
    color: white;
}

#news p {
    color: #fffb00;
    font-weight: 700;
    font-size: 20px;
}

#news p span {
    color: navy;
    background-color: oldlace;
}

#news .form {
    display: flex;
    width: 40%;
}

#news input {
    height: 3.125rem;
    padding: 0 1.25em;
    font-size: 14px;
    width: 100%;
    border: 1PX solid transparent;
    border-radius: 100px;
    outline: none;
    box-shadow: 0 0 25px aqua;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#news input:hover {
    cursor: pointer;
    box-shadow: 0 0 25px crimson ;
}

#news button {
    background-color: white ;
    color: aqua;
    box-shadow: 0 0 25px aqua;
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}


#news button:hover {
    cursor: pointer;
    box-shadow: 0 0 20px crimson ;
    color: crimson;
}

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: 14px;
    padding: 20px;

}

footer p {
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer a {
    font-size: 13px;
    text-decoration: none;
    color: aqua;
    margin-bottom: 10px;
}

footer .follow {
    margin-top: 20px;
}

footer .follow i{
    color: aqua;
    padding-right: 4px;
    cursor: pointer;
    font-size: 25px;
}

footer .install .row i{
    font-size: 40px;
    box-shadow: 0 0 10px lawngreen;
    border-radius: 20px;
    padding: 5px 5px 5px 5px;
    width: auto;
    height: auto;
    white-space: normal;
}

footer .install i{
    margin: 10px 0 15px 0;
}

footer .follow i:hover,
footer a:hover{
    color: crimson;
}

footer .copyright{
    width: 100%;
    text-align: center;
}


/* Shop Page */

#page-header {
    background-image: url("logo/banner_shop.png");
    width: 100%;
    height: 90vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}

#page-header h2{
    color: white;
    font-size: 60px;
}

#page-header p{
    color: chocolate;
    font-size: 20px;
    font-weight: 700;
}

#page-header span{
    color:cyan;
    font-size: 30px;
    font-weight: 700;
}

#pageination {
    text-align: center;
}

#pageination a {
    text-decoration: none;
    background-color: white;
    padding: 15px 20px;
    border-radius: 50px;
    color: #350067;
    font-weight: 900;
}

#pageination .a {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}


#pageination .b {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

#pageination .c {
    border-radius: 50px;
}
/* BLOG PAGE */

#page-header.blogh {
    background-image: url("blog/B2.jpg");
    width: 100%;
    height: 50vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}

#page-header.blogh h2 {
    color: brown;
    font-weight: 600;
    font-size: 60px;
}

#page-header.blogh p {
    color:navy ;
    font-weight: 900;
    font-size: 20px;
}

#blogp {
    padding: 150px 150px 0 150px;
}

#blogp .blog-box {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding-bottom: 90px;
}

#blogp .blog-img {
    width: 50%;
    margin-right: 40px;
}

#blogp img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

#blogp .blog-details {
    width: 50%;
}
#blogp .blog-details h4{
    color: yellow;
}
#blogp .blog-details p{
    color: beige;
}

#blogp .blog-details a {
    text-decoration: none;
    font-size: 11px;
    color: whitesmoke;
    font-weight: 700;
    position: relative;
    transition: 0.3s;

}

#blogp .blog-details a::after {
    content:"";
    width: 50px;
    height: 1px;
    background-color: whitesmoke;
    position: absolute;
    top: 4px;
    right: -60px;
    transition: 0.3s;
}

#blogp .blog-details a:hover {
    color: chocolate;
}

#blogp .blog-details a:hover::after {
    background-color: chocolate;
}


#blogp .blog-box h1{
    color: #c0c0c0a5;
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 70px;
    font-weight: 700;
    z-index: -9;
}


/* About Us */

#page-header.about-head{
    background-image: url("about/main-banner.jpg");
    width: 100%;
    height: 40vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}

#page-header.about-head p{
    color: black;
    font-size: x-large;
}

#page-header.about-head h2{
    color:navy;
}


#about-head {
    display: flex;
    align-items: center;
}

#about-head div {
    padding-left: 40px;
}

#about-head img {
    width: 50%;
    height: auto;
}

#about-app {
    text-align: center;
}

#about-app .video {
    width: 70%;
    height: 100%;
    margin: 30px auto 0px auto;
}

#about-app .video video {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

#about-app h1{
    color: beige;
}
#about-app h4{
    color: sandybrown;
}

/* Contact us page */
#contact-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#contact-details .details {
    width: 40%;
}

#contact-details .details span,
#form-details form span {
    font-size: 12px;
}

#contact-details .details h2,
#form-details form h2 {
    font-size: 26px;
    line-height: 35px;
    padding: 28px 0;

}

#contact-details .details h3 {
    font-size: 16px;
    padding-bottom: 15px;

}

#contact-details .details li{
    list-style: none;
    display: flex;
    padding: 10px 0;
}

#contact-details .details li i{
    font-size: 14px;
    padding: 22px;
}

#contact-details .details li p{
    margin: 0;
    font-size: 14px;
}


#contact-details .map{
    width: 55%;
    height: 400px;
}

#contact-details .map iframe{
    width: 100%;
    height: 100%;
}



#form-details form{
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


#form-details form input,
#form-details form textarea{
    width: 100%;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
}

#form-details form button{
    background-color: #9CF6FB;
    color: navy;
    border-radius: 20px;
    border: 2px solid chocolate;
}
#form-details form button:hover{
    background-color: navy;
    color:beige;
    border-radius: 20px;
    border: 2px solid aqua;
    box-shadow: 2px 2px 10px crimson;
}

/*cart page*/
#cart table{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    white-space: nowrap;
}

#cart table img{
    width: 70px;
}

#cart table td:nth-child(1){
    width: 100px;
    text-align: center;
}

#cart table td:nth-child(2){
    width: 150px;
    text-align: center;
}

#cart table td:nth-child(3){
    width: 250px;
    text-align: center;
}

#cart table td:nth-child(4),
#cart table td:nth-child(5),
#cart table td:nth-child(6){
    width: 150px;
    text-align: center;
}

#cart table td:nth-child(5) input{
    width: 70px;
    padding: 10px 5px 10px 15px;
}


#cart table thead{
    border: 3px solid crimson;
    box-shadow: 3px 3px 5px beige;
}

#cart table thead td{
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    padding: 18px 0;
}


#cart table tbody tr td {
    padding-top: 18px;
}

#cart table tbody  td {
    font-size: 15px;
    border: 3px solid crimson;
    box-shadow: 3px 3px 5px beige;
}


#cart-add{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#coupon {
    width: 50%;
    margin-bottom: 30px;
}


#coupon h3{
    padding-bottom: 15px;
}

#coupon input{
    padding: 10px 20px;
    outline: none;
    width: 60%;
    margin-right: 10px;
    border: 1px solid white;
    border-radius: 20px;
}

#coupon button{
    background-color: #9CF6FB;
    color: #270018;
    height: 50px;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 30px;
}

#coupon button:hover{
    background-color:#270018 ;
    color: lawngreen;
    box-shadow: 2px 2px 10px crimson;
    border: 2px solid gold;
}

#subtotal{
    width:50%;
    margin-bottom: 30px;
    border: 5px solid orangered;
    padding: 30px;
    box-shadow: 2px 2px 5px orange;
}

#subtotal table{
    border-collapse: collapse;
    width: 100%;
    margin: 20px;
}

#subtotal table td{
    width: 50%;
    border: 3px solid orange;
    padding: 10px;
    font-size: 13px;
    box-shadow: 0 -4px 5px orangered;
    font-size: 20px;
}

#subtotal h3{
    font-size: 30px;
    color: lightgreen;
    padding-bottom: 15px;
}

#Pbutton {
    box-shadow: 2px 2px 20px #cad2f4;
}

#Pbutton:hover {
    box-shadow: 2px 2px 30px lawngreen;
    border: 3px solid chocolate;
    background-color: #270018 ;
    color: #9CF6FB;
}

#cart table i{
    font-size: xx-large;
    color: whitesmoke;
}






/* CONATCT CSS SHEET */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: '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: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px ;
    color: #ffff;
}

.section-m1 {
    margin: 40px 0;
}

#header .hlogo{
    box-shadow: -10px 10px 10px black;
}

button.normal{
    font-size: 20px;
    font-weight: 900;
    padding: 12px 30px;
    color: #270018;
    background-color: pink;
    border-radius: 1000px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}
button.white{
    font-size: 13px;
    font-weight: 900;
    padding: 11px 18px;
    color: #270018;
    background-color: transparent;
    border-radius: 1000px;
    cursor: pointer;
    border: 3px solid white;
    outline: none;
    transition: 0.2s;
}

button.white:hover{
    box-shadow: 5px 5px 10px crimson;
    color: navy;
    background-color: #9CF6FB;
    border: 5px solid #001365;
}
body {
    width: 100%;
}


/* Header start */

#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #cad2f4;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar img {
    border-radius: 30%;
}

/* parent tag, just down */
#navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #182a49;
    transition: 0.5s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: crimson;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: crimson;
    position: absolute;
    bottom: -4px;
    left: 20px;
}


/* Home Page */
#hero {
    background-image: url("logo/hero.png");
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: top 0 right 0 ;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#hero h4 {
    padding-bottom: 15px;
    color: chocolate;
}

#hero h1 {
    color: crimson;
}

#hero h2,p {
    color: chartreuse;
}

#hero button {
    background-color: transparent;
    color:aqua;
    border: .25px solid crimson;
    border-radius: 50px;
    padding: 14px 70px 14px 70px;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 1000;
    font-size:30px;
    font-family: 'Times New Roman', Times, serif;
    box-shadow: 0 0 30px 0 crimson,
    0 0 30px 0 crimson, 0 0 10px 0 crimson inset;
}  

#hero button:hover {
    color:orange;
}

#feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}


#feature .fe-box {
    background-color:chocolate;
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
    border: 1px solid #cad2f4;
    border-radius: 20px;
    margin: 15px 0;

}

#feature .fe-box:hover {
    box-shadow: 10px 10px 54px rgba(0, 251, 255, 0.808) ;
}

#feature .fe-box h6{
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 14px;
    font-family: 'Times New Roman';
    font-size: medium;
    color: aqua;
    background-color: #182a49;
}

#feature .fe-box h6:hover {
    box-shadow: 2px 2px 11px yellow;
}

#feature .fe-box img {
    width: 100%;
    margin-bottom: 10px;
}

#feature .fe-box:nth-child(2) {
    background-color: coral;
}

#feature .fe-box:nth-child(3) {
    background-color:chocolate;
}

#feature .fe-box:nth-child(4) {
    background-color: coral;
}

#feature .fe-box:nth-child(5) {
    background-color: chocolate;
}

#feature .fe-box:nth-child(6) {
    background-color: coral;
}

#product1 {
    text-align: center;
}

#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: 3px solid chocolate;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.755);
    margin: 15px 0;
    transition: 2s ease;
    position: relative;
}

#product1 .pro img {
    width: 100%;
    border-radius: 20px;
}

#product1 .pro:hover {
    box-shadow: 0 0 30px aquamarine;
}

#product1 .pro h4{
    color: orange;
    padding-top: 10px;
    font-size: 15px;
    font-weight: 700;
}

#product1 .pro .description .brand {
    color: gold;
    font-size: 20px;
}

#product1 .pro .description{
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .description h5{
    padding-top:  7px;
    font-size: 14px;
}


#product1 .pro .description i{
    font-size: 15px;
    color: #f3b519
}

#product1 h2{
    color: #f3b519;
}

#product1 .pro .cartsym{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 90px;
    color:red;
    background-color: white;
    font-weight: 600;
    border: 1px solid white;
    box-shadow: 1px 1px 10px #9CF6FB;
    position: absolute;
    bottom: 20px;
    right: 10px;
}


#banner {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: center;
    text-align: center;
    background-image: url("logo/banner2.png");
    width: 100%;
    height: 50vh;
    background-size: cover;
    background-position: center;
}

#banner h4{
    color: RED;
    font-size: 27px;
}

#banner h2{
    color: gold;
    padding: 10px 0;
    font-size: 30px;
}

#banner h3{
    color:navy;
    padding: 10px 0;
    font-size: 40px;
}

#banner h1{
    color: #001365;
    font-size: 60px;
}

#banner h1 span{
    color: deeppink;
}

#banner h1 span:hover{
    color:darkorange;
    cursor: pointer;
}

#banner button:hover {
    background-color: #270018;
    color: gold;
    box-shadow: 5px 5px 15px darkblue;
}

#n-banner .banner-box {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("logo/banner4.jpg");
    min-width: 580px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
    border: 2px solid white;
}

#n-banner .banner-box2 {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("logo/banner8.jpg");
    min-width: 580px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
    border: 2px solid white;
}

#n-banner {
    display: flex;
    justify-content: space-between;
    flex-direction:row;
    padding: 30 80px;
}

#n-banner .banner-box h4{
    color: rgb(255, 0, 0);
    font-size: 30px;
    font-weight: 500;
}

#n-banner .banner-box2 h4{
    color: navy;
    font-size: 30px;
    font-weight: 700;
}

#n-banner .banner-box h2{
    color: #350067;
    font-size: 80px;
    font-weight: 500;
    padding-top: 5%;
}

#n-banner .banner-box2 h2{
    color: #ff00fb;
    font-size: 60px;
    font-weight: 500;
    padding-top: 5%;
}

#n-banner span{
    color: #38770e;
    font-size: 30px;
    font-weight: 400;
    padding-top: 3%;
    padding-bottom: 15px;
}

#n-banner .banner-box2 span{
    color: #fffb00;
    font-size: 30px;
    font-weight: 400;
    padding-top: 3%;
    padding-bottom: 15px;
}

h2 {
    color: white;
    font-size: 30px;
}

#banner3{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
}

#banner3 .banner-boxa {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("functions/O1.jpg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#banner3 h2{
    color: white;
    font-weight: 900;
    font-size: 30px;
}

#banner3 h3{
    color: maroon;
    font-weight: 800;
    font-size: 20px;
}

#banner3 .banner-boxb {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("functions/O2.jpeg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#banner3 .banner-boxc {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("functions/O4.jpg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#news {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-image: url("functions/newss.png");
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color: #171510;
}

#news h3{
    font-size: 22px;
    font-weight: 700;
    color: white;
}

#news p {
    color: #fffb00;
    font-weight: 700;
    font-size: 20px;
}

#news p span {
    color: navy;
    background-color: oldlace;
}

#news .form {
    display: flex;
    width: 40%;
}

#news input {
    height: 3.125rem;
    padding: 0 1.25em;
    font-size: 14px;
    width: 100%;
    border: 1PX solid transparent;
    border-radius: 100px;
    outline: none;
    box-shadow: 0 0 25px aqua;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#news input:hover {
    cursor: pointer;
    box-shadow: 0 0 25px crimson ;
}

#news button {
    background-color: white ;
    color: aqua;
    box-shadow: 0 0 25px aqua;
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}


#news button:hover {
    cursor: pointer;
    box-shadow: 0 0 20px crimson ;
    color: crimson;
}

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: 14px;
    padding: 20px;

}

footer p {
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer a {
    font-size: 13px;
    text-decoration: none;
    color: aqua;
    margin-bottom: 10px;
}

footer .follow {
    margin-top: 20px;
}

footer .follow i{
    color: aqua;
    padding-right: 4px;
    cursor: pointer;
    font-size: 25px;
}

footer .install .row i{
    font-size: 40px;
    box-shadow: 0 0 10px lawngreen;
    border-radius: 20px;
    padding: 5px 5px 5px 5px;
    width: auto;
    height: auto;
    white-space: normal;
}

footer .install i{
    margin: 10px 0 15px 0;
}

footer .follow i:hover,
footer a:hover{
    color: crimson;
}

footer .copyright{
    width: 100%;
    text-align: center;
}


/* Shop Page */

#page-header {
    background-image: url("logo/banner_shop.png");
    width: 100%;
    height: 90vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}

#page-header h2{
    color: white;
    font-size: 60px;
}

#page-header p{
    color: chocolate;
    font-size: 20px;
    font-weight: 700;
}

#page-header span{
    color:cyan;
    font-size: 30px;
    font-weight: 700;
}

#pageination {
    text-align: center;
}

#pageination a {
    text-decoration: none;
    background-color: white;
    padding: 15px 20px;
    border-radius: 50px;
    color: #350067;
    font-weight: 900;
}

#pageination .a {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}


#pageination .b {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

#pageination .c {
    border-radius: 50px;
}
/* BLOG PAGE */

#page-header.blogh {
    background-image: url("blog/B2.jpg");
    width: 100%;
    height: 50vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}

#page-header.blogh h2 {
    color: brown;
    font-weight: 600;
    font-size: 60px;
}

#page-header.blogh p {
    color:navy ;
    font-weight: 900;
    font-size: 20px;
}

#blogp {
    padding: 150px 150px 0 150px;
}

#blogp .blog-box {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding-bottom: 90px;
}

#blogp .blog-img {
    width: 50%;
    margin-right: 40px;
}

#blogp img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

#blogp .blog-details {
    width: 50%;
}
#blogp .blog-details h4{
    color: yellow;
}
#blogp .blog-details p{
    color: beige;
}

#blogp .blog-details a {
    text-decoration: none;
    font-size: 11px;
    color: whitesmoke;
    font-weight: 700;
    position: relative;
    transition: 0.3s;

}

#blogp .blog-details a::after {
    content:"";
    width: 50px;
    height: 1px;
    background-color: whitesmoke;
    position: absolute;
    top: 4px;
    right: -60px;
    transition: 0.3s;
}

#blogp .blog-details a:hover {
    color: chocolate;
}

#blogp .blog-details a:hover::after {
    background-color: chocolate;
}


#blogp .blog-box h1{
    color: #c0c0c0a5;
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 70px;
    font-weight: 700;
    z-index: -9;
}


/* About Us */

#page-header.about-head{
    background-image: url("about/main-banner.jpg");
    width: 100%;
    height: 40vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}

#page-header.about-head p{
    color: black;
    font-size: x-large;
}

#page-header.about-head h2{
    color:navy;
}


#about-head {
    display: flex;
    align-items: center;
}

#about-head div {
    padding-left: 40px;
}

#about-head img {
    width: 50%;
    height: auto;
}

#about-app {
    text-align: center;
}

#about-app .video {
    width: 70%;
    height: 100%;
    margin: 30px auto 0px auto;
}

#about-app .video video {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

#about-app h1{
    color: beige;
}
#about-app h4{
    color: sandybrown;
}

/* Contact us page */
#contact-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#contact-details .details {
    width: 40%;
}

#contact-details .details span,
#form-details form span {
    font-size: 12px;
}

#contact-details .details h2,
#form-details form h2 {
    font-size: 26px;
    line-height: 35px;
    padding: 28px 0;

}

#contact-details .details h3 {
    font-size: 16px;
    padding-bottom: 15px;

}

#contact-details .details li{
    list-style: none;
    display: flex;
    padding: 10px 0;
}

#contact-details .details li i{
    font-size: 14px;
    padding: 22px;
}

#contact-details .details li p{
    margin: 0;
    font-size: 14px;
}


#contact-details .map{
    width: 55%;
    height: 400px;
}

#contact-details .map iframe{
    width: 100%;
    height: 100%;
}



#form-details form{
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


#form-details form input,
#form-details form textarea{
    width: 100%;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
}

#form-details form button{
    background-color: #9CF6FB;
    color: navy;
    border-radius: 20px;
    border: 2px solid chocolate;
}
#form-details form button:hover{
    background-color: navy;
    color:beige;
    border-radius: 20px;
    border: 2px solid aqua;
    box-shadow: 2px 2px 10px crimson;
}






/* index page css sheet */


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: '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: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px ;
    color: #ffff;
}

.section-m1 {
    margin: 40px 0;
}

#header .hlogo{
    box-shadow: -10px 10px 10px black;
}

button.normal{
    font-size: 20px;
    font-weight: 900;
    padding: 12px 30px;
    color: #270018;
    background-color: pink;
    border-radius: 1000px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}
button.white{
    font-size: 13px;
    font-weight: 900;
    padding: 11px 18px;
    color: #270018;
    background-color: transparent;
    border-radius: 1000px;
    cursor: pointer;
    border: 3px solid white;
    outline: none;
    transition: 0.2s;
}

button.white:hover{
    box-shadow: 5px 5px 10px crimson;
    color: navy;
    background-color: #9CF6FB;
    border: 5px solid #001365;
}
body {
    width: 100%;
}


/* Header start */

#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #cad2f4;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar img {
    border-radius: 30%;
}

/* parent tag, just down */
#navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #182a49;
    transition: 0.5s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: crimson;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: crimson;
    position: absolute;
    bottom: -4px;
    left: 20px;
}


/* Home Page */
#hero {
    background-image: url("logo/hero.png");
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: top 0 right 0 ;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#hero h4 {
    padding-bottom: 15px;
    color: chocolate;
}

#hero h1 {
    color: crimson;
}

#hero h2,p {
    color: chartreuse;
}

#hero button {
    background-color: transparent;
    color:aqua;
    border: .25px solid crimson;
    border-radius: 50px;
    padding: 14px 70px 14px 70px;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 1000;
    font-size:30px;
    font-family: 'Times New Roman', Times, serif;
    box-shadow: 0 0 30px 0 crimson,
    0 0 30px 0 crimson, 0 0 10px 0 crimson inset;
}  

#hero button:hover {
    color:orange;
}

#feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}


#feature .fe-box {
    background-color:chocolate;
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
    border: 1px solid #cad2f4;
    border-radius: 20px;
    margin: 15px 0;

}

#feature .fe-box:hover {
    box-shadow: 10px 10px 54px rgba(0, 251, 255, 0.808) ;
}

#feature .fe-box h6{
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 14px;
    font-family: 'Times New Roman';
    font-size: medium;
    color: aqua;
    background-color: #182a49;
}

#feature .fe-box h6:hover {
    box-shadow: 2px 2px 11px yellow;
}

#feature .fe-box img {
    width: 100%;
    margin-bottom: 10px;
}

#feature .fe-box:nth-child(2) {
    background-color: coral;
}

#feature .fe-box:nth-child(3) {
    background-color:chocolate;
}

#feature .fe-box:nth-child(4) {
    background-color: coral;
}

#feature .fe-box:nth-child(5) {
    background-color: chocolate;
}

#feature .fe-box:nth-child(6) {
    background-color: coral;
}

#product1 {
    text-align: center;
}

#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: 3px solid chocolate;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.755);
    margin: 15px 0;
    transition: 2s ease;
    position: relative;
}

#product1 .pro img {
    width: 100%;
    border-radius: 20px;
}

#product1 .pro:hover {
    box-shadow: 0 0 30px aquamarine;
}

#product1 .pro h4{
    color: orange;
    padding-top: 10px;
    font-size: 15px;
    font-weight: 700;
}

#product1 .pro .description .brand {
    color: gold;
    font-size: 20px;
}

#product1 .pro .description{
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .description h5{
    padding-top:  7px;
    font-size: 14px;
}


#product1 .pro .description i{
    font-size: 15px;
    color: #f3b519
}

#product1 h2{
    color: #f3b519;
}

#product1 .pro .cartsym{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 90px;
    color:red;
    background-color: white;
    font-weight: 600;
    border: 1px solid white;
    box-shadow: 1px 1px 10px #9CF6FB;
    position: absolute;
    bottom: 20px;
    right: 10px;
}


#banner {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: center;
    text-align: center;
    background-image: url("logo/banner2.png");
    width: 100%;
    height: 50vh;
    background-size: cover;
    background-position: center;
}

#banner h4{
    color: RED;
    font-size: 27px;
}

#banner h2{
    color: gold;
    padding: 10px 0;
    font-size: 30px;
}

#banner h3{
    color:navy;
    padding: 10px 0;
    font-size: 40px;
}


#banner h1{
    color: #001365;
    font-size: 60px;
}

#banner h1 span{
    color: deeppink;
}

#banner h1 span:hover{
    color:darkorange;
    cursor: pointer;
}

#banner button:hover {
    background-color: #270018;
    color: gold;
    box-shadow: 5px 5px 15px darkblue;
}


#n-banner .banner-box {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("logo/banner4.jpg");
    min-width: 580px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
    border: 2px solid white;
}

#n-banner .banner-box2 {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("logo/banner8.jpg");
    min-width: 580px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
    border: 2px solid white;
}

#n-banner {
    display: flex;
    justify-content: space-between;
    flex-direction:row;
    padding: 30 80px;
}

#n-banner .banner-box h4{
    color: rgb(255, 0, 0);
    font-size: 30px;
    font-weight: 500;
}

#n-banner .banner-box2 h4{
    color: navy;
    font-size: 30px;
    font-weight: 700;
}


#n-banner .banner-box h2{
    color: #350067;
    font-size: 80px;
    font-weight: 500;
    padding-top: 5%;
}

#n-banner .banner-box2 h2{
    color: #ff00fb;
    font-size: 60px;
    font-weight: 500;
    padding-top: 5%;
}


#n-banner span{
    color: #38770e;
    font-size: 30px;
    font-weight: 400;
    padding-top: 3%;
    padding-bottom: 15px;
}

#n-banner .banner-box2 span{
    color: #fffb00;
    font-size: 30px;
    font-weight: 400;
    padding-top: 3%;
    padding-bottom: 15px;
}

h2 {
    color: white;
    font-size: 30px;
}

#banner3{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
}

#banner3 .banner-boxa {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("functions/O1.jpg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#banner3 h2{
    color: white;
    font-weight: 900;
    font-size: 30px;
}

#banner3 h3{
    color: maroon;
    font-weight: 800;
    font-size: 20px;
}

#banner3 .banner-boxb {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("functions/O2.jpeg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#banner3 .banner-boxc {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("functions/O4.jpg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#news {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-image: url("functions/newss.png");
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color: #171510;
}

#news h3{
    font-size: 22px;
    font-weight: 700;
    color: white;
}

#news p {
    color: #fffb00;
    font-weight: 700;
    font-size: 20px;
}

#news p span {
    color: navy;
    background-color: oldlace;
}

#news .form {
    display: flex;
    width: 40%;
}

#news input {
    height: 3.125rem;
    padding: 0 1.25em;
    font-size: 14px;
    width: 100%;
    border: 1PX solid transparent;
    border-radius: 100px;
    outline: none;
    box-shadow: 0 0 25px aqua;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#news input:hover {
    cursor: pointer;
    box-shadow: 0 0 25px crimson ;
}

#news button {
    background-color: white ;
    color: aqua;
    box-shadow: 0 0 25px aqua;
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}


#news button:hover {
    cursor: pointer;
    box-shadow: 0 0 20px crimson ;
    color: crimson;
}

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: 14px;
    padding: 20px;

}

footer p {
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer a {
    font-size: 13px;
    text-decoration: none;
    color: aqua;
    margin-bottom: 10px;
}

footer .follow {
    margin-top: 20px;
}

footer .follow i{
    color: aqua;
    padding-right: 4px;
    cursor: pointer;
    font-size: 25px;
}

footer .install .row i{
    font-size: 40px;
    box-shadow: 0 0 10px lawngreen;
    border-radius: 20px;
    padding: 5px 5px 5px 5px;
    width: auto;
    height: auto;
    white-space: normal;
}

footer .install i{
    margin: 10px 0 15px 0;
}

footer .follow i:hover,
footer a:hover{
    color: crimson;
}

footer .copyright{
    width: 100%;
    text-align: center;
}


/* Shop Page */

/* Blog Page */

/* About Page */

/* Contact us page */





/* shop.html css sheet */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: '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: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px ;
    color: #ffff;
}

.section-m1 {
    margin: 40px 0;
}

#header .hlogo{
    box-shadow: -10px 10px 10px black;
}

button.normal{
    font-size: 20px;
    font-weight: 900;
    padding: 12px 30px;
    color: #270018;
    background-color: pink;
    border-radius: 1000px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}
button.white{
    font-size: 13px;
    font-weight: 900;
    padding: 11px 18px;
    color: #270018;
    background-color: transparent;
    border-radius: 1000px;
    cursor: pointer;
    border: 3px solid white;
    outline: none;
    transition: 0.2s;
}

button.white:hover{
    box-shadow: 5px 5px 10px crimson;
    color: navy;
    background-color: #9CF6FB;
    border: 5px solid #001365;
}
body {
    width: 100%;
}


/* Header start */

#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #cad2f4;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar img {
    border-radius: 30%;
}

/* parent tag, just down */
#navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #182a49;
    transition: 0.5s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: crimson;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: crimson;
    position: absolute;
    bottom: -4px;
    left: 20px;
}


/* Home Page */
#hero {
    background-image: url("logo/hero.png");
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: top 0 right 0 ;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#hero h4 {
    padding-bottom: 15px;
    color: chocolate;
}

#hero h1 {
    color: crimson;
}

#hero h2,p {
    color: chartreuse;
}

#hero button {
    background-color: transparent;
    color:aqua;
    border: .25px solid crimson;
    border-radius: 50px;
    padding: 14px 70px 14px 70px;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 1000;
    font-size:30px;
    font-family: 'Times New Roman', Times, serif;
    box-shadow: 0 0 30px 0 crimson,
    0 0 30px 0 crimson, 0 0 10px 0 crimson inset;
}  

#hero button:hover {
    color:orange;
}

#feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}


#feature .fe-box {
    background-color:chocolate;
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
    border: 1px solid #cad2f4;
    border-radius: 20px;
    margin: 15px 0;

}

#feature .fe-box:hover {
    box-shadow: 10px 10px 54px rgba(0, 251, 255, 0.808) ;
}

#feature .fe-box h6{
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 14px;
    font-family: 'Times New Roman';
    font-size: medium;
    color: aqua;
    background-color: #182a49;
}

#feature .fe-box h6:hover {
    box-shadow: 2px 2px 11px yellow;
}

#feature .fe-box img {
    width: 100%;
    margin-bottom: 10px;
}

#feature .fe-box:nth-child(2) {
    background-color: coral;
}

#feature .fe-box:nth-child(3) {
    background-color:chocolate;
}

#feature .fe-box:nth-child(4) {
    background-color: coral;
}

#feature .fe-box:nth-child(5) {
    background-color: chocolate;
}

#feature .fe-box:nth-child(6) {
    background-color: coral;
}

#product1 {
    text-align: center;
}

#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: 3px solid chocolate;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.755);
    margin: 15px 0;
    transition: 2s ease;
    position: relative;
}

#product1 .pro img {
    width: 100%;
    border-radius: 20px;
}

#product1 .pro:hover {
    box-shadow: 0 0 30px aquamarine;
}

#product1 .pro h4{
    color: orange;
    padding-top: 10px;
    font-size: 15px;
    font-weight: 700;
}

#product1 .pro .description .brand {
    color: gold;
    font-size: 20px;
}

#product1 .pro .description{
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .description h5{
    padding-top:  7px;
    font-size: 14px;
}


#product1 .pro .description i{
    font-size: 15px;
    color: #f3b519
}

#product1 h2{
    color: #f3b519;
}

#product1 .pro .cartsym{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 90px;
    color:red;
    background-color: white;
    font-weight: 600;
    border: 1px solid white;
    box-shadow: 1px 1px 10px #9CF6FB;
    position: absolute;
    bottom: 20px;
    right: 10px;
}


#banner {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: center;
    text-align: center;
    background-image: url("logo/banner2.png");
    width: 100%;
    height: 50vh;
    background-size: cover;
    background-position: center;
}

#banner h4{
    color: RED;
    font-size: 27px;
}

#banner h2{
    color: gold;
    padding: 10px 0;
    font-size: 30px;
}

#banner h3{
    color:navy;
    padding: 10px 0;
    font-size: 40px;
}

#banner h1{
    color: #001365;
    font-size: 60px;
}

#banner h1 span{
    color: deeppink;
}

#banner h1 span:hover{
    color:darkorange;
    cursor: pointer;
}

#banner button:hover {
    background-color: #270018;
    color: gold;
    box-shadow: 5px 5px 15px darkblue;
}

#n-banner .banner-box {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("logo/banner4.jpg");
    min-width: 580px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
    border: 2px solid white;
}

#n-banner .banner-box2 {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("logo/banner8.jpg");
    min-width: 580px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
    border: 2px solid white;
}

#n-banner {
    display: flex;
    justify-content: space-between;
    flex-direction:row;
    padding: 30 80px;
}

#n-banner .banner-box h4{
    color: rgb(255, 0, 0);
    font-size: 30px;
    font-weight: 500;
}

#n-banner .banner-box2 h4{
    color: navy;
    font-size: 30px;
    font-weight: 700;
}

#n-banner .banner-box h2{
    color: #350067;
    font-size: 80px;
    font-weight: 500;
    padding-top: 5%;
}

#n-banner .banner-box2 h2{
    color: #ff00fb;
    font-size: 60px;
    font-weight: 500;
    padding-top: 5%;
}

#n-banner span{
    color: #38770e;
    font-size: 30px;
    font-weight: 400;
    padding-top: 3%;
    padding-bottom: 15px;
}

#n-banner .banner-box2 span{
    color: #fffb00;
    font-size: 30px;
    font-weight: 400;
    padding-top: 3%;
    padding-bottom: 15px;
}

h2 {
    color: white;
    font-size: 30px;
}

#banner3{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
}

#banner3 .banner-boxa {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("functions/O1.jpg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#banner3 h2{
    color: white;
    font-weight: 900;
    font-size: 30px;
}

#banner3 h3{
    color: maroon;
    font-weight: 800;
    font-size: 20px;
}

#banner3 .banner-boxb {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("functions/O2.jpeg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#banner3 .banner-boxc {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("functions/O4.jpg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#news {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-image: url("functions/newss.png");
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color: #171510;
}

#news h3{
    font-size: 22px;
    font-weight: 700;
    color: white;
}

#news p {
    color: #fffb00;
    font-weight: 700;
    font-size: 20px;
}

#news p span {
    color: navy;
    background-color: oldlace;
}

#news .form {
    display: flex;
    width: 40%;
}

#news input {
    height: 3.125rem;
    padding: 0 1.25em;
    font-size: 14px;
    width: 100%;
    border: 1PX solid transparent;
    border-radius: 100px;
    outline: none;
    box-shadow: 0 0 25px aqua;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#news input:hover {
    cursor: pointer;
    box-shadow: 0 0 25px crimson ;
}

#news button {
    background-color: white ;
    color: aqua;
    box-shadow: 0 0 25px aqua;
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}


#news button:hover {
    cursor: pointer;
    box-shadow: 0 0 20px crimson ;
    color: crimson;
}

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: 14px;
    padding: 20px;

}

footer p {
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer a {
    font-size: 13px;
    text-decoration: none;
    color: aqua;
    margin-bottom: 10px;
}

footer .follow {
    margin-top: 20px;
}

footer .follow i{
    color: aqua;
    padding-right: 4px;
    cursor: pointer;
    font-size: 25px;
}

footer .install .row i{
    font-size: 40px;
    box-shadow: 0 0 10px lawngreen;
    border-radius: 20px;
    padding: 5px 5px 5px 5px;
    width: auto;
    height: auto;
    white-space: normal;
}

footer .install i{
    margin: 10px 0 15px 0;
}

footer .follow i:hover,
footer a:hover{
    color: crimson;
}

footer .copyright{
    width: 100%;
    text-align: center;
}


/* Shop Page */

#page-header {
    background-image: url("logo/banner_shop.png");
    width: 100%;
    height: 90vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}

#page-header h2{
    color: white;
    font-size: 60px;
}

#page-header p{
    color: chocolate;
    font-size: 20px;
    font-weight: 700;
}

#page-header span{
    color:cyan;
    font-size: 30px;
    font-weight: 700;
}

#pageination {
    text-align: center;
}

#pageination a {
    text-decoration: none;
    background-color: white;
    padding: 15px 20px;
    border-radius: 50px;
    color: #350067;
    font-weight: 900;
}

#pageination .a {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}


#pageination .b {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

#pageination .c {
    border-radius: 50px;
}





/* Blog Page */

/* About Page */

/* Contact us page */





/* sproduct css sheet */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: '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: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px ;
    color: #ffff;
}

.section-m1 {
    margin: 40px 0;
}

#header .hlogo{
    box-shadow: -10px 10px 10px black;
}

button.normal{
    font-size: 20px;
    font-weight: 900;
    padding: 12px 30px;
    color: #270018;
    background-color: pink;
    border-radius: 1000px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}
button.white{
    font-size: 13px;
    font-weight: 900;
    padding: 11px 18px;
    color: #270018;
    background-color: transparent;
    border-radius: 1000px;
    cursor: pointer;
    border: 3px solid white;
    outline: none;
    transition: 0.2s;
}

button.white:hover{
    box-shadow: 5px 5px 10px crimson;
    color: navy;
    background-color: #9CF6FB;
    border: 5px solid #001365;
}
body {
    width: 100%;
}


/* Header start */

#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #cad2f4;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar img {
    border-radius: 30%;
}

/* parent tag, just down */
#navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #182a49;
    transition: 0.5s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: crimson;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: crimson;
    position: absolute;
    bottom: -4px;
    left: 20px;
}


/* Home Page */
#hero {
    background-image: url("logo/hero.png");
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: top 0 right 0 ;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#hero h4 {
    padding-bottom: 15px;
    color: chocolate;
}

#hero h1 {
    color: crimson;
}

#hero h2,p {
    color: chartreuse;
}

#hero button {
    background-color: transparent;
    color:aqua;
    border: .25px solid crimson;
    border-radius: 50px;
    padding: 14px 70px 14px 70px;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 1000;
    font-size:30px;
    font-family: 'Times New Roman', Times, serif;
    box-shadow: 0 0 30px 0 crimson,
    0 0 30px 0 crimson, 0 0 10px 0 crimson inset;
}  

#hero button:hover {
    color:orange;
}

#feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}


#feature .fe-box {
    background-color:chocolate;
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
    border: 1px solid #cad2f4;
    border-radius: 20px;
    margin: 15px 0;

}

#feature .fe-box:hover {
    box-shadow: 10px 10px 54px rgba(0, 251, 255, 0.808) ;
}

#feature .fe-box h6{
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 14px;
    font-family: 'Times New Roman';
    font-size: medium;
    color: aqua;
    background-color: #182a49;
}

#feature .fe-box h6:hover {
    box-shadow: 2px 2px 11px yellow;
}

#feature .fe-box img {
    width: 100%;
    margin-bottom: 10px;
}

#feature .fe-box:nth-child(2) {
    background-color: coral;
}

#feature .fe-box:nth-child(3) {
    background-color:chocolate;
}

#feature .fe-box:nth-child(4) {
    background-color: coral;
}

#feature .fe-box:nth-child(5) {
    background-color: chocolate;
}

#feature .fe-box:nth-child(6) {
    background-color: coral;
}

#product1 {
    text-align: center;
}

#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: 3px solid chocolate;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.755);
    margin: 15px 0;
    transition: 2s ease;
    position: relative;
}

#product1 .pro img {
    width: 100%;
    border-radius: 20px;
}

#product1 .pro:hover {
    box-shadow: 0 0 30px aquamarine;
}

#product1 .pro h4{
    color: orange;
    padding-top: 10px;
    font-size: 15px;
    font-weight: 700;
}

#product1 .pro .description .brand {
    color: gold;
    font-size: 20px;
}

#product1 .pro .description{
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .description h5{
    padding-top:  7px;
    font-size: 14px;
}


#product1 .pro .description i{
    font-size: 15px;
    color: #f3b519
}

#product1 h2{
    color: #f3b519;
}

#product1 .pro .cartsym{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 90px;
    color:red;
    background-color: white;
    font-weight: 600;
    border: 1px solid white;
    box-shadow: 1px 1px 10px #9CF6FB;
    position: absolute;
    bottom: 20px;
    right: 10px;
}


#banner {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: center;
    text-align: center;
    background-image: url("logo/banner2.png");
    width: 100%;
    height: 50vh;
    background-size: cover;
    background-position: center;
}

#banner h4{
    color: RED;
    font-size: 27px;
}

#banner h2{
    color: gold;
    padding: 10px 0;
    font-size: 30px;
}

#banner h3{
    color:navy;
    padding: 10px 0;
    font-size: 40px;
}

#banner h1{
    color: #001365;
    font-size: 60px;
}

#banner h1 span{
    color: deeppink;
}

#banner h1 span:hover{
    color:darkorange;
    cursor: pointer;
}

#banner button:hover {
    background-color: #270018;
    color: gold;
    box-shadow: 5px 5px 15px darkblue;
}

#n-banner .banner-box {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("logo/banner4.jpg");
    min-width: 580px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
    border: 2px solid white;
}

#n-banner .banner-box2 {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("logo/banner8.jpg");
    min-width: 580px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
    border: 2px solid white;
}

#n-banner {
    display: flex;
    justify-content: space-between;
    flex-direction:row;
    padding: 30 80px;
}

#n-banner .banner-box h4{
    color: rgb(255, 0, 0);
    font-size: 30px;
    font-weight: 500;
}

#n-banner .banner-box2 h4{
    color: navy;
    font-size: 30px;
    font-weight: 700;
}

#n-banner .banner-box h2{
    color: #350067;
    font-size: 80px;
    font-weight: 500;
    padding-top: 5%;
}

#n-banner .banner-box2 h2{
    color: #ff00fb;
    font-size: 60px;
    font-weight: 500;
    padding-top: 5%;
}

#n-banner span{
    color: #38770e;
    font-size: 30px;
    font-weight: 400;
    padding-top: 3%;
    padding-bottom: 15px;
}

#n-banner .banner-box2 span{
    color: #fffb00;
    font-size: 30px;
    font-weight: 400;
    padding-top: 3%;
    padding-bottom: 15px;
}

h2 {
    color: white;
    font-size: 30px;
}

#banner3{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
}

#banner3 .banner-boxa {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("functions/O1.jpg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#banner3 h2{
    color: white;
    font-weight: 900;
    font-size: 30px;
}

#banner3 h3{
    color: maroon;
    font-weight: 800;
    font-size: 20px;
}

#banner3 .banner-boxb {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("functions/O2.jpeg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#banner3 .banner-boxc {
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: flex-start;
    background-image: url("functions/O4.jpg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#news {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-image: url("functions/newss.png");
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color: #171510;
}

#news h3{
    font-size: 22px;
    font-weight: 700;
    color: white;
}

#news p {
    color: #fffb00;
    font-weight: 700;
    font-size: 20px;
}

#news p span {
    color: navy;
    background-color: oldlace;
}

#news .form {
    display: flex;
    width: 40%;
}

#news input {
    height: 3.125rem;
    padding: 0 1.25em;
    font-size: 14px;
    width: 100%;
    border: 1PX solid transparent;
    border-radius: 100px;
    outline: none;
    box-shadow: 0 0 25px aqua;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#news input:hover {
    cursor: pointer;
    box-shadow: 0 0 25px crimson ;
}

#news button {
    background-color: white ;
    color: aqua;
    box-shadow: 0 0 25px aqua;
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}


#news button:hover {
    cursor: pointer;
    box-shadow: 0 0 20px crimson ;
    color: crimson;
}

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: 14px;
    padding: 20px;

}

footer p {
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer a {
    font-size: 13px;
    text-decoration: none;
    color: aqua;
    margin-bottom: 10px;
}

footer .follow {
    margin-top: 20px;
}

footer .follow i{
    color: aqua;
    padding-right: 4px;
    cursor: pointer;
    font-size: 25px;
}

footer .install .row i{
    font-size: 40px;
    box-shadow: 0 0 10px lawngreen;
    border-radius: 20px;
    padding: 5px 5px 5px 5px;
    width: auto;
    height: auto;
    white-space: normal;
}

footer .install i{
    margin: 10px 0 15px 0;
}

footer .follow i:hover,
footer a:hover{
    color: crimson;
}

footer .copyright{
    width: 100%;
    text-align: center;
}


/* Shop Page */

#page-header {
    background-image: url("logo/banner_shop.png");
    width: 100%;
    height: 90vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}

#page-header h2{
    color: white;
    font-size: 60px;
}

#page-header p{
    color: chocolate;
    font-size: 20px;
    font-weight: 700;
}

#page-header span{
    color:cyan;
    font-size: 30px;
    font-weight: 700;
}

#pageination {
    text-align: center;
}

#pageination a {
    text-decoration: none;
    background-color: white;
    padding: 15px 20px;
    border-radius: 50px;
    color: #350067;
    font-weight: 900;
}

#pageination .a {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}


#pageination .b {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

#pageination .c {
    border-radius: 50px;
}

/* SINGLE PRODUCT */

#prodetails .single-pro-image {
    width: 40%;
    margin-right: 50px;
}

.small-img-group {
    display: flex;
    justify-content: space-between;
}

.small-img-group {
    flex-basis: 24%;
    cursor: pointer;
}

#prodetails {
    display: flex;
    margin-top: 20px;
}

#prodetails  .single-pro-details {
    width: 50%;
    padding-top: 30px;
}

#prodetails .single-pro-details h4{
    padding: 40px 0 20px 0;
    color: darkorange;
}

#prodetails .single-pro-details h2{
    font-size: 30px;
    color: #9CF6FB;
}

#prodetails .single-pro-details h6{
    font-size: 15px;
}

#prodetails .single-pro-details select {
    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;
    border-radius: 10px;
}

#prodetails .single-pro-details input {
    width: 50px;
    height: 47px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
    border-radius: 10px;
    outline: none;
}
#prodetails .single-pro-details .new {
    font-size: 20px;
    font-weight: 900;
    padding: 12px 30px;
    color: #001f27;
    background-color: pink;
    border-radius: 10px;
    cursor: pointer;
    border:2px solid black;
    outline: none;
    transition: 0.2s;
}

#prodetails .single-pro-details span {
    line-height: 25px;
}


/* Blog Page */

/* About Page */

/* Contact us page */
