/**
* Template Name: Logis - v1.0.1
* Template URL: https://bootstrapmade.com/logis-bootstrap-logistics-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: Open Sans, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;

}

/* Colors */
:root {
  --color-default: #393b3e;
  --color-primary: #0d42ff;
  --color-secondary: #0e1d34;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

.header, .hero, .footer, .container-fluid {
  max-width: 2000px;
  margin-left: auto;
  margin-right: auto;
}

.container-xl {
  max-width: 1700px;
}
a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #406aff;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: #1c3b6c;
}

p {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  z-index: 2;
}

.section-header h3 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: #001973;
  position: relative;
  z-index: 2;
}

.section-header h3 small {
  text-transform: none;

}

.section-header p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-header span {
  position: absolute;
  top: 46px;
  color: rgba(14, 29, 52, 0.06);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 56px;
  text-transform: uppercase;
  line-height: 0;
}

@media (max-width: 640px) {
  .section-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-header span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(13, 66, 255, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0s !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header  .logo img {
  transition: all 0.5s;
  z-index: 997;
  padding: 12px 0;
  visibility: hidden;
}

.header.sticked {
  background: #1c3b6c;
  box-shadow: 0 2px 20px rgba(14, 29, 52, 0.1);
}

.header.sticked .logo img {
  visibility: visible;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: #1c3b6c;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    color: #fff;
    background: rgba(13, 66, 255, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #19335c;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(14, 29, 52, 0.8);
    z-index: 9996;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 80vh;
  background-color: var(--color-secondary);
  background-image: url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 120px 0 60px 0;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 575px) {
  .hero {
    height: 100vh;
  }
}
/*
.hero h2 {
  margin-bottom: 20px;
  padding: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 575px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 40px;
}*/


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: #1c3b6c;
  padding: 50px 0;
  color: white;
}
.footer .container:first-of-type {
  border-bottom: white 1px solid;
  padding-bottom: 10px;
}
.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary);
}

.footer .footer-info img {
  max-width: 150px;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(13, 66, 255, 0.8);
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .copyright {
  text-align: left;
}

.footer .creator {
  text-align: right;
}

.footer .creator a {
  color: white;
}

.footer .creator a:hover {
  color: #dfdfe1;
}
.footer .bi {
  font-size: 24px;
}

.footer .footer-links h4 {
  color: white;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/

#about-us .section-header .article {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

#about-us .content {
  background-color: #1c3b6c;
  position: relative;
  height: 600px;
  margin: auto;
  padding: 40px 30px 20px;
  color: #fff;
}

#about-us .content h3 {
  color: white;
}

#about-us .locations .content-left {
  background-image: url("../img/about.png");
  background-size: auto;
  background-position: center;
}

#about-us .news .content-left {
  background-image: url("../img/news.jpg");
  background-size: auto;
  background-position: center;
}

#about-us .offers .content-right {
  background-image: url("../img/offers.jpg");
  background-size: auto;
  background-position: center;
}

#about-us .content .article,
#about-us .content ul {
  width: 530px;
  max-width: 100%;
  margin: 0 auto;
}

#about-us .content .more {
  text-align: right;
  font-size: small;
  font-style: italic;
  color: white;
}

#about-us .content .more:hover {
  color: #b2b2b2;
}

/*--------------------------------------------------------------
# Locations Section
--------------------------------------------------------------*/

#locations h3 {
  color: #1c3b6c;
}
#locations .beidersee {
  margin-top: 100px;
  border-top: 1px solid #1c3b6c;
}
#locations .content {
  padding: 20px;
}
#locations table.open {
  max-width: 320px;
  margin: auto;
}

#locations table.open tr td:nth-of-type(2) {
  text-align: right;
}
#locations .content-middle {
  height: 100%;
  min-height: 280px;
  max-width: 90vw;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

#locations .gimritz .content-middle {
  background: url("../img/hofladen.jpg") top center;
  background-size: cover;
}

#locations .beidersee .content-middle {
  background: url("../img/imbiss.jpg") top left;
  background-size: cover;
}
#locations .content .google-map {
 float: right;
  margin-top: 20px;
  width: 120px;
  height: auto;
  margin-right: 30px;
}

/*--------------------------------------------------------------
# Offers Section
--------------------------------------------------------------*/
#offers .offers-list {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-content: space-evenly;
  gap: 50px 25px;
}

