.slider-wrapper .slogo {
    background: none !important;
    border: 1px solid #ffffff;
}
.slogo > a > img{
    width: 90px;
}

.footer-wrapper a {
    color: #4bb29f;
}

.footer-wrapper a:hover {
    text-decoration: underline;
    color: #4bb29f;
}

.section-portfolio .section-header .portfolio-filter li {
    margin: 10px 5px !important;
}

.section-portfolio .portfolio .portfilio-grid li .item .info .title a {
    color: #ec6e4a;
}

.section-portfolio .portfolio .portfilio-grid li .item .info .icon {
    font-size: 13px;
    line-height: 30px;
    margin-left: -18px;
    top: -16px;
}

.footer-wrapper .section-contact .contact-info ul:before {
    display: none;
}

/* Screen Tablet */
@media (max-width: 768px) {
    .slider-wrapper .slide_bg .group-text h3 {
        font-size: 30px;
    }
    .slider-wrapper .slide_bg .group-text h2 {
        font-size: 50px;
    }
}

/* language switch button */
/* @import url('https://fonts.googleapis.com/css2?family=SUSE:wght@100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=SUSE:wght@100..800&display=swap'); */

#language-toggle-wrapper {
    z-index: 9999999;
    position: relative;
    float: right;
    margin-right: 30px;
}

input[type="checkbox"] {
  display: none;
}

#lang-button {
  position: relative;
  display: block;
  width: 150px;
  height: 60px;
  /* background-color: #b80404; */
  border-radius: 30px;
  border: 1px solid white;
  cursor: pointer;
  margin: 20px auto;
  transition: background-color 0.3s ease;
}

#knob {
  width: 50px;
  height: 50px;
  background-color: #fff;
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 50%;
  transition: 0.4s ease left, 0.4s ease background-color;
  background-image: url(../img/knockinn/en.jpg);
  background-size: cover;
  background-position: center;;
}

#language-text {
  position: absolute;
  top: 50%;
  left: 70px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: color 0.4s ease, left 0.4s ease;;
}

/* #language-toggle:checked + #lang-button {
  background-color: #0d1366;
} */

#language-toggle:checked + #lang-button #knob {
  left: 95px;
  background-color: #ffffff;
  background-image: url(../img/knockinn/nl.png);
}

#language-toggle:checked + #lang-button #language-text {
  color: #ffffff;
  left: 20px;
  transition: left 0.4s ease;
}

@media (max-width: 768px) {
    #language-toggle-wrapper {
        margin-right: 30px;
    }
    
    #lang-button {
      width: 75px;
      height: 30px;
      border-radius: 30px;
      border: 1px solid white;
      margin: 20px auto;
    }
    
    #knob {
      width: 25px;
      height: 25px;
      top: 1.5px;
      left: 2.5px;
      border-radius: 50%;
    }
    
    #language-text {
      top: 50%;
      left: 35px;
      font-size: 9px;
    }
    
    #language-toggle:checked + #lang-button #knob {
      left: 47.5px;
    }
    
    #language-toggle:checked + #lang-button #language-text {
      left: 10px;
    }
}

/* Lazy Loading Styles */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.lazy:not([data-src]) {
    opacity: 1;
    background: none;
    animation: none;
}

/* Loading animation for placeholder */
@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* When image is loaded */
img:not(.lazy) {
    opacity: 1;
    background: none;
    animation: none;
}
