.global-padding-top {
  padding-top: 45px; }

.margin-top {
  margin-top: 30px; }

.black-color {
  color: #262b2e; }

.red-color {
  color: red; }

.green-color {
  color: #339966; }

@media screen and (max-width: 768px) {
  .sm-hide {
    display: none; } }

@media screen and (max-width: 992px) {
  .md-hide {
    display: none; } }

@media screen and (max-width: 1200px) {
  .lg-hide {
    display: none; } }

.sm-show {
  display: none; }
  @media screen and (max-width: 768px) {
    .sm-show {
      display: block; } }

.md-show {
  display: none; }
  @media screen and (max-width: 992px) {
    .md-show {
      display: block; } }

.lg-show {
  display: none; }
  @media screen and (max-width: 1200px) {
    .lg-show {
      display: block; } }

.border-right {
  border-right: 1px solid #E8E9E9; }

.border-left {
  border-left: 1px solid #E8E9E9; }

.border-bottom {
  border-bottom: 1px solid #E8E9E9; }

.border-top {
  border-top: 1px solid #E8E9E9; }

@media screen and (min-width: 768px) {
  .border-sm-right {
    border-right: 1px solid #E8E9E9; } }

@media screen and (min-width: 768px) {
  .border-sm-left {
    border-left: 1px solid #E8E9E9; } }

@media screen and (min-width: 768px) {
  .border-sm-bottom {
    border-bottom: 1px solid #E8E9E9; } }

@media screen and (min-width: 768px) {
  .border-sm-top {
    border-top: 1px solid #E8E9E9; } }

@media screen and (min-width: 992px) {
  .border-md-right {
    border-right: 1px solid #E8E9E9; } }

@media screen and (min-width: 992px) {
  .border-md-left {
    border-left: 1px solid #E8E9E9; } }

@media screen and (min-width: 992px) {
  .border-md-bottom {
    border-bottom: 1px solid #E8E9E9; } }

@media screen and (min-width: 992px) {
  .border-md-top {
    border-top: 1px solid #E8E9E9; } }

.double-border {
  height: 3px;
  border-top: 1px solid #E8E9E9;
  border-bottom: 1px solid #E8E9E9; }

.border-top {
  border-top: 1px solid #E8E9E9; }

.relative {
  position: relative; }

.clearfix {
  overflow: auto; }

.clearfix::after {
  content: "";
  clear: both;
  display: table; }

.bg-gray {
  background-color: #F3F3F3; }

.gray-color {
  color: #676b6d; }

a {
  text-decoration: none !important; }

.grid-columns a {
  color: #FFBD00; }

.padding-left-1 {
  padding-left: 0px; }

.padding-left-2 {
  padding-left: 25px; }

.padding-left-3 {
  padding-left: 50px; }

.padding-left-4 {
  padding-left: 75px; }

.padding-left-5 {
  padding-left: 100px; }

.padding-left-6 {
  padding-left: 125px; }

.padding-left-7 {
  padding-left: 150px; }

.padding-left-8 {
  padding-left: 175px; }

.padding-left-9 {
  padding-left: 200px; }

.padding-left-10 {
  padding-left: 225px; }

b {
  color: #676b6d; }

a {
  color: #FFBD00; }

.search-products h4 {
  margin: 15px 0;
  color: #262b2e; }
.search-products button {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  color: #262b2e; }

h1 {
  color: #FFBD00;
  font-size: 50px; }

.lead {
  font-size: 25px;
  font-weight: 500; }

h4 {
  color: #FFBD00; }

p.price-exluded-vat {
  font-size: 21px;
  color: #9e9e9e;
  margin: 0; }

p.price-included-vat {
  font-size: 21px;
  color: black;
  margin: 0; }

.title-container {
  background-color: #F2F3F3;
  padding: 30px 0; }
  .title-container h2 {
    color: black;
    font-size: 36px; }

#fixed-header {
  display: none;
  opacity: 0; }

#loader-container {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 99999999;
  background-color: #FFBD00; }
  #loader-container img {
    margin-top: 45px; }

.loader {
  border: 5px solid #FFBD00;
  /* Light grey */
  border-top: 5px solid white;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  animation: spin 0.7s linear infinite; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
.loader-2 {
  border: 5px solid #FFBD00;
  /* Light grey */
  border-top: 5px solid #262b2e;
  /* Blue */
  border-radius: 50%;
  width: 110px;
  height: 110px;
  margin: 0 auto;
  animation: spin-2 0.35s linear infinite; }

@keyframes spin-2 {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(-360deg); } }
/*.loader-3
{
  border: 5px solid $main-color;
  border-top: 5px solid white;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  animation: spin-3 0.35s linear infinite;
}

@keyframes spin-3 {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-4
{
  border: 5px solid $main-color;
  border-top: 5px solid black;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  margin: 0 auto;
  animation: spin-4 0.35s linear infinite;
}

@keyframes spin-4 {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}*/
#product-ajax-loader-container {
  margin: 120px 0; }
  #product-ajax-loader-container .product-ajax-loader {
    border: 5px solid white;
    /* Light grey */
    border-top: 5px solid #FFBD00;
    /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    animation: spin 0.7s linear infinite; }
  #product-ajax-loader-container .product-ajax-loader-2 {
    border: 5px solid white;
    /* Light grey */
    border-top: 5px solid #262b2e;
    /* Blue */
    border-radius: 50%;
    width: 110px;
    height: 110px;
    margin: 0 auto;
    animation: spin-2 0.35s linear infinite; }

.mobile-cart .quantity {
  margin: 15px auto;
  width: 75px; }

.top-products-container h1 {
  opacity: 0; }
.top-products-container p.lead {
  opacity: 0; }
.top-products-container .homepage-previewed-products div[class*=' col'], .top-products-container div[class^='col'] {
  opacity: 0; }

.go-up-arrow {
  opacity: 0;
  width: 60px;
  height: 60px;
  color: white;
  position: fixed;
  bottom: 60px;
  right: 60px;
  border-radius: 5px;
  padding-top: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 999; }
  .go-up-arrow i {
    font-size: 34px; }
  .go-up-arrow:hover {
    background-color: rgba(0, 0, 0, 0.5); }

.img-top-products {
  width: 100%;
  height: auto;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 15px; }

.form-control:focus {
  border-color: #FFBD00; }

.hotline-fixed {
  z-index: 999;
  background-color: white;
  padding: 15px;
  position: fixed;
  right: -210px;
  top: 45%;
  width: 300px;
  height: 100px;
  border: 2px solid #B3B5B6;
  border-radius: 4px;
  border-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s; }
  .hotline-fixed:hover {
    transform: translateX(-210px);
    -ms-transform: translateX(-210px);
    -webkit-transform: translateX(-210px); }
  .hotline-fixed .icon {
    float: left;
    width: 30%;
    padding: 10px; }
  .hotline-fixed .text {
    float: left;
    width: 70%; }
    .hotline-fixed .text h3 {
      margin-top: 3px;
      font-size: 24px;
      color: #262b2e; }
    .hotline-fixed .text p {
      color: #262b2e;
      font-size: 16px;
      font-weight: 400; }
  .hotline-fixed i {
    color: #008000;
    font-size: 50px; }

.user-login {
  width: 80%;
  margin: 60px auto; }
  .user-login h4 {
    color: #262b2e; }

.btn-primary {
  background-color: #FFBD00 !important;
  border-color: #FFBD00 !important;
  color: #262b2e; }
  .btn-primary:hover {
    color: #262b2e; }

.bg-primary {
  background-color: #FFBD00 !important; }
  .bg-primary:hover {
    background-color: #ffca33 !important; }

a.bg-primary {
  background-color: #FFBD00 !important; }
  a.bg-primary:hover {
    background-color: #ffca33 !important; }
  a.bg-primary:focus {
    background-color: #ffca33 !important; }

button.btn, input[type=submit] {
  cursor: pointer; }

#slider-range {
  height: 7px;
  border: 0;
  background-color: #BB7000; }
  #slider-range .ui-slider-handle {
    border-radius: 50%;
    height: 17px;
    width: 17px;
    border: 6px solid #FFBD00;
    outline: none; }
  #slider-range .ui-slider-range {
    background-color: #FFBD00; }

.products {
  margin-bottom: 60px; }
  .products table {
    margin-bottom: 0; }
  .products td, .products th {
    padding-left: 0;
    padding-right: 0; }
    .products td p, .products th p {
      margin: 5px 0; }
  .products .price {
    margin-bottom: 5px; }
  .products h5 {
    height: 100px; }
  .products .img {
    width: 80%;
    height: 250px;
    margin: 0 auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; }
  .products .img-container {
    text-align: center; }
  .products .product {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 15px;
    transition: all .3s linear; }
    .products .product:hover {
      -webkit-box-shadow: 0px 0px 6px 0px #7d7d7d;
      -moz-box-shadow: 0px 0px 6px 0px #7d7d7d;
      box-shadow: 0px 0px 6px 0px #7d7d7d; }
  .products .td-button {
    padding-bottom: 0; }
  .products h5 a {
    color: #212529; }
    .products h5 a:hover {
      color: #FFBD00; }
  .products small {
    font-size: 12px;
    font-weight: 800; }
  .products .price {
    font-weight: 800; }

.homepage-previewed-products .img {
  width: 80%;
  height: 170px;
  margin: 0 auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center; }
.homepage-previewed-products h4 {
  text-transform: uppercase; }

.product-list-filter h5 {
  height: 24px; }
.product-list-filter .filter-box {
  min-height: 175px; }
.product-list-filter .other-filters {
  display: none; }

.product-view {
  padding-top: 45px; }

.product-detail h1 {
  color: #262b2e;
  font-size: 23px;
  line-height: 35px; }
.product-detail small {
  font-size: 12px;
  font-weight: 800; }
.product-detail .price {
  font-weight: 800; }
.product-detail .pdf-links a {
  color: #FFBD00;
  text-decoration: underline !important; }
.product-detail .pdf-links {
  margin-top: 30px; }
.product-detail h5 {
  margin-top: 30px; }
.product-detail .tags, .product-detail .tags a {
  font-size: 13px;
  color: rgba(103, 107, 109, 0.5); }
.product-detail .tags a {
  text-decoration: underline !important; }
.product-detail .phone-order {
  color: gray; }
  .product-detail .phone-order p {
    font-size: 14px; }
  .product-detail .phone-order h5 {
    font-weight: bold; }
.product-detail .slider-nav img {
  margin-left: 5px;
  margin-right: 5px; }
.product-detail .nav-item {
  color: #FFBD00; }
.product-detail .tab-content {
  margin-top: 30px; }
.product-detail table {
  color: #676b6d; }
.product-detail .product-image-gallery {
  padding-top: 60px; }
.product-detail .slider-nav {
  margin: 15px 0; }
.product-detail .nav-tabs {
  margin-top: 30px; }
.product-detail .add-to-cart {
  margin-bottom: 30px;
  /*@media screen and (max-width: 575px) {
    input[type="number"]
    {
      width: 100%;
    }
  }*/ }
  @media screen and (max-width: 575px) {
    .product-detail .add-to-cart .btn {
      margin-top: -4px; } }
  .product-detail .add-to-cart input[type="number"] {
    width: 75px;
    display: inline-block; }
@media screen and (max-width: 575px) {
  .product-detail .phone-order-form .btn {
    margin-top: -4px; }
  .product-detail .phone-order-form input[type="text"] {
    width: 120px;
    display: inline-block; } }

.homepage-news h2 {
  margin-bottom: 30px; }
.homepage-news h4 {
  color: #262b2e; }
  .homepage-news h4:hover {
    color: #FFBD00; }
.homepage-news p {
  color: #676b6d; }
.homepage-news .prev-img {
  height: 200px;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 0; }
.homepage-news .new {
  margin-bottom: 45px; }

.hr-thin {
  border-bottom: 4px solid #E8E9E9;
  margin: 60px 0; }

ul.pagination a {
  color: #262b2e;
  background-color: #F3F4F4;
  border-color: #F3F4F4; }
  ul.pagination a:hover {
    border-color: #F3F4F4;
    color: #FFBD00;
    background-color: #F3F4F4; }
ul.pagination i {
  color: #B3B5B6; }
ul.pagination a.active {
  color: white;
  background-color: #FFBD00; }

.navbar .navbar-brand img {
  width: 100%; }

.cart-detail {
  padding-top: 45px; }
  .cart-detail .phone-order .gray-box {
    padding: 20px;
    background-color: #F3F3F3;
    font-size: 24px; }
  .cart-detail .phone-order input {
    margin-top: 12px; }
  .cart-detail h2 {
    margin-top: 30px;
    color: #B3B5B6; }
  .cart-detail thead tr {
    background-color: #F3F3F3; }
  .cart-detail thead tr.highlighted {
    background-color: #FFBD00; }
  .cart-detail thead th {
    border-top: 0;
    border-bottom: 0; }
  .cart-detail table {
    margin-bottom: 0; }
  .cart-detail th.tight {
    width: 100px; }
  .cart-detail td a {
    color: #262b2e; }
    .cart-detail td a:hover {
      color: #FFBD00; }
  .cart-detail td {
    vertical-align: middle; }
  .cart-detail .gray-box {
    padding: 20px;
    background-color: #F3F3F3; }
  .cart-detail h3 {
    color: #262b2e;
    margin-bottom: 15px; }
  .cart-detail .total-summary {
    margin-top: 60px; }
    .cart-detail .total-summary td {
      height: 45px; }
    .cart-detail .total-summary td.tight {
      width: 150px; }
    .cart-detail .total-summary .highlighted {
      color: #FFBD00; }
    .cart-detail .total-summary table {
      font-size: 18px;
      margin-bottom: 15px; }
  .cart-detail .order-info {
    font-size: 16px; }
    .cart-detail .order-info ul {
      padding-left: 20px; }

.info-message {
  background-color: #F3F3F3;
  border-radius: 5px;
  padding: 15px 15px 15px 45px;
  position: relative;
  margin-bottom: 30px; }
  .info-message .icon {
    position: absolute;
    top: 0;
    left: 10px;
    height: 45px;
    width: 25px;
    background-color: #FFBD00;
    color: white;
    text-align: center;
    padding-top: 15px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px; }
  .info-message a {
    color: #FFBD00; }

tr.highlighted {
  background-color: #FFBD00; }

.category {
  margin-top: 45px; }
  .category .filter .toggle-filter {
    color: #262b2e;
    text-decoration: none; }
  .category .filter i {
    color: #FFBD00; }

#cart-header {
  position: relative; }
  #cart-header i {
    color: #262b2e; }
  #cart-header .popup {
    position: absolute;
    background-color: white;
    padding: 15px 15px;
    border: 1px solid #eee;
    display: none;
    top: 32px;
    right: -20px;
    z-index: 999;
    width: 260px;
    border-radius: 3px; }
    #cart-header .popup #triangle {
      width: 0;
      height: 0;
      border-left: 12px solid transparent;
      border-right: 12px solid transparent;
      border-bottom: 15px solid white;
      position: absolute;
      right: 1px;
      top: -25px;
      z-index: 100; }
  #cart-header h6 {
    font-size: 13px;
    color: #262b2e;
    margin-bottom: 0; }
    #cart-header h6:hover {
      color: #FFBD00; }
  @media screen and (min-width: 992px) {
    #cart-header:hover .popup {
      display: block; } }
  #cart-header .total-price {
    color: #262b2e;
    float: right;
    margin-left: 10px;
    margin-top: 6px; }
  #cart-header .circle {
    color: #262b2e;
    background-color: white;
    font-size: 8px;
    font-weight: bold;
    padding: 3px;
    text-align: center;
    width: 18px;
    border-radius: 50%;
    float: right;
    margin-left: 10px;
    margin-top: 9px; }
  #cart-header:hover .circle {
    background-color: #FFEBB2; }
  #cart-header:hover i, #cart-header:hover .total-price {
    color: #4F3B00; }
  #cart-header .img {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 70px; }
  #cart-header .product-quantity {
    font-size: 13px;
    color: rgba(38, 43, 46, 0.5); }
  #cart-header .overall-price {
    color: #B3B5B6;
    font-size: 13px;
    margin: 10px 0; }
    #cart-header .overall-price b {
      color: #262b2e; }
  #cart-header .image-container {
    position: relative; }
  #cart-header .remove-product {
    top: 5px;
    left: 5px;
    width: 20px;
    height: 20px;
    line-height: 18px;
    background-color: white;
    text-align: center;
    position: absolute;
    border-radius: 50%; }
    #cart-header .remove-product i {
      color: #FFBD00; }
    #cart-header .remove-product:hover {
      background-color: #FFBD00; }
      #cart-header .remove-product:hover i {
        color: white; }

.article-view .img {
  margin-top: 30px;
  height: 280px;
  background-position: center;
  background-size: cover; }

.product-search .search-item {
  padding-top: 10px;
  border-left: 1px solid #B3B5B6;
  border-right: 1px solid #B3B5B6;
  height: 100px; }
  .product-search .search-item:last-child {
    border-bottom: 1px solid #B3B5B6; }
.product-search .img {
  height: 80px;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center; }

#search-response {
  position: absolute;
  z-index: 99;
  background-color: white;
  width: 100%;
  top: 10px;
  left: 0; }
  #search-response ul {
    height: 400px;
    overflow-y: auto; }

.search-container {
  width: 100%;
  position: relative; }

#search-triangle {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 15px solid #F6F6F6;
  position: absolute;
  left: 45px;
  bottom: -12px;
  z-index: 100; }

.power-calculator .gray-box {
  margin-top: 60px;
  background-color: #FBFBFB;
  padding: 45px; }
.power-calculator h5 {
  margin-top: 30px; }
.power-calculator h5.no-margin {
  margin-top: 0; }
.power-calculator .hint-box {
  margin-top: 30px;
  border: 1px dashed #B3B5B6;
  padding: 30px 45px 23px 45px; }
  .power-calculator .hint-box p {
    font-size: 12px;
    color: #676b6d;
    margin-bottom: 7px; }

.related-news .title {
  color: #B3B5B6;
  position: relative;
  margin-top: 75px;
  margin-bottom: 30px; }
.related-news .text {
  background-color: #FFFFFF;
  position: absolute;
  left: 0;
  top: -13px;
  padding-right: 15px; }
.related-news .line {
  border-bottom: 1px solid #B3B5B6; }
.related-news .img {
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 0; }
.related-news h6 {
  text-transform: uppercase;
  color: #212529; }
  .related-news h6:hover {
    color: #FFBD00; }
.related-news p {
  color: rgba(103, 107, 109, 0.5); }

.article-navigation {
  border-bottom: 1px solid #B3B5B6;
  padding: 5px 0; }
  .article-navigation a {
    color: #B3B5B6; }
    .article-navigation a:hover {
      color: #FFBD00; }

.warranty p {
  margin-bottom: 60px;
  font-size: 16px; }

.homepage-boxes p {
  font-size: 14px; }

.article-list .article {
  border-top: 1px solid rgba(103, 107, 109, 0.15);
  padding: 30px 0; }
  .article-list .article .img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 165px; }
  .article-list .article h3 {
    color: #0f0f0f;
    text-transform: uppercase; }
    .article-list .article h3:hover {
      color: #FFBD00; }
  .article-list .article p {
    font-size: 14px;
    color: #676b6d; }
  .article-list .article .more-info {
    color: #262b2e; }
    .article-list .article .more-info:hover {
      color: #FFBD00; }
    .article-list .article .more-info i {
      color: #B3B5B6; }
  .article-list .article:first-child {
    border: none; }

.sidebar-cart {
  margin-bottom: 15px; }
  .sidebar-cart h4 {
    color: #262b2e; }
  .sidebar-cart h6 {
    font-weight: 400;
    color: #262b2e; }
    .sidebar-cart h6:hover {
      color: #FFBD00; }
  .sidebar-cart .product-quantity {
    font-size: 14px;
    margin-bottom: 15px; }
  .sidebar-cart .img {
    width: 100%;
    height: 75px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; }
  .sidebar-cart .image-container {
    padding-right: 0; }
  .sidebar-cart .total-price {
    font-size: 14px;
    margin-bottom: 15px; }
    .sidebar-cart .total-price .light {
      color: #B3B5B6; }
  .sidebar-cart .btn {
    margin-bottom: 15px; }

.sidebar-search {
  margin-bottom: 15px; }
  .sidebar-search h4 {
    color: #262b2e; }
  .sidebar-search .card-header {
    position: relative; }
  .sidebar-search .found-products {
    margin-bottom: 15px; }
    @media screen and (min-width: 991px) {
      .sidebar-search .found-products {
        position: absolute;
        z-index: 99;
        width: 250%;
        top: -60px;
        left: 102%; } }
  .sidebar-search ul {
    max-height: 400px;
    overflow-y: auto; }
  .sidebar-search .triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 20px 15px;
    border-color: transparent transparent #F6F6F6 transparent;
    position: absolute;
    top: -19px; }
    @media screen and (min-width: 991px) {
      .sidebar-search .triangle {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 15px 10px 0;
        border-color: transparent #F6F6F6 transparent transparent;
        position: absolute;
        left: -14px;
        top: 15px; } }

.sidebar-filter {
  margin-bottom: 15px; }
  .sidebar-filter h4 {
    color: #262b2e; }
  .sidebar-filter .btn {
    margin-bottom: 15px; }
  .sidebar-filter .range-picker {
    padding: 15px 0; }

.sidebar-categories {
  margin-bottom: 15px; }
  .sidebar-categories h4 {
    color: #262b2e; }
  .sidebar-categories ul {
    list-style: none;
    padding-left: 10px; }
  .sidebar-categories ul.nopadding {
    padding-left: 0; }
  .sidebar-categories .title {
    padding: 5px 0; }
  .sidebar-categories a {
    color: #262b2e; }
    .sidebar-categories a:hover {
      color: #FFBD00; }
  .sidebar-categories li {
    line-height: 16px; }
  .sidebar-categories .sub-category {
    font-weight: 100;
    font-style: italic; }
  .sidebar-categories .top-category {
    font-weight: 500; }

.side-categories {
  background-color: #F5F6F7;
  padding: 15px 30px;
  border-radius: 5px; }
  .side-categories h4 {
    color: #FFBD00;
    font-weight: bold;
    border-bottom: 2px solid #FFBD00;
    margin-bottom: 15px;
    padding-bottom: 6px; }
  .side-categories ul {
    list-style: none;
    padding-left: 0; }
  .side-categories li {
    margin: 8px 0; }
    .side-categories li span {
      color: rgba(103, 107, 109, 0.5); }
  .side-categories a {
    color: black;
    font-weight: 600;
    font-size: 17px; }
    .side-categories a:hover {
      color: #FFBD00; }

.main-header .nav-contact {
  background-color: #FFBD00; }
  .main-header .nav-contact p {
    display: inline-block;
    margin-right: 30px;
    font-size: 0.8em;
    margin-bottom: 0; }
  .main-header .nav-contact section {
    border-bottom: 1px solid black; }
.main-header nav.navbar {
  background-color: #FFBD00; }

h3 {
  color: #FFBD00; }

span.higlighted-header {
  color: #FF0000; }

footer {
  margin-top: 70px;
  color: white; }
  footer a {
    color: white; }
    footer a:hover {
      color: #FFBD00; }
  footer .footer-container {
    max-width: 1200px;
    margin: 0 auto; }
  footer .about {
    background-color: #202020;
    min-height: 200px; }
    footer .about h4 {
      text-transform: uppercase;
      margin-top: 30px;
      font-size: 20px; }
    footer .about ul {
      padding-left: 0;
      list-style-type: none; }
  footer .autors {
    background-color: #111111;
    min-height: 50px;
    color: #aaa;
    padding-top: 15px; }
    footer .autors a {
      color: white; }
  footer li {
    font-size: 14px; }

/*# sourceMappingURL=main.css.map */
