/* CSS Style */

/* Global */
html, body {
margin: 0;
padding: 0;
font-family: 'Segoe UI Light', sans-serif;
}

/* Top Banner - Default */
.top-banner {
  background-color: #BB8822;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

/* Top Banner - Mobile */
@media screen and (max-width: 480px) {
.top-banner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: auto;
  }
  
.top-banner p {
    margin: 2px 0;
  }
}

.sales-hotline {
display: inline-block;
}

.company-info {
display: inline-block;
float: right;
}

/* Main Banner Default*/ 
.main-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 1px;
  border-bottom: 1px solid #BB8822;
}
.logo {
  width: 180px;
  margin-left: 10px;
}
/* Main Menu */
.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  margin-right: 2px;
}
.main-menu ul li {
  list-style: none;
  margin: 0;
  padding: 0 10px;
}
.main-menu ul li a {
  text-decoration: none;
  color: #888;
  font-weight: normal;
  font-size: 14px;
}
.main-menu ul li a:hover {
  color: #BB8822;
  font-weight: bold;
  font-size: 18px;
}


/* Line Separator */
.line-separator {
height: 1px;
background-color: #FFF;
border: none;
margin: 0;
}

/* Main Body */
.main-body {
  margin: 20px 0;
  padding: 0 20px;
}
.main-header, .sub-header {
  color: #BB8822;
  font-weight: bold;
}
.main-header {
  font-size: 1.5em;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.sub-header {
  font-size: 1.2em;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.paragraph-text {
  font-size: 1em;
  line-height: 1.2em;
  margin-bottom: 1em;
}
.paragraph-smalltext {
  font-size: 0.8em;
  line-height: 1.0em;
  margin-bottom: 0.8em;
}
.text-left {
  text-align: left;
  margin-right: 2px;
  font-size: 14px;
}
.text-right {
  text-align: right !important;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
  margin-top: 1em;
  margin-bottom: 1em;
}

.image-grid {
  margin: 20px 0;
  justify-content: center
}

.image-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 10px;
  justify-content: center;
  align-content: center;
  margin: 0 auto;
  height: auto;
}
.image-grid1 {
  margin: 20px 0;
  justify-content: center
}

.image-grid-container1 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-gap: 10px;
  justify-content: center;
  align-content: center;
  margin: 0 auto;
  height: auto;
}
.image-grid-container1 img:hover {
  box-shadow: 0 0 10px rgba(188, 132, 38, 0.5);
}




/* Bottom Table */
.table-container {
  position: relative;
  bottom: 1px;
  left: 0;
  width: 100%;
  background-color: #FFE5CC;
  padding: 10px;
  text-align: center;
}

table {
  border-collapse: collapse;
  width: 100%;
  color: #000
}

td {
  padding: 10px;
  text-align: left;
}


/* Bottom Banner */
.bottom-banner {
  position: bottom;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #FFF;
  color: #AAA;
  font-size: 12px;
  text-align: center;
  padding: 10px;
}


/* End of CSS */

