.mainNav{
    background-color: black;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 2;
    width: 100%;
}
.firstSection{
    margin-top: 80px;
}
.mainNav .logo img{
    max-width: 175px;
    min-width: 175px;
}
.mainNav .navRow{
    width: 100%;
    max-width: 1640px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 15px;
    z-index: 2;
    height: 80px;
}
.mainNavLinksCon{
    display: flex;
    align-items: center;
    padding-left: 7%;
}
.mainNavLinks{
    color: white;
    font-weight: bold;
    margin-right: 20px;
    display: flex;
    letter-spacing: 1px;
    font-size: 14px;
}
.mainNavLinks:focus{
    color: white;
}
.mainNavLinks.active, .mainNavLinks.activeMobile{
    color: #d2a333;
}
.mainNavLinks .dropIcon{
    font-weight: 100;
    font-size: 0.8em;
    color: #bbb;
    padding-left: 4px;
}
.mainNavIconsCon{
    display: flex;
    align-items: center;
    justify-content: end;
}
.mainNavIcons{
    color: white;
    margin-left:4em;
    font-size: 16px;
}
.mainNavIcons:hover{
    color: #d2a333;
}
.cartLink{
    position: relative;
}
.cartCount{
    position: absolute;
    top:-12px;
    right:-12px;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0487c9;
    color: black;
    border-radius: 100px;
    font-size: 10px;
}
.mobileIcon{
    display: none;
}
.blackDrop{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.menus{
    position: fixed;
    top: 80px;
    left: 0px;
    width: 100vw;
    padding: 10px 0px 40px;
    background-color: black;
    z-index: 2;
}
.largeMenuItemBoxCon{
    width: 100%;
    display:flex;
    justify-content: center;
}
.largeMenuItemBoxCon2{
    display:flex;
    justify-content: center;
}
.largeMenuItemBox{
    /* min-width: 200px; */
    padding: 30px;
}
.largeMenuItemBox .title{
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border-bottom: 1px solid #6d5317;
    line-height: 40px;
}
.menuLinksCon{
    padding-right: 15px;
}
.menuLinks{
    text-align: left;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 4px;
    opacity: 0.9;
}
.menuLinks:hover{
    color: white;
}
.menuLinks:hover:before {
    width: 100%;
}
.menuLinks:before {
    background: #628cfa;
}
.menuLinks:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #628cfa;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.hide{
    display: none !important;
}
.desktopHide{
    display: none;
}
.goldCon{
    background-color: #d2a333;
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    font-weight: bold;
}
.blueCon{
    background-color: #455581;
    color: white;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    display: flex;
    justify-content:center;
    align-items: center;
    overflow-x: auto;
}
.blueCon .items{
    text-align: center;
    display: block;
    padding-left: 25px;
    padding-right: 25px;
    height: 35px;
    min-width: 250px;
}
.blueCon .items p{
    margin-top: -5px;
    margin-bottom: 0px;
    font-size: 10px;
    font-weight: 300;
    color: white;
    text-transform: uppercase;
}
.blueCon .items .smallTitle{
    font-size: 14px;
    color: white;
    font-weight: 500;
    margin-top: -8px;
    text-transform: uppercase;
}
.blueCon .itemsLink:hover .smallTitle{
    color: #d2a333;
}
.blueCon .rightBorder{
    border-right: 1px solid #5b74b8;
}
.goldCon p {
    margin-bottom: 0px;
    letter-spacing: 0.01rem;
    font-size: 14px;
}
@media(max-width:1245px){
    .mobileIcon{
        display: unset;
    }
    .mainNavLinksCon{
        background-color: black;
        display: block;
        position: fixed;
        top: 60px;
        left: 0px;
        height: 100vh;
        width: 100vw;
        padding: 0px;
    }
    .mainNavLinks{
        width: 100%;
        border-bottom: 1px solid white;
        padding: 15px 20px 15px 16px;
        display: flex;
        justify-content: space-between;
        font-size: 14px;
    }
    .mainNav .logo img{
        max-width: 95%;
        min-width: 95%;
    }
    .mainNavIconsCon{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .mobileHide{
        display: none;
    }
    .desktopHide{
        display: unset;
    }
    .menus{
        top: 60px;
        height: 100vh;
    }
    .menus .mainNavLinks{
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .cross{
        color: #0487c9;
        font-size: 10px;
    }
    .largeMenuItemBox{
        padding: 20px 0px;
    }
    .largeMenuItemBox .title{
        font-size: 12px;
    }
    .menuLinks{
        font-size: 13px;
        font-weight: 400;
    }
    .blueCon{
        justify-content:start;
        padding-bottom: 15px;
    }
}
@media(max-width:769px) {
    .mainNav .logo img{
        max-width: 225px;
        min-width: 140px;
        min-height: 40px;
        height: 40px;
    }
    .mainNav .navRow{
        height: 60px;
    }
    .firstSection{
        margin-top: 60px;
    }
    .largeMenuItemBox .title{
        font-size: 11px;
        border-bottom: 2px solid #6d5317;
    }
    .menuLinks{
        font-size: 12px;
        font-weight: 400;
    }
    .largeMenuItemBoxCon{
        width: 100%;
        justify-content: center;
        overflow-y: auto;
        max-height: calc(100vh - 120px);
        margin-bottom: 100px;
    }
    .largeMenuItemBoxCon2{
        display:block;
        text-align: center;
        width: 100vw;
        padding-left: 15px;
        padding-right: 15px;
    }
    .largeMenuItemBox{
        display: inline-flex;
        text-align: left;
        margin-right: -3px;
    }
    .blueCon .items{
        padding-left: 15px;
        padding-right: 15px;
        height: 35px;
        min-width: 220px;
    }
}
@media(max-width:576px){
    .mainNav .logo img{
        max-width: 225px;
        min-width: auto;
        min-height: 35px;
        height: 35px;
    }
    .mainNavIconsCon {
        justify-content:space-around;
        padding-left: 40px;
    }
    .mainNavIcons{
        color: white;
        margin-left:0;
        font-size: 14px;
    }
    .mainNavLinks{
        font-size: 12px;
    }
}