/* Basis Styles */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

h1 {
    font-family: 'Raleway';
    font-weight: 800;
}


h2 {
    font-family: 'Raleway';
}

/* h3 {
    font-family: 'Raleway';
} */



p{
    font-size: 1rem;
    /* font-family: 'Raleway'; */
}

html{
    scroll-behavior: smooth;
}




body {
    cursor: url('images/Mauszeiger1.png') 16 16, auto;
}

/* Hover-Cursor für Links, Buttons, etc. */
a:hover,
button:hover,
.hover-cursor:hover {
    cursor: url('images/Mauszeiger2.png') 16 16, auto;
}
/* Optional: Links immer Hand */
a, button {
    cursor: inherit; /* übernimmt den body-cursor */
}







/* Titel oben Links */  /* Titel oben Links */  /* Titel oben Links */  /* Titel oben Links */  /* Titel oben Links */  

.site-title {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    font-family: 'Raleway';
    font-weight: 800;
    font-size: 1.8rem;
    color: #fff;
    z-index: 100;
    

}

/* Menü */  /* Menü */  /* Menü */  /* Menü */  /* Menü */  /* Menü */  /* Menü */  /* Menü */  /* Menü */  /* Menü */  /* Menü */  

.site-nav {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'Raleway';
    font-weight: 800;
    font-size: 1.8rem;
    color: #fff;
    z-index: 100;
    white-space: nowrap;
}

.site-nav a {
    color: #fff;
    text-decoration: none;
}

.site-nav a:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    .site-title{
        font-size: 1.8rem;
    }

    .site-nav{
        font-size: 0.8rem;
        display: none;
    }

}



/* .site-nav .divider {
    opacity: 0.6;
} */


/* Hero */ /* Hero */ /* Hero */ /* Hero */ /* Hero */ /* Hero */ /* Hero */ /* Hero */ /* Hero */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;        /* volle Höhe des Viewports */
    /* background-color: #000; */
    /* background: #2e2e2e;
    background: radial-gradient(circle, rgba(46, 46, 46, 1) 0%, rgba(0, 0, 0, 1) 100%); */
    overflow: hidden;
    background-image: url(images/BackgroundHeroGreyRadial.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.mobile {
    display: none;
}





/* Hintergrundtext */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25rem;
    font-family: 'Raleway';
    font-weight: 800;
    color: rgb(253, 253, 253); 
    z-index: 1;           
    text-align: center;
    white-space: nowrap;

    /* Fade-In Animation */
    opacity: 0;                /* Start unsichtbar */
    animation: fadeIn 10s ease forwards; /* Dauer 2s, nach 4s starten */
    animation-delay: 2s;       /* 4 Sekunden warten, dann Animation starten */
}

/* Keyframes für Fade-In */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* PNG Bild über dem Text */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;    /* passt Bild an Container an */
    z-index: 2;           /* über Text */

    /* Fade-In Animation */
    opacity: 0;                /* Start unsichtbar */
    animation: fadeIn 5s ease forwards; /* Dauer 2s, nach 4s starten */
    animation-delay: 0.5s;       /* 4 Sekunden warten, dann Animation starten */

}


.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25rem;
    font-family: 'Raleway';
    font-weight: 800;
    color: rgb(253, 253, 253); 
    z-index: 1;           
    text-align: center;
    white-space: nowrap;

    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.35),
        0 0 60px rgba(255, 255, 255, 0.15);

    opacity: 0;
    animation: fadeIn 10s ease forwards, flicker 5s infinite;
    animation-delay: 2s, 4s;
}


@keyframes flicker {
    0%, 100% {
        text-shadow:
            0 0 15px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(255, 255, 255, 0.35),
            0 0 60px rgba(255, 255, 255, 0.15);
    }

    50% {
        text-shadow:
            0 0 14px rgba(255, 255, 255, 0.55),
            0 0 28px rgba(255, 255, 255, 0.3),
            0 0 55px rgba(255, 255, 255, 0.12);
    }
}



@media (min-width: 1920px) {
    
    .hero-text{
        font-size: 20rem;
        padding-top: 100px;
    }




}



@media (max-width: 768px) {
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }

    .hero-text{
        z-index: 9999;
        font-size: 3.7rem;
        padding-top: 400px;
    }


}

