@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/ubuntu-v20-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/ubuntu-v20-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
	   url('../fonts/ubuntu-v20-latin-italic.woff2') format('woff2'),
       url('../fonts/ubuntu-v20-latin-italic.ttf') format('truetype'),
	   url('../fonts/ubuntu-v20-latin-500.woff2') format('woff2'),
       url('../fonts/ubuntu-v20-latin-500.ttf') format('truetype'),
	   url('../fonts/ubuntu-v20-latin-500italic.woff2') format('woff2'),
       url('../fonts/ubuntu-v20-latin-500italic.ttf') format('truetype'),
	   url('../fonts/ubuntu-v20-latin-700.woff2') format('woff2'),
       url('../fonts/ubuntu-v20-latin-700.ttf') format('truetype'),
	   url('../fonts/ubuntu-v20-latin-700italic.woff2') format('woff2'),
       url('../fonts/ubuntu-v20-latin-700italic.ttf') format('truetype'),
}

body {
  background-color: #222222;
  color: #f5f5f5;
  margin: 0;
  font-family: Ubuntu, "Open Sans", Arial, sans-serif;
  font-weight: 500;
}
input,
textarea {
  font-family: Ubuntu, "Open Sans";
}
p {
  line-height: 30px;
}
a:link,
a:visited,
a:active,
a:hover {
  text-decoration: none;
}
input:focus,
textarea:focus {
  border: 1px solid #888888 !important;
  outline-style: none;
}

/* mobile-first */
.desktop-only {
  display: none;
}

#header {
  position: relative;
  top: 20px;
  transition: 0.5s;
  width: 100%;
  z-index: 5;
}
#main-header {
  background-color: #111111;
  display: none;
  height: 135px;
}
#mobile-header {
  height: 100px;
  text-align: center;
}
#mobile-header img {
  width: 90%;
}

/* header */

#main-menu {
  text-align: center;
  margin: 0;
}

#menu-logo{
    position: absolute;
    height: 80px;
    top: 0;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
}

.menu-item {
  padding-top: 20px;
  padding-left: 22px;
  line-height: 195px;
  list-style-type: none;
  display: inline;
  font-size: 18px;
  color: #111111;
  transition: 0.5s;
}
.menu-item img {
  height: 110px;
  margin-top: -25px;
  margin-bottom: -20px;
  position: relative;
  transition: 0.5s;
  vertical-align: middle;
  z-index: 1;
}

.menu-item a:link,
.menu-item a:visited {
  font-size: 18px;
  color: #eeeeee;
}
.menu-item a:active,
.menu-item a:hover {
  color: #ebc100;
}

/* menu dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-button {
  color: #eeeeee;
}
.dropdown-button i {
  font-size: 14px;
}
.dropdown-content {
  display: none;
  top: 135px;
  position: absolute;
  background-color: #111111;
  border-top: 3px solid #ebc100;
  min-width: 320px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 10px;
  text-align: left;
  z-index: 1;
}
.dropdown-content.last {min-width: 200px;}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown a:link,
.dropdown a:visited {
  font-size: 18px;
  color: #eeeeee;
}
.dropdown a:active,
.dropdown a:hover {
  color: #ebc100;
}
.dropdown-content a {
  line-height: 30px;
  height: 30px;
  display: block;
  padding-left: 10px;
}

/* Row min height */
.row{
  min-height: 500px;
}

/* sticky some icons */
#sticky-box {
  display: none;
  float: right;
  margin-right: 5px;
  position: sticky;
  position: -webkit-sticky;
  top: 200px;
  width: 50px;
  z-index: 1;
}
#sticky-box i {
  background-color: #ebc100;
  border: 1px solid #ebc100;
  border-radius: 50%;
  color: #222222;
  font-size: 30px;
  height: 50px;
  line-height: 50px;
  margin-bottom: 3px;
  text-align: center;
  transition: all 0.4s ease-in-out 0s;
  width: 50px;
}
#sticky-box i:hover {
  cursor: pointer;
  transform: rotate(360deg);
  transition: all 0.4s ease-in-out 0s;
}

/* Hide the images by default */
.mySlides {
  background-color: #ffffff;
  display: none;
  text-align: center;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 0.5s;
  animation-name: fade;
  animation-duration: 0.5s;
}
@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* footer */
.footer {
  background-color: #111111;
  padding: 10px 0 30px 0;
  width: 100%;
}
.footer::after {
  clear: both;
  content: "";
  display: table;
}
.footer-col {
  float: left;
  padding: 15px 20px 0 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.footer-col h3 {
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  text-align: left;
  border-bottom: 1px dotted #999;
  color: #999;
  width: 100%;
  line-height: 25px;
}
.footer-item {
  color: #ebc100;
  font-size: 14px;
  line-height: 30px;
  padding-top: 8px;
  vertical-align: middle;
}
.footer-item .icon {
  display: inline-block;
  font-size: 24px;
  line-height: 30px;
  vertical-align: middle;
  width: 40px;
}
.footer-item a {
  color: #ebc100;
}
.footer input,
.footer textarea,
.footer .submit {
  background-color: #eeeeee;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 12px;
  margin: 15px 0 0 0;
  padding: 10px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.footer textarea {
  height: 80px;
  margin-bottom: -5px;
  margin-top: 10px;
}
.footer .submit {
  background-color: #ebc100;
  border-color: #333333;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 26px;
  margin-top: 10px;
  text-align: center;
  vertical-align: middle;
}
.footer .submit:hover {
  border-color: #333333;
  cursor: pointer;
}

/* fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* bigger screens */
@media only screen and (min-width: 568px) {
  .footer-col {
    width: 50%;
  }
}
@media only screen and (min-width: 1025px) {
  body {
    margin-top: -65px;
  }

  #header {
    position: sticky;
    position: -webkit-sticky;
  }
  #main-header {
    display: block;
  }
  #mobile-header {
    display: none;
  }
  #popup-box {
    background-color: red;
    border-radius: 10px 0 10px 0;
    color: white;
    float: right;
    margin-top: -140px;
    margin-right: 0;
    padding: 10px;
  }
  #sticky-box {
    display: block;
  }

  .desktop-only {
    display: block;
  }
}

/* obsolete?? */
.info-header {
  font-weight: 500;
  padding-left: 20%;
  text-align: left;
  font-size: 18px;
}
.menu-image {
  padding-left: 22px;
  float: left;
  list-style-type: none;
  display: inline-block;
}
