

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spartan', sans-serif;
}

h1 {
    font-size: 50px;
    line-height: 64px;
    color: #000;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #000;
}

h4 {
    font-size: 20px;
    color: #000;
}

h6 {
    font-weight: 700;
    font-size: 12px;
}

.section-pl {
    padding: 40px 80px;
}

.section-ml {
    margin: 40px 0;

}

button.normal {
    font-family: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #000;
    background-color: rgb(254, 254, 254);
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}

button.white {
    font-family: 13px;
    font-weight: 600;
    padding: 11px 18px;
    color: #FF4C3B;
    background-color: transparent;
    border: 1px solid #FF4C3B;
    cursor: pointer;
    outline: none;
    transition: 0.2s;
}

body {
    width: 100%;
}

/* Header Start */

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #ff0062;
    box-shadow: -2px 7px 20px 0px rgba(0, 0, 0, 0.712);
    /* position: relative; */
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li {
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: rgb(255, 255, 255);
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: rgb(255, 255, 255);
    position: absolute;
    bottom: -4px;
    left: 20px;
}

#mobile {
    display: none;
    align-items: center;
}

#close {
    display: none;
}

/* Home Page */
#header .logo {
    width: 100%;
    height: 100px;
    border-radius: 50px;
}


#hero {
    background-image: url("img/clicks.jpg");
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: top 25% right 0;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#hero h4 {
    padding-bottom: 15px;

}

#hero h1 {
    color: rgb(145, 255, 0);
}

#hero button {
    background: rgb(0, 34, 255);
    color: #ffffff;
    border: 0;
    padding: 10px 30px;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 700;
    font-size: 25px;
    border-radius: 10px;
    transition: 0.5s ease;
}

#hero button:hover {
    background-color: #00f7ff;
    color: #000;
}

#feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#feature .fe-box {
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
    border: 1px solid rgb(179, 165, 170);
    border-radius: 4px;
    margin: 15px 0;
}

#feature .fe-box:hover {
    box-shadow: -10px -4px 34px 0px rgba(251, 0, 88, 0.58);
}

#feature .fe-box h1 {
    width: 100%;
    font-size: 30px;
    margin-bottom: 10px;
}

#feature .fe-box h6 {
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    font-size: 15px;
    color: rgb(0, 0, 0);
    background-color: #fe00627f;;
}

#feature .fe-box h6 a {
    text-decoration: none;
    color: #000;
}

#feature .fe-box h1 a {
    text-decoration: none;
    color: #000;
}


#feature .fe-box:nth-child(2) h6 {
    background-color: rgba(0, 255, 13, 0.414);
}

#feature .fe-box:nth-child(3) h6 {
    background-color: rgba(0, 26, 255, 0.414);
}
#feature .fe-box:nth-child(4) h6 {
    background-color: rgba(255, 247, 0, 0.676);
}
#feature .fe-box:nth-child(5) h6 {
    background-color: rgba(242, 0, 255, 0.348);
}
#feature .fe-box:nth-child(6) h6 {
    background-color: rgba(0, 191, 255, 0.414);
}



#product1 {
    text-align: center;
}

#product1 .pro-container {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
}

#product1 .pro {
    width: 23%;
    /* background-color: #00d9ff; */
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #cce7dc;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
}

#product1 .pro:hover {
    box-shadow: -10px -4px 34px 0px hsla(346, 100%, 50%, 0.613);
}

#product1 .pro img {
    width: 100%;
    border-radius: 20px;
}

#product1 .pro .des {
    text-align: start;
    padding: 10px 0;
}

#product1 .pro span {
    color: rgb(74, 66, 69);
    font-size: 12px;
}

#product1 .pro .des h5 {
    padding-top: 7px;
    color: #000000;
    font-size: 14px;
}

#product1 .pro .des i {
    font-size: 12px;
    color: rgb(243, 181, 25);
}

#product1 .pro .des h4 {
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #ff0062;
}

#product1 .pro .cart {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    background-color: #ff006285;
    font-weight: 700;
    font-size: 25px;
    color: rgb(13, 13, 12);
    border: 1px solid #a8989e92;
    position: absolute;
    bottom: 20px;
    right: 10px;
}

#banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("img/slide.png");
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
}

#banner h4 {
    color: #ff0062;
    font-size: 20px;
    
}

#banner h2 {
    color: #ff0062;
    font-size: 30px;
    padding: 10px 0;
}

#banner span {
    color: rgb(38, 255, 0);
}

#banner button:hover {
    background: #ff0062;
    color: rgb(255, 255, 255);
}

#sm-banner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#sm-banner .banner-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url("img/6.jpg");
    background-color: #ffbf00;
    min-width: 800px;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
}

#sm-banner .banner-box2 {
    background-color: #00e5ff;
}

#sm-banner h4 {
    color: #ff0062;
    /* background: #ffbf00;
    border-radius: 3px;
    padding: 5px 30px; */
    font-size: 20px;
    font-weight: 300;
}

#sm-banner h2 {
    color: #0015ff;
    /* background: #ff004c;
    border-radius: 5px;
    padding: 3px 10px; */
    font-size: 28px;
    font-weight: 800;
}

#sm-banner span {
    color: #000000;
    font-size: 13px;
    /* padding: 10px 10px;
    background: #0011ff; */
    font-weight: 500;
    padding-bottom: 15px;
}

#sm-banner .banner-box:hover button {
    background: #ff0062;
    color: #000;
    border: 1px solid #ff0062;
}

#banner-3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
}

#banner-3 .banner-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url("img/clicks.jpg");
    background-color: #ffbf00;
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#banner-3 .banner-box2 {
    background-image: url("img/clicks.jpg");
}

