#container {
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fff;
}

h1, h2, h3, h4 {
    font-weight: bolder;
}

a {
    text-decoration: none;
}

#desc-nav {
    width: 100%;
    max-height: 75px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-items {
    display: flex;
    align-items: center;
    margin: 0 20px;
    gap: 20px;
    max-width: 50%;
    padding: 20px 0;
}

.nav-items img {
    max-height: 30px;
    height: 100%;
    width: auto;
}

.logo {
    max-height: 50px;
    width: auto;
    max-width: 40%;
    margin: 0 20px;
}

#desc-announcement {
    background-color: #F7B829;
    height: 40px;
    position: relative;
}

.message {
    text-align: center;
    text-transform: uppercase;
    font-size: smaller;
    color: #303030;
    font-weight: 700;
}

.xy-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.full {
    display: block;
    height: auto;
}

.half, .threeqtr, .ninety {
    width: 50%;
}

.flex {
    display: flex;
}

.wrap {
    flex-wrap: wrap;
}

.nowrap {
    flex-wrap: nowrap;
}

.stretch {
    align-items: stretch;
}

.between {
    justify-content: space-between;
}

.even {
    justify-content: space-evenly;
}

.center {
    justify-content: center;
}

.end {
    justify-content: flex-end;
}

.gap {
    gap: 10px;
}

.flex-ai {
    align-items: center;
}

.content {
    width: 100%;
}

.mtb {
    margin: 10px 0;
}

@media only screen and (max-width: 768px) {
    .half { 
        width: auto;
    }
    .stretch {
        flex-flow: column wrap !important;
    }
}

.p20 {
    padding: 20px;
}

.primary {
    background-color: #fff;
}

.secondary {
    background-color: #F7B829;
    color: black;
}

.tertiary {
    border: thin solid #303030;
    width: 90%;
    margin: auto;
    border-radius: 25px;
}

.dark {
    background-color: black;
    color: white;
}

.secondary button {
    background-color: white;
    width: 200px;
    height: 35px;
    border: none;
    margin-bottom: .83em;
}

.third {
    width: 31%;
}

.background {
    width: 100%;
    height: 300px;
    background-image: url('https://www.metrogiant.com/CamoWraps/Template/assets/CW_Ad_Ebay-Header_1960x720_Militant-Yellow-Cumulus.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.xy-left {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%) translateX(-10%);

    width: 100%;
    text-align: left;
}

.background h1 {

    color: #F7B829;
    text-transform: uppercase;
    line-height: 87%;
    margin: 0;
    text-align: left;
    font-size: calc(.5vw + 3.5vh); /* Combination of viewport width and height */
padding-left: 10%;
max-width: 50%;
}


#footer {
    width: 100%;
    height: 50px;
    background-color: #303030;
    margin-top: 20px;
}

.border {
    border: 1px solid #999;
}

.footer-tab {
    background-color: #303030;
}

.footer-nav {
    text-align: center;
}

.footer-nav a {
    padding: 0 20px;
    text-decoration: none;
    color: #c1a354;
}

.footer-nav a:hover {
    color: rgb(110, 84, 17);
    transition: 0.2s;
}

#tabs {
    display: flex;
    flex-wrap: wrap;
}

#tabs a {
    color: grey;
    text-decoration: none;
    font-weight: 700;
}

#tabs a:hover {
    color: white;
}

#tabs .footer-tab:hover {
    background-color: black;
}

#tabs .border:hover {
    border-bottom: none;
}

.mc {
    margin: auto;
}

.text-center {
    text-align: center;
}

.icons img {
    max-height: 50px;
    max-width: 100px;
    margin: 10px;
}

@media only screen and (max-width: 768px) {
    .icons img {
        max-width: 100px;
    }
}

.mt100 {
    margin-top: 100%;
}

.product-type {
    width: 32%;
    background-size: cover;
    height: 125px;
}

@media only screen and (max-width: 768px) {
    .product-type {
        width: 48%;
    }
}

.relative {
    position: relative;
}

.product-type h2 {
    color: #fff;
}

.product-type:before {
    top: 0;
    left: 0;
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
}

.product-type:hover:before {
    background: rgba(0, 0, 0, 0.75);
    transition: .2s;
}
