/* css/home.css */

.page {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  background-image: url("/images/backgrounds/home_background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
}
a {
  text-decoration: none;
  color: #fff 


}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust the opacity (0.5 for 50% opacity) */
}

.center-page-title {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 20vh;
  color: #fff;
}

.button {
  display: block;
  width: 200px;
  height: 50px;
  margin: 20px auto;
  color: #ddd;
  text-align: center;
  border-radius: 25px;
  padding: 10px;
  transition: all 0.5s;
  cursor: pointer;
  font-size: 18px;
  background: #444;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.button:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, #000, #000 50%, #fff 50%);
  background-size: 50% 50%;
  background-position: 0 0;
  animation: Gradient 2s linear infinite;
  z-index: -1;
  border-radius: 25px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: "\00bb";
  position: absolute;
  opacity: 0;
  top: 0;
  left: -20px;
  transition: 0.5s;
}
.upperpage {
  min-height: 80vh;
}
.lowerpage {
  min-height: 20vh;
  margin-bottom: 20px;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 50px;
  margin: 0 40px;
}
