
@media (max-width: 1280px) {
}


@media (max-width: 768px) {

}

.testdiv {
   background-color: red;
   }



    .image-container {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .image-container img {
      width: 100%;
      height: auto;
      display: block;
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .hover-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      z-index: 2;
    }

    .image-container:hover .hover-image {
      opacity: 1;
/*      transform: scale(1.05);*/
    }

    .image-container:hover .default-image {
      /* transform: scale(1.05);*/
    }



#toggleButton {
  display: flex;
  flex-wrap: wrap;
  width: 100px;
  padding: 0.1em 0.3em 0.1em 0.3em;
  margin: 0 0.2em 0.2em 0;
  font-size: 1.2em;
  font-family: milibus;
  background-color: var(--green0);!important; 
  color: red;                    /* White text */
  letter-spacing: -1.5px;
  border: none;
  border-radius: 2px;              /* Rounded corners */
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#toggleButton:hover {
  background-color: #45a049;       /* Slightly darker on hover */
  transform: translateY(-2px);     /* Slight lift effect */
}

#toggleButton:active {
  transform: scale(0.98);          /* Pressed-down effect */
}



.ttswitch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 22px;
  transition: all 0.3s;
}

.ttswitch::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 22px;
  background-color: white;
  top: 1px;
  left: 1px;
  transition: all 0.3s;
}

input[type='checkbox']:checked + .ttswitch::after {
  transform: translateX(22px);
}

input[type='checkbox']:checked + .ttswitch {
  background-color: #7983ff;
}

.offscreen {
  position: absolute;
  left: -9999px;
}