#offers .card {
  max-width: 400px;
  border: 1px solid rgba(14, 29, 52, 0.15);
  background: #fff;
  position: relative;
  border-radius: 6px;
  height: 100%;
}

#offers .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 6px 6px 0 0;
}

#offers .card .card-img img {
  transition: 0.3s ease-in-out;
}

#offers .card h3 {
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 5px;
  padding: 10px 30px;
  text-align: center;
}

#offers .card a {
  color: #001973;
  transition: 0.3s;
}

#offers .card:hover {
  background-color: #1c3b6c;
}

#offers .card:hover a {
  color: white;
}

#offers .card:hover .card-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Offers-Details Section
--------------------------------------------------------------*/
.offers-details {
  overflow: hidden;
}

.offers-details .nav-tabs {
  border: 0;
}

.offers-details .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #433f39;
  border-radius: 0;
  border-right: 2px solid #e8e7e4;
  font-weight: 500;
  font-size: 15px;
}

.offers-details .nav-link:hover {
  color: #1c3b6c;
  font-weight: 700;
}

.offers-details .nav-link.active {
  color: #1c3b6c;
  border-color: #1c3b6c;
  font-weight: 700;
}

.offers-details .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.offers-details .details h3 {
  font-weight: 600;
  margin-bottom: 20px;
}

.offers-details .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .offers-details .nav-tabs {
    border-bottom: 2px solid #1c3b6c;
  }

  .offers-details .nav-link {
    border: 0;
    padding: 15px;
  }

  .offers-details .nav-link.active {
    color: #1c3b6c;
  }
}

.offers-details ul.gift {
  list-style: none;
  padding-left: 10px;
}

.offers-details ul.gift .bi {
 color: #1c3b6c;
  padding-right: 10px;
}

.offers-details ul.bottle {
  list-style: none;
}

.offers-details ul.bottle .fa {
  color: #1c3b6c;
  padding-right: 10px;
}

.offers-details ul.quality {
  padding-left: 9px;
}

.offers-details ul.quality li {
  list-style: none;
}

.offers-details ul.quality li i {
  color: #1c3b6c;
  padding-right: 9px;
}

.offers-details ul.kaese li {
  list-style-image: url("../img/offers-details/kase.png");
  padding-left: 6px;
}

.offers-details ul.leicoma li {
  list-style-image: url("../img/offers-details/pork.png");
  padding-left: 6px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  background-color: #ffffff;
  color: #212529;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px 15px;
  border-radius: 4px;
}
.contact .info-box i {
  font-size: 24px;
  color: #1c3b6c;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #f8d4d5;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  border-radius: 4px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #1c3b6c;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #1c3b6c;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #1c3b6c;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form .form-group {
  margin-bottom: 25px;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #111111;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
  background: #1c3b6c;
  border: 0;
  padding: 10px 32px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #5c636a;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Informatives
--------------------------------------------------------------*/

.informative .features-item {
  border-bottom: #1c3b6c 1px solid;
}

.informative .features-item:last-of-type {
  border-bottom:none;
}
.informative .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .informative .features-item+.features-item {
    margin-top: 40px;
  }
}

.informative .features-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #001973;
}

.informative .features-item ul.pork li {
  list-style-image: url("../img/offers-details/schweinefleisch.png");
}

.informative .features-item ul.pork li span {
  top:-6px;
  position:relative;
}
.informative .features-item ul.presse {
  list-style: none;
  text-indent: -16px;
}

.informative .features-item ul.presse li {
  padding-bottom: 10px;
  line-height: normal;
}

.informative .features-item ul.presse li i {
  font-size: small;
}

.informative .features-item ul.presse li .bi {
  font-size: large;
  margin-right: 5px;
}

.informative img.zertifizierung {
  max-width: 200px;
  height: auto;
}


/*--------------------------------------------------------------
# Personelles
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Aktuelles
--------------------------------------------------------------*/
.news {
  overflow: hidden;
}

.news .nav-tabs {
  border: 0;
}

.news .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #433f39;
  border-radius: 0;
  border-right: 2px solid #e8e7e4;
  font-weight: 500;
  font-size: 15px;
}

.news .nav-link:hover {
  color: #1c3b6c;
  font-weight: 700;
}

.news .nav-link.active {
  color: #1c3b6c;
  border-color: #1c3b6c;
  font-weight: 700;
}

.news .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.news img {
  display: block;
  margin: 15px auto;
}
