@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');



body {
    /* set the font */
    font-family: montserrat;
    /* set font size */
    font-size: 14px;
    /* remove margin */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* header */
.header {
    font-weight: bold;
    padding: 0 70px;
    background-color: rgb(255, 255, 255);
    display: flex;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    border-bottom: 1px solid lightgrey;
    line-height: 100px;
    z-index: 10;

    /* all div inside header */
    &>div {
        background-color: #fff;
    }


    /* logo */

    img {
        width: 150px;
        padding-top: 5px;
    }



    /* link inside menu */
    .menu {
        margin-left: 0;
        flex: 55%;
        text-align: left;
        font-size: 16px;

        a {
            text-decoration: none;
            color: black;
            padding: 5px;

        }

        a:hover {
            text-decoration: underline;

        }
    }



    /* right menu */
    .submenu {
        position: fixed;
        padding-right: 70px;
        right: 0;
        flex: 20%;


        a {
            text-decoration: none;
            color: black;
            margin: 10px;
        }
    }
}

/* main content */
.main {
    margin-top: 100px;
    width: 100%;
}

/* menu inside .shipping */
.shipping {
    font-weight: bold;
    text-align: center;
    width: 100%;
    height: 60px;
    line-height: 60px;
    color: white;
    background-color: black;



    & :where(span, a) {
        text-decoration: none;
        padding: 0 10px;
        color: white;
    }

    a {
        background-color: red;
        padding: 10px;
        border-radius: 50px;
    }
}

/* style footer */
.footer {
    padding: 30px 70px 0;
    background-color: #262626;
    height: 600px;

    .start {
        height: 250px;
        display: flex;
        justify-content: center;

        .box {
            display: flex;
            flex-direction: column;
            font-weight: normal;
            text-align: left;
            margin: 5px;
            width: 20%;

            a {
                padding: 5px;
                text-decoration: none;
                color: lightgray;
            }

            h3 {
                color: white;
            }


        }


    }


    .center {
        display: flex;
        height: 80px;
        text-align: center;
        line-height: 80px;
        color: white;
        font-weight: normal;
        font-size: 12px;
        border-bottom: 1px solid #ffffff;

        .emty {
            flex: 20%;
        }

        .copyright {
            flex: 60%;
        }

        .social {
            width: 20%;
            height: 100px;

            i {
                width: 20%;
            }
        }
    }

    .end {
        display: flex;
        color: lightgrey;
        align-items: center;
        justify-content: space-between;

        .add {
            flex: 70%;
        }

        .logoend {
            flex: 30%;
            text-align: left;
        }
    }
}