/* STYLE SHEET FOR QUALITY COMPONENT SUPPLY WEBSITE - UPDATED DECEMBER 2021 */

/* HEADER / NAVIGATION BAR STYLE */
/* Credit to github.com/shadeed for original */

.bannerlogo {
    font-weight: bold;
    font-size: 20px;
}
  
.site-header {
    position: relative;
    background-color: #1d3c59; 
    display: flex;
    z-index: 1000;
}

.site-header a {
    color: #ffffff;
    text-decoration: none;
}

.site-header a img {
    width: 175px;
}

.site-header a:hover {
    color: #dbd967;
}

.nav-toggle {
    font-size: 22px;
    background-color: #1d3c59;
    color: #dbd967;
    border: 2px solid #dbd967;
    border-radius: 10px;
    height: 35px;
    width: 35px;
    text-align: center;
}

/* CONTACT SHEET / HEADER STYLE */

#contact {
    background-color: #ffffff;
}
#contact h1{
    margin-top: 20px;
    margin-left: 20px;
    font-size: 2.488rem;
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 10px;
}

#contact h3{
    margin-left: 30px;
    margin-right: 20%;
    margin-bottom: 10px;
    border-radius: 8px;
    padding-left: 10px;
    font-size: 1.2rem;
    font-family: 'Roboto', sans-serif;
    line-height: 1.2;
    background-color: #d6d6d6;
}

/* ABOUT STYLE */

#about h2 {
    margin-left: 10px;
    margin-top: 10px;
    font-size: 1.728rem;
    font-family: 'Bebas Neue', sans-serif;
}

#about p {
    margin-top: 10px;
    margin-left: 20px;
    font-size: 1.2rem;
    font-family: 'Roboto', sans-serif;
    
}

#about ul {
    list-style-type: disclosure-closed;
    margin-top: 10px;
    margin-left: 20px;
    font-size: 1.2rem;
    font-family: 'Roboto', sans-serif;
}

#about li {
    margin-top: 10px;
}

/* LINE CARD STYLE */

#linecard h1 {
    margin-left: 20px;
    font-size: 9vw;
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 10px;
}

#linecard img {
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 20px;
    width: 80%;
}

#linecard p {
    margin-top: 10px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 4vw;
    font-family: 'Roboto', sans-serif;
}

#linecard b {
    font-weight: bold;
}

/* FOOTER STYLE */

footer { 
    text-align: center;
}

footer p {
    font-family: 'Roboto', sans-serif;
}

#footercompanyname {
    font-weight: bold;
}

/* CATALOG STYLE */

iframe {
    width: 100%;
    height: 50em;
}

@media (min-width: 1000px) {
    #contact h1 {
        font-size: 2.986rem;
    }

    #contact h3 {
        font-size: 1.44rem;
    }

    #menuButton {
        display: none;
    }
}

@media (min-width: 1440px) {
    #contact h1 {
        font-size: 3.583rem;
    }

    #contact h3 {
        font-size: 1.44rem;
        margin-right: 60%;

    }

    #about h2 {
        font-size: 2.074rem;
    }

    #about p {
        font-size: 1.44rem;
    }

    #about li {
        font-size: 1.44rem;
    }

    #about {
        display: flex;
    }
    
    .about-column {
        flex: 50%;
    }
}

.site-header__wrapper {
    padding-top: .5rem;
    padding-bottom: .5rem; }
    @media (min-width: 1000px) {
      .site-header__wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 0;
        padding-bottom: 0; } }
  @media (min-width: 1000px) {
    .nav__wrapper {
      display: flex; } }
  
  @media (max-width: 999px) {
    .nav__wrapper {
      position: absolute;
      top: 100%;
      right: 0;
      left: 0;
      z-index: -1;
      background-color: #1d3c59;
      visibility: hidden;
      opacity: 0;
      transform: translateY(-100%);
      transition: transform 0.3s ease-out, opacity 0.3s ease-out; }
      .nav__wrapper.active {
        visibility: visible;
        opacity: 1;
        transform: translateY(0); } }
  
  
  
  @media (min-width: 1000px) {
    .nav__item:first-child a {
      border-left: 1px solid #b5b5b5; } }
  
  .nav__item a {
    display: block;
    padding: 1.5rem 1rem; }
    @media (min-width: 1000px) {
      .nav__item a {
        border-right: 1px solid #b5b5b5; } }
  .nav-toggle {
    display: none; }
    @media (max-width: 999px) {
      .nav-toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: .4rem; } }