#banner-3 .banner-box3 {
    background-image: url("img/clicks.jpg");
}

#banner-3 h2 {
    color: #fff;
    font-weight: 900;
    font-size: 22px;
}

#banner-3 h3 {
    color: #000000;
    font-weight: 800;
    font-size: 15px;
}

#newsletter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    /* background-image: url("img/জামা/slider-04.png"); */
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color: #090968;
    margin-bottom: 20px;

}

#newsletter h4 {
    font-size: 22px;
    font-weight: 700;
    color: rgb(255, 255, 255);
}

#newsletter p {
    font-size: 14px;
    font-weight: 600;
    color: rgb(255, 255, 255);
}

#newsletter p span{
    font-size: 18px;
    color: rgb(243, 191, 0);
}

#newsletter .form {
    display: flex;
    width: 40%;
}

#newsletter input {
    height: 3.125rem;
    padding: 0 1.25em;
    font-size: 14px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
    outline: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#newsletter button {
    background-color: #ff0062;
    color: honeydew;
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #0f2b54;
}

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-bottom: 20px;
    color: #ffffff;
}

footer p {
    font-size: 13px;
    margin: 0 0 8px 0;
    color: #ffffff;
}
footer a {
    font-size: 13px;
    text-decoration: none;
    color: #ffffff;
    margin-bottom: 10px;
}

footer .follow {
    margin-top: 20px;
}

footer .follow i{
    color: #ffffff;
    padding-right: 4px;
    cursor: pointer;
}

footer .install .row img {
    border: 2px solid #00ff59;
    border-radius: 6px;
}

footer .install .row img {
    width: 120px;
} 

footer .install img {
    margin: 10px 0 15px 0;
    width: 200px;
    height: 50px;
}

footer .follow i:hover,
footer a:hover {
    color: #ff0062;
}

footer .copyright {
    width: 100%;
    text-align:center;
}
.tta {
    background-color:rgb(255, 106, 0);
    width: 33%;
    height: 400px;
    border-radius: 20px;
    position: relative;
    left: 33%;
    top: 200px;
    box-shadow: -9px -6px 20px rgba(0 0 0 / 56%);
}
.rra {
    position: absolute;
    text-align: center;
    top: 41%;
    left: 30%;
}

.text {
    background-color: #FF4C3B;
    border-radius: 100px;
    margin-top: 15px;
    margin-left: 10px;
    margin-right: 10px;
}
.text h1 {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    
}
.odar {
    margin-top: 30px;
    margin-left: 30px;
    margin-right: 30px;
    /* background: #7962df; */
}

/* start media query */

@media (max-width:799px) {
    .section-pl {
        padding: 40px 40px;
    }

    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: #ff0062;
        box-shadow: 0 50px 60px rgba(0, 0, 0, 0.594);
        padding: 80px 0 0 10px;
        transition: 0.5s;
    }

    #navbar.active {
        right: 0px;
    }

    #navbar li {
            margin-bottom: 15px;
    }

    #mobile {
        display: flex;
        align-items: center;
    }

    #mobile i {
        color: #000;
        font-size: 24px;
        padding: 20px;
    }
    #close {
        position: absolute;
        top: 30px;
        left: 30px;
        color: #000;
        font-size: 24px;
        display: initial;
    }
    #lg-bag {
        display: none;
    }

    #hero {
        height: 70vh;
        padding: 0 80px;
        background-position: top 30% right 30%;
    }

    #feature {
        justify-content: center;
    }

    #feature .fe-box {
        margin: 15px 15px;
    }

    #product1 .pro-container {
        justify-content: center;
    }

    #product1 .pro {
        margin: 15px;
    }

    #banner {
        height: 25vh;
    }

    #banner h2 {
        font-size: 20px;
    }

    #banner h4 {
        font-size: 18px;
        margin-top: 25px;
    }

    #banner .normal {
        margin-bottom: 50px;
    }
    
    #sm-banner .banner-box {
        min-width: 100%;
        height: 30vh;
    }

    #banner-3 {
        padding: 0 40px;
    }

    #banner-3 .banner-box {
        width: 28px;
    }

    #newsletter .form {
        width: 70%;
    }
    .tta {
    width: 60%;
    height: 300px;
    position: relative;
    left: 90px;
    top: 261px;
    }
}

@media (max-width: 477px) {
    .section-pl {
        padding: 20px;
    }
    #product1 h2 {
        font-size: 21px;
        font-family: Georgia, 'Times New Roman', Times, serif;
    }
    
    #header {
        padding: 10px 30px;
    }
    h2 {
        color: #000;
        font-size: 35px;
    }
    h1 {
        font-size: 17px;
    }
    p {
        font-size: 15px;
    }

    #hero {
        padding: 0 20px;
        background-position: 55%;
    }

    
    #feature {
        justify-content: space-between;
    }

    #feature .fe-box {
       width: 155px;
       margin: 0 0 15px 0;
    }
    #product1 .pro {  
     width: 100%;
    }

    #sm-banner .banner-box {
        height: 40vh;
    }

    #sm-banner .banner-box2 {
        margin-top: 20px;
    }

    #banner-3 {
        padding: 0 20px;
    }

    #newsletter {
        padding: 40px 40px;
    }

    #banner-3 .banner-box {
        width: 100%;
    }

    #newsletter .form {
        width: 100%;
    }

    #newsletter h4{
        font-size: 13px;
    }

    #newsletter p {
        font-size: 10px;
    }
    #newsletter p span {
        font-size: 13px;
    }
    .tta {
    width: 71%;
    height: 225px;
    position: relative;
    left: 59px;
    top: 200px;
    }
    .rra {
        position: absolute;
        text-align: center;
        font-size: 22px;
        left: 37px;
    }
}

