/* Big Footer */

.big-footer {
    width: 100%;
    border-top: 15px solid orange;
    z-index: 5;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .big-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 90px;
    padding-right: 90px;
  }
  
  .big-footer-colum {
    width: 25%;
    padding-left: 50px;
    padding-right: 50px;
  }
  
  .big-footer-colum img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 130px;
    width: 250px;
    margin: auto;
  }
  
  .big-footer-colum h4 {
    text-align: center;
  }
  
  .big-footer-colum:last-child p {
    text-align: left;
  }
  
  .big-footer-colum-context p {
    line-height: 1.7em;
    text-align: center;
  }
  
  .big-footer-colum-inhalt a img {
    margin: 20px;
  }
  
  .big-footer-colum-headline h4 {
    text-align: left;
    font-size: 1.1em;
    margin-bottom: 1rem;
  }
  
  .big-footer-colum-context p a {
    color: hsl(34, 100%, 48%);
    font-weight: bold;
  }
  
  .big-footer-colum-text {
    line-height: 2em;
  }

  .big-footer-colum-text span{
    font-weight: bold;
  }
  
  .big-footer-colum-text p {
    width: 100%;
  }
  
  /* Small Footer */
  
  .small-footer {
    background-color: hsl(34, 100%, 50%);
    padding: 20px;
    color: #fff;
  }
  
  .small-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .small-footer-colum img {
    margin-right: 10px;
  }
  
  .small-footer-colum span a {
    color: hsl(32, 100%, 32%);
    text-decoration: none;
  }
  
  .small-footer-colum .small-footer-i i {
    color: #fff;
  }
  
  .small-footer-colum img:hover {
    filter: brightness(0) saturate(100%) invert(31%) sepia(78%) saturate(1059%) hue-rotate(8deg) brightness(98%) contrast(102%);
  }
  
  .small-footer-colum span a:hover {
    text-decoration: underline;
  }
  
  .small-footer-colum span {
    font-weight: normal;
  }
  
  /* ToolTip */
  
  .tooltip {
    position: relative;
    display: inline-flex;
    margin-left: 10px;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    background-color: hsla(0, 0%, 0%, 0.699);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    font-size: 10px;
    width: 65px;
    padding: 8px 10px;
    bottom: 110%;
    left: 100%;
    margin-left: -53px;
  
    position: absolute;
    z-index: 1;
  }
  
  .tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
  }

  @media screen and (max-width: 768px){
    .big-footer-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }
    
      .big-footer-colum {
        width: 17rem;
        padding-left: 0;
        padding-right: 0;
      }
    
      .big-footer-colum h4 {
        margin-top: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.4em;
      }
    
      .big-footer-colum .big-footer-colum-inhalt .big-footer-colum-headline {
        width: 17rem;
      }
    
      .big-footer-colum img {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px;
      }
    
      .big-footer-colum-inhalt {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
      }
    
      .big-footer-colum-headline{
        font-size: 1.2em;
      }
    
      .big-footer-colum-text {
        width: 20rem;
      }
    
      .big-footer-colum-text p {
        width: 100%;
        text-align: center;
        font-size: 1.2em;
      }

      .big-footer-colum-context .contact-info{
        line-height: 2;
        margin: 0;
      }

      .big-footer-colum-context {
        display: flex;
        justify-content: center;
        flex-direction: column;
      }
    
      .big-footer-colum-context h4 {
        text-align: center;
      }
    
      .big-footer-colum:last-child p {
        text-align: center;
      }
    
      .big-footer-colum-headline h4 {
        text-align: center;
        font-size: 1.2em;
      }
    
      .small-footer-row {
        display: flex;
        flex-direction: column;
      }
    
      .small-footer-colum {
        margin-bottom: 10px;
      }
    
  }