*{
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}

body{
    line-height: 1.4;
    color: rgb(44, 44, 44);
    background-color: black;
    overflow-x: hidden;
}

.container{
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

header{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

.navbar{
    background: rgba(0, 0, 0, 1);
}

.navbar-brand{
    color: #ffc000;
    font-size: 2rem;
    display: block;
    text-align: center;
    text-decoration: none;
    letter-spacing: 1px;
    padding-top: 2rem;
}

.navbar-nav{
    padding: 0.8rem 3rem 3rem ;
    text-align: center;
}

.navbar-nav ul {
	display: grid;
	gap: .1rem;
	grid-auto-flow: column;
}

.navbar-nav ul li {
	list-style-type: none;
}

.alert { color:red; }

.flyoutcontainer {
	position:relative;
}

.flyoutcontainer:hover .flyoutlist {
	display: block;
}

.flyoutlist {
	-webkit-column-count: 3;  /* Chrome, Safari, Opera */
	-moz-column-count: 3;     /* Firefox */
	column-count: 3;
	position:absolute;
	display: none;
	width: 500%;
	padding:10px;
	border-radius: 10px;
	background-color:#efefef;
}

.flyoutlist div a {
	color:#0e0e0e;
	text-decoration:none;
}

.flyoutlist div a:hover {
	text-decoration:underline;
}

.navbar-nav a{
    font-weight: 500;
    color: #ffc000;
    display: inline-block;
    padding: 0.4rem 0.1rem;
    transition: opacity 0.5s ease;
    padding-left: 15px;
}

.navbar-nav a:hover{
    opacity: 0.7;
}

.login-right{
    position:absolute;
    top: 0;
    right: 0;
    text-align: center;
}

.login-right a{
    font-weight: 500;
    color: #ffc000;
    padding: 6px;
}

.login-right img{
    margin-top: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    width: 140px;
}

.login-right a:hover{
    opacity: 0.7;
}

.navbar-nav form{
    background: #fff;
    border-radius: 0.5rem;
    padding: 0.6rem 1rem;
    display: flex;
    justify-content: space-between;
    width: 30%;
    height: 23px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.search-input{
    font-size: 0.83rem;
    width: 100%;
    outline: 0;
    padding: 0.6rem 0;
    border: none;
}

.search-input::placeholder{
    text-transform: capitalize;
}

.search-btn{
    width: 40px;
    font-size: 1.1rem;
}

.product{
    display: inline-block;
    text-align: center;
    background-color: black;
}

.product-title{
    color: #fff;
}

@media (max-width: 768px) {
    .navbar-nav form{
        margin-left: auto;
        margin-right: auto;
    }

    .login-right{
        display: none;
    }
}

@media (min-width: 760px) and (max-width: 1280px) {
    .navbar-nav form{
        margin-left: auto;
        margin-right: auto;
    }
} 

.left-count{
    text-align: center;
    display: inline-block;
    margin-top: 40px;
    margin-left: 200px;
    margin-bottom: 40px;
}

.left-count a{
    font-weight: 600;
    color: #ffc000;
    text-decoration: none;
    padding: 6px;
    font-size: 20px;
    text-align: center;
}

.left-count a:hover{
    opacity: 0.7;
}

.hersteller{
    text-align: center;
    display: inline-block;
    margin-top: 40px;
    margin-left: 200px;
    margin-bottom: 40px;
}

.hersteller a{
    font-weight: 600;
    color: #ffc000;
    text-decoration: none;
    padding: 6px;
    font-size: 20px;
    text-align: center;
}

.hersteller a:hover{
    opacity: 0.7;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
  justify-content: center;
}

.column {
  flex: auto;
  max-width: 25%;
  padding: 0 8px;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

.column h2{
  text-align: center;
  color: #fff;
  margin-bottom: 5px;
  background-color: rgb(87, 87, 87);
}

.column h3{
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
}

.column p{
    text-align: center;
    color: #fff;
}

.column h1{
    color: #fff;
    display: inline-block;
    padding: 7px;
}

.column a{
    color: #fff;
    display: inline-block;
    padding: 7px;
}
  
.column img {
    margin-top: 20px;
    margin-bottom: 20px;
    vertical-align: middle;
    width: 100%;
    border: 2px solid #fff;
}
  

@media screen and (max-width: 800px) {
    .column {
      flex: 50%;
      max-width: 50%;
    }
  }
  
  @media screen and (max-width: 600px) {
    .column {
      flex: 100%;
      max-width: 100%;
    }
}

.dummy_page {
  height: 200px;
  width: 100%;
  background-color: #f0f0f0;
  text-align: center;
  box-sizing: border-box;
  padding: 60px 0px;
}

.footer {
  width: 100%;
  position: relative;
  height: auto;
  background-color: rgb(31, 31, 31);
}

.footer img{
    width: 100px;
    background-color: #fff;
}

.footer p {
    color: rgb(192, 192, 192);
    font-size: 14px;
    font-family: inherit;
    font-weight: bold;
    padding: 5px 0px 5px 0px;
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
}

.footer .col {
  width: 240px;
  height: auto;
  float: left;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding: 0px 20px 20px 20px;
}

.footer .col h1 {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 12px;
  line-height: 17px;
  padding: 20px 0px 5px 0px;
  color: #fff;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.250em;
}

.footer .col a{
    text-decoration: underline;
    text-decoration-color: #fff;
}

.footer .col ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.footer .col ul li {
  color: rgb(192, 192, 192);
  font-size: 14px;
  font-family: inherit;
  font-weight: bold;
  padding: 5px 0px 5px 0px;
  cursor: pointer;
  transition: .2s;
  -webkit-transition: .2s;
  -moz-transition: .2s;
}

.bottom p{
    text-align: center;
    background-color: #000;
}

.social ul li {
  display: inline-block;
  padding-right: 5px !important;
}

.footer .col ul li:hover {
  color: #ffc000;
  text-decoration-color: #ffc000;
  transition: .1s;
  -webkit-transition: .1s;
  -moz-transition: .1s;
}

.clearfix {
  clear: both;
}

@media only screen and (min-width: 1280px) {
  .contain {
    width: 1200px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 1139px) {
  .contain .social {
    width: 1000px;
    display: block;
  }
  .social h1 {
    margin: 0px;
  }
}

@media only screen and (max-width: 950px) {
  .footer .col {
    width: 33%;
  }
  .footer .col h1 {
    font-size: 14px;
  }
  .footer .col ul li {
    font-size: 13px;
  }
}

@media only screen and (max-width: 500px) {
    .footer .col {
      width: 50%;
    }
    .footer .col h1 {
      font-size: 14px;
    }
    .footer .col ul li {
      font-size: 13px;
    }
}

@media only screen and (max-width: 340px) {
  .footer .col {
    width: 100%;
  }
}