/* DESIGN TEXT */  /* DESIGN TEXT */  /* DESIGN TEXT */  /* DESIGN TEXT */  /* DESIGN TEXT */  /* DESIGN TEXT */  

.life{
    background-color: #000;
    padding: 200px 200px;
}

.life p{
    color: #fff;
    font-size: 8rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: justify;
    hyphens: auto;
    white-space: pre-wrap;
}

.word {
    opacity: 0;
    display: inline;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease; /* <-- länger für langsameres Einblenden */
}

.word.visible {
    opacity: 1;
    transform: translateY(0);
}



@media (min-width: 1910px) {
    
   .life p{
    font-size: 7rem;
   }

   .life{
    padding: 20px;
    padding-bottom: 150px;

   }


}




@media (max-width: 768px) {
   .life p{
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
   }

   .life{
    padding: 5px;
    padding-bottom: 50px;
}

   


}


/* Business Grid */  /* Business Grid */  /* Business Grid */  /* Business Grid */  /* Business Grid */  

/* Business Grid */
.businesssektion{
    background-color: black;
}

.businesssektion h2{
    color: white;
    font-size: 15rem;
    font-weight: 800;
    background-color: #000;
    padding-left: 100px;
}

/* Grid Layout */
.businessgrid{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Einzelne Box */
.business-item{
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 800px;
    display: block;
    text-decoration: none;
    color: inherit;
    background: black;
}

/* Bilder */
.business-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

/* Linkes Bild */
.business-item:first-child img{
    animation: crossFade 6s ease-in-out infinite;
}

/* Rechtes Bild: zeitlich versetzt für perfektes Crossfade */
.business-item:nth-child(2) img{
    animation: crossFade 6s ease-in-out infinite;
    animation-delay: 3s; /* Hälfte der Dauer für weiches Überblenden */
}

/* Text */
.business-item h3{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    z-index: 2;
    font-family: 'Raleway';
    font-weight: 600;
    transition: opacity 0.6s ease;
}

/* Hover pausiert nur dieses Element */
.business-item:hover img{
    animation-play-state: paused;
    opacity: 1;
}

.business-item:hover h3{
    opacity: 0;
}




/* Crossfade Animation: ein Bild blendet ein, während das andere ausblendet */
@keyframes crossFade {
    0%, 20%    { opacity: 1; }    /* Bild vollständig sichtbar */
    20%, 50%   { opacity: 0; }    /* Bild blendet sanft aus */
    50%, 70%   { opacity: 1; }    /* Bild blendet wieder sanft ein */
    70%, 100%  { opacity: 0; }    /* Bild blendet aus */
}

/* Tablet */
@media (max-width: 1024px) {
    .businessgrid{
        grid-template-columns: 1fr;
    }

    .business-item{
        height: 500px;
    }

    .business-item h3{
        font-size: 2.5rem;
    }

    .businesssektion h2{
        font-size: 8rem;
        padding-left: 50px;
    }
}

/* Handy */
@media (max-width: 600px) {
    .business-item{
        height: 350px;
    }

    .business-item h3{
        font-size: 2rem;
        text-align: center;
    }

    .businesssektion h2{
        font-size: 4rem;
        padding-left: 10px;
        padding-top: 50px;
    }
}



/* CLIENTS */  /* CLIENTS */  /* CLIENTS */  /* CLIENTS */  /* CLIENTS */  /* CLIENTS */  /* CLIENTS */  

.cardsliderueberschrift{
    color: white;
    font-size: 15rem;
    font-weight: 800;
    background-color: #000;
    padding-left: 100px;
    padding-top: 200px;
}


.layer01 {
    background-image: url("images_slider_clients/Bredstedt_Kinderfest.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.layer02 {
    background-image: url("images_slider_clients/RotorControll.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.layer03 {
    background-image: url("images_slider_clients/Nordseezahnarzt.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.layer04 {
    background-image: url("images_slider_clients/StadtBredstedt.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}




.layer01{
    /* background-image: url(images/conor-luddy-IGa3Md8wP6g-unsplash.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; */
    background-color: #000;
}

.layer02{
    /* background-image: url(images/conor-luddy-IGa3Md8wP6g-unsplash.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; */
    background-color: #fff;
}

.layer03{
    /* background-image: url(images/conor-luddy-IGa3Md8wP6g-unsplash.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; */
    background-color: #000;
}

.layer04{
    /* background-image: url(images/conor-luddy-IGa3Md8wP6g-unsplash.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; */
    background-color: #fff;
}

@media (max-width: 600px){
    .cardsliderueberschrift{
        font-size: 3rem;
        padding-left: 20px;
        padding-bottom: 20px;
    }
}








 .clients-mobile {
  display: none;
}



@media (max-width: 768px) {
   
    
     .CLIENTS_All {
  display: none;
}


  .relative {
    display: none;
  }

  .clients-mobile {
    font-size: 4rem;
    padding-left: 10px;
    padding-top: 120px;
    color: #fff;
    font-weight: 800;
  }

 
  .clients-mobile {
    display: block;
    width: 100%;
    overflow: hidden;
    background-color: #000;
  }

  .clients-mobile h2{
    padding-bottom: 50px;
  }
  
  .clients-mobile img {
    width: 100%;
    height: auto;              
    display: block;

    transform: translateX(-120px);
    opacity: 0;

    transition: transform 4s cubic-bezier(.22,.61,.36,1),
                opacity 4s ease;
  }

  
  .clients-mobile img.show {
    transform: translateX(0);
    opacity: 1;
  }

} 

 


/* ALL CLIENTS BUTTON 100 WIDTH */  /* ALL CLIENTS BUTTON 100 WIDTH */  /* ALL CLIENTS BUTTON 100 WIDTH */  



/* Link Wrapper */
.allclientsfullwidth-link {
    text-decoration: none;
    display: block;
}

/* Section */
.allclientsfullwidth {
    width: 100%;
    height: 200px;
    background: #000;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;              /* kein Abstand nach oben */
    padding: 0;

    transition: background 0.3s ease;
}

/* Titel */
.allclientsfullwidth-title {
    color: #fff;
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin: 0;

    transition: color 0.3s ease;
}

/* Hover Effekt */
.allclientsfullwidth:hover {
    background: #fff;
}

.allclientsfullwidth:hover .allclientsfullwidth-title {
    color: #000;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {

    .allclientsfullwidth {
        height: 100px;
    }

    .allclientsfullwidth-title {
        font-size: 1.5rem;
    }

    
}






















/* PROFILE */  /* PROFILE */  /* PROFILE */  /* PROFILE */  /* PROFILE */  /* PROFILE */  /* PROFILE */  /* PROFILE */  


.cv-section h2{
    color: white;
    font-size: 10rem;
    font-weight: 800;
    padding-top: 150px;
    padding-left: 100px;
    padding-bottom: 100px;
}

.cv-section {
  background: #000;
  color: #fff;
  padding: 8rem 2rem;
  padding-bottom: 300px;
}

.cv-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1500px;

  display: grid;
  gap: 6rem;
}

.cv-item h3 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.cv-item p {
  margin: 0.5rem 0 2rem 0;
  max-width: 520px;
  font-size: 1.1rem;
  line-height: 1.4;
  color: white;
}

.line-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.line {
  flex-grow: 1;
  height: 1px;
  background: rgb(255, 255, 255);
}

.year {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
}



.year {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 1.8s ease, transform 1.8s ease;
}

.year.is-visible {
  opacity: 1;
  transform: translateX(0);
}


@media (max-width: 600px){
    .cv-section h2{
        font-size: 4rem;
        padding-left: 0px;
        padding-top: 0;
    }

    .cv-section {
  background: #000;
  color: #fff;
  padding: 8rem 20px;
}

.cv-list {
  margin: 0 0;
  padding-right: 50px;
  max-width: 400px;
}

.cv-item h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.cv-item p {
  margin: 0.5rem 0 2rem 0;
  max-width: 520px;
  font-size: 0.7rem;
  line-height: 1.4;
  color: white;
}


}



/* Grid */  /* Grid */  /* Grid */  /* Grid */  /* Grid */  /* Grid */  /* Grid */  /* Grid */  /* Grid */  /* Grid */  

.gridueberschrift {
    background-color: #000;
    padding-top: 300px;
}

.gridueberschrift h2 {
    color: white;
    font-size: 15rem;
    font-weight: 800;
    padding-left: 100px;
}

/* ============================= */
/* VIDEO + GRID ELEMENTE */
/* ============================= */

.video,
.grid2 .element,
.grid3 .element {
    position: relative;
    background-color: #000;
    overflow: hidden;
}

/* Höhe */
.video {
    height: 500px;
}

.grid2 .element,
.grid3 .element {
    height: 500px;
}

/* ============================= */
/* MEDIA (IMG + VIDEO) */
/* ============================= */

.video video,
.grid2 .element img,
.grid2 .element video,
.grid3 .element img,
.grid3 .element video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;   /* füllt den Kasten ohne Verzerren */
    display: block;

    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Hover sichtbar */
.video:hover video,
.grid2 .element:hover img,
.grid2 .element:hover video,
.grid3 .element:hover img,
.grid3 .element:hover video {
    opacity: 1;
}

/* ============================= */
/* GRID LAYOUTS */
/* ============================= */

.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}

.grid3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* ============================= */
/* WEISSE LINIEN */
/* ============================= */

.video{
    border-bottom: solid white 1px;
}

.elementgrid2links, 
.elementgrid2mitte, 
.elementgrid2rechts{
    border-bottom: solid white 1px;
}

.elementgrid2mitte{
    border-left: solid white 1px;
    border-right: solid white 1px; 
}

.elementgrid3links{
    border-right: solid white 1px;
}

/* ============================= */
/* H3 POSITION */
/* ============================= */

.video h3,
.grid2 .element h3,
.grid3 .element h3 {
    position: absolute;
    bottom: 16px;
    left: 16px;

    font-weight: 800;
    font-size: 2rem;
    color: #fff;

    z-index: 3;
    pointer-events: none;
}


@media (min-width: 1910px) {
    .gridueberschrift {
        padding-top: 0;
        font-size: 4rem;
        padding-left: 10px;
    }




}


@media (max-width: 768px) {

    /* ============================= */
    /* WORKS ÜBERSCHRIFT */
    /* ============================= */

    .gridueberschrift {
        padding-top: 0px;
        padding-bottom: 50px;
    }

    .gridueberschrift h2 {
        font-size: 4rem;
        padding-left: 20px;
    }

    /* ============================= */
    /* GRID LAYOUT EINSPALTIG */
    /* ============================= */

    .grid2 {
        grid-template-columns: 1fr;
    }

    .grid3 {
        grid-template-columns: 1fr;
        padding-bottom: 100px;
        background-color: #000;
    }

    /* ============================= */
    /* HÖHE ANPASSEN */
    /* ============================= */

    .video,
    .grid2 .element,
    .grid3 .element {
        height: 250px;
    }

    /* ============================= */
    /* LINIEN KORRIGIEREN */
    /* ============================= */

    .elementgrid2links,
    .elementgrid2mitte,
    .elementgrid2rechts,
    .elementgrid3links {
        border-left: none;
        border-right: none;
    }

    /* ============================= */
    /* HOVER KOMPLETT DEAKTIVIEREN */
    /* ============================= */

    /* Transition entfernen */
    .video video,
    .grid2 .element img,
    .grid2 .element video,
    .grid3 .element img,
    .grid3 .element video {
        opacity: 1 !important;
        transition: none;
    }

    /* Sicherstellen, dass kein Hover greift */
    .video:hover video,
    .grid2 .element:hover img,
    .grid2 .element:hover video,
    .grid3 .element:hover img,
    .grid3 .element:hover video {
        opacity: 1;
    }

}


/* Call to Action 100vw */   /* Call to Action 100vw */   /* Call to Action 100vw */   /* Call to Action 100vw */   

.personal-contact {
  width: 100%;
  height: 200px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.personal-contact h3 {
  color: #fff;
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

/* HOVER */
.personal-contact:hover {
  background: #fff;
}

.personal-contact:hover h3 {
  color: #000;
}

@media (max-width: 768px) {
    
    .personal-contact {
  width: 100%;
  height: 100px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
   
.personal-contact h3 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

}


/* Footer */   /* Footer */   /* Footer */   /* Footer */   /* Footer */   /* Footer */   /* Footer */   /* Footer */   /* Footer */   


.footerinfos{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 200px;
    padding-top: 300px;
    padding-left: 100px;
    padding-bottom: 300px;
    background-color: #000;
}

.footerinfos h3{
    font-size: 4rem;
    font-weight: 800;
    color:#ffffff;
}

.footerinfos p{
    color:#ffffff;
    font-weight: 600;

}

.footerinfos a {
    color: #ffffff;          /* Linkfarbe weiß */
    text-decoration: none;   /* keine Unterstreichung standardmäßig */
    transition: all 0.3s ease; /* sanftes Hover */
}

.footerinfos a:hover {
    text-decoration: underline; /* Unterstrich beim Hover */
}




.platzhalterfooter{
    height: 40vh;
}



/* Schwarzer Content */
.content {
  position: relative;
  z-index: 2;
  background: black;
}

/* Schwarze Sektion */
.section.black {
  min-height: 80vh;
  padding: 100px 40px 400px; /* Platz für den Footer */
  color: white;
  font-family: Arial, sans-serif;
}

/* Footer im Hintergrund */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;

  background: white;
  color: black;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  z-index: -9999999;
  font-family: Arial, sans-serif;
}

.footer h2{
    font-weight: 800;
    font-size: 28rem;
    margin-top: 50px;
}




@media (min-width: 1910px) {
   .footer h2{
    font-weight: 800;
    font-size: 21rem;
    margin-top: 65px;
    text-align: left;
    padding-left: 0;
    margin-left: 0;
    justify-content: left;
}



}














@media (max-width: 768px) {

    .footerinfos{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding-top: 300px;
    padding-left: 20px;
    padding-bottom: 300px;
    background-color: #000;
}


.footerinfos h3{
    font-size: 4rem;
    font-weight: 800;
    color:#ffffff;
}

.footerinfos p{
    color:#ffffff;
    font-weight: 600;

}


    .section.black {
  min-height: 80vh;
  padding: 100px 40px 100px; /* Platz für den Footer */
  color: white;
  font-family: Arial, sans-serif;
}






.footer h2{
    font-weight: 800;
    font-size: 4rem;
    margin-top: 50px;
    text-align: left;
    padding-left: 0;
    margin-left: 0;
    justify-content: left;
}

}

@media (max-width: 768px) {

    .footerinfos{
        grid-template-columns: 1fr;   /* EINSPALTIG */
        gap: 40px;
        padding: 120px 20px;
    }

    .footerinfos h3{
        font-size: 2.5rem;
    }

    .footerinfos p{
        font-size: 1rem;
        word-break: break-word;   /* verhindert Überlaufen */
    }

    /* Sicherheit gegen Scroll */
    html, body {
        overflow-x: hidden;
    }

    .footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;

  background: white;
  color: black;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  z-index: -9999999;
  font-family: Arial, sans-serif;
}

.platzhalterfooter{
    height: 10vh;
}


}



 /* ALLCLIENTS */   /* ALLCLIENTS */   /* ALLCLIENTS */   /* ALLCLIENTS */  
/* =========================
   BASIS
========================= */

body {
    margin: 0;
    background: #000;
}

.ac-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
}

.ac-item {
    position: relative;
    overflow: hidden;
    border-right: 1px solid white;
    border-bottom: 1px solid white;
}

/* =========================
   SPALTEN-LOGIK
========================= */

.ac-half {
    grid-column: span 3;   /* 2 nebeneinander */
}

.ac-third {
    grid-column: span 2;   /* 3 nebeneinander */
}

.ac-full {
    grid-column: span 6;   /* volle Breite */
}

/* =========================
   BILDER
========================= */

.ac-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: #000;
    transition: opacity 0.4s ease;
}

/* =========================
   HOVER (Desktop)
========================= */

@media (hover: hover) and (pointer: fine) {

    .ac-item img {
        opacity: 0;
    }

    .ac-item:hover img {
        opacity: 1;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .ac-grid {
        grid-template-columns: 1fr;
    }

    .ac-item {
        grid-column: span 1 !important;
        border-right: none;
    }

    .ac-item img {
        opacity: 1 !important;
    }

    .ac-item:last-child {
        border-bottom: none;
    }
}
