/* Header */

* {
    margin: 0px;
    padding: 0px;

    font-family: Assistant, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

    box-sizing: border-box;
}





header {
    display: flex;
    height: 70px;
    width: 100%;
    background-color: rgb(255, 255, 255);
    justify-content: space-between;
    align-items: center;

    border-bottom: 1.5px solid #b4b4b4;

}

.logo {
    height: 40px;
    padding-left: 30px;
}

.logoContainer {
    margin-left: 2%;
}

.actionBar {
    margin-right: 4%;



}

.nav_bar {
    display: flex;
    min-width: 650px;
    justify-content: space-evenly;
    padding-top: 5px;
    padding-right: 15px;



}

.nav_bar a {

    font-size: 14px;
    letter-spacing: .3px;
    color: #282c3f;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    padding: 21px 0px 21px 0px;
    border-bottom: 4px solid rgb(255, 255, 255);
    border-radius: 1.5px;
}

.nav_bar a:hover {
    border-bottom: 4px solid #f54e77;


}

.nav_bar a sup {
    color: #ff3f6c;
    font-size: 10px;

}


.searchBar {
    height: 40px;
    min-width: 200px;
    width: 30%;
    display: flex;
    align-items: center;
    background-color: #f5f5f6;
    border-radius: 4px;



}

#searchIcon {
    height: 21px;
    min-width: 9px;
    box-sizing: content-box;
    padding: 5px;
    color: #696e79;
    font-weight: 300;
    /* border-radius: 4px 0px 0px 4px; */


}

.searchInput {

    color: #696e79;
    background: #f5f5f6;
    font-size: 14px;
    flex-grow: 1;
    height: 30px;

    border: none;
    min-width: 10px;



}


.actionBar {
    display: flex;
    justify-content: space-evenly;
    height: 40px;
    min-width: 170px;
    padding-top: 10px;



}

.actionItems {

    display: flex;
    flex-direction: column;
    align-items: center;

}

.actionIcon {
    width: 34px;
    height: 24px;
    color: #353a45;
}

.actionItems .actionName {

    font-size: 14px;
    letter-spacing: .3px;
    color: #282c3f;
    font-weight: 600;
}

.actionAnchor {
    text-decoration: none;
}


.bigBanner {
    margin: 35px 0px 15px 0px;

}

.banner {
    width: 100%;

}


.categoryHeading {
    width: 100%;
    height: 70px;
    margin: 40px;
    background-color: white;
}

.text {
    padding-top: 20px;
    padding-left: 40px;

    font-weight: 700;
    font-size: 1.6em;
    letter-spacing: .3px;
    color: #282c3f;
    text-transform: uppercase;
    max-height: 1.5em;
}


.categoryItems {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 25px;
}

.offers {
    height: 400px;
    width: 324px;
}


.item {

    height: 500px;
    width: 324px;
}


.footerDiv {
    height: 640px;
    width: 100%;
    background-color: #f5f5f6;
    display: flex;
    padding: 100px 0px 70px 190px;
    flex-direction: row;
}



.footerCol {
    display: flex;
    padding: 0px 50px 0px 0px;
    display: flex;
    flex-direction: column;



}

.col1Heading {
    padding-bottom: 25px;
    font-size: 18px;
    letter-spacing: .3px;
    color: #68687e;
    text-transform: uppercase;
    font-weight: 600;


}


.col1Items {
    padding: 15px;

    font-size: 14px;
    letter-spacing: .3px;
    color: #6e707e;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;

    transition: all;
    transition-duration: 30ms;
    transition-timing-function: ease-in-out;
}

.copyRight {
    height: 50px;
    width: 100%;
    background-color: #f5f5f6;
    text-align: end;
    padding-top: 25px;

}

.copyRightContent {
    font-size: 15px;
    letter-spacing: .3px;
    color: #68687e;
    text-transform: uppercase;


}

.col1Items:hover {
    color: blue;
    font-size: 1.0em;

}