/*
    Logo
*/

#header-logo {
    width: 6em;
    height: auto;
    margin-bottom: 30px;
}

/*
    Scrollbar
*/

html {
    scrollbar-width: thin;
    scrollbar-color: #000 #333;
}

/* 
    Marquee
*/

.marquee-container {
    overflow: hidden;
    width: 100%;
    height: 200px;
    padding: 25px 0;
    position: relative;
    margin: 0;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 80s linear infinite;
}

.circle-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.7);
    overflow: hidden;
    margin: 0 30px;
}

.circle-container img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

#product-marquee {
    margin-top: 30px;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
} 

.profile-img {
    padding: 30px;
}

.profile-img img {
    border-radius: 25%;
}

.img-fixed {
    width: 300px;
    height: 200px;
    object-fit: contain;
}

.product-image {
    width: 100vw;
    height: auto;
}

/* Image slider */

.slider-container {
    position: relative;
    width: 100vw;
    height: 30vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: #fff;
  }
  
  .slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
  }
  
  .slider-track img {
    width: 100vw;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
  }
  
  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    z-index: 1;
    border-radius: 50%;
    user-select: none;
  }
  
  #prevBtn {
    left: 10px;
  }
  
  #nextBtn {
    right: 10px;
  }
  
  .nav-btn:hover {
    background-color: rgba(0,0,0,0.8);
  }


.forward, .backward {
    position: absolute;
    top: 50%;
    width: 6em;
    height: 12em;
    margin-top: -6em;
    cursor: pointer;
}

    .forward:before, .backward:before {
        content: '';
        display: block;
        width: 6em;
        height: 6em;
        border-radius: 100%;
        background-color: rgba(72, 57, 73, 0.5);
        position: absolute;
        top: 50%;
        margin-top: -3em;
        -moz-transition: background-color 0.35s ease-in-out;
        -webkit-transition: background-color 0.35s ease-in-out;
        -o-transition: background-color 0.35s ease-in-out;
        -ms-transition: background-color 0.35s ease-in-out;
        transition: background-color 0.35s ease-in-out;
        -webkit-backface-visibility: hidden;
    }

    .forward:after, .backward:after {
        content: '';
        width: 3em;
        height: 3em;
        position: absolute;
        top: 50%;
        margin: -1.5em 0 0 0;
    }

    .forward::after {
        background: url("images/arrow.svg") no-repeat center center;
    }

    .backward::after {
        background: url("images/arrow-left.svg") no-repeat center center;
    }

    .forward:hover:before, .backward:hover:before {
        background-color: rgba(239, 131, 118, 0.75);
    }

.forward {
    right: 0;
}

    .forward:before {
        right: -3em;
    }

    .forward:after {
        right: -0.25em;
    }

.backward {
    left: 0;
}

    .backward:before {
        left: -3em;
    }

    .backward:after {
        left: -0.25em;
    }

#product-info {
    background-color: #fff;
    padding: 3em 0;
}

.centered {
    text-align: center;
}

.button-main {
    background-color: #432b75;
}

.button-main:hover {
    background-color: #785eb1;
}

/* Popop */
  
      /* Overlay */
      .popup-overlay {
        position: fixed;
        top: 0;
        right: 0;
        width: 50vw;
        height: 100vh;
        background-color: white;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.3s ease;
      }
  
      .popup-overlay.active {
        transform: translateX(0);
      }
  
      /* Popup content */
      .popup-content {
        margin-top: 20px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        height: 100%;
      }
  
      .popup-content h2 {
        margin-top: 0;
      }
  
      .popup-content label {
        margin-top: 10px;
        font-weight: bold;
      }
  
      .popup-content input, .popup-content textarea {
        border: 1px solid lightgrey;
        border-radius: 8px;
        box-shadow: none;
        outline: none;
        padding: 10px;
        font-size: 20px;
      }
  
      .popup-content button {
        margin-top: auto;
        margin-bottom: 20px;
        padding: 12px;
        color: white;
        border: none;
        cursor: pointer;
      }

      .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
      }

.minimized {
    width: 1em;
    padding: 2em;
}

.event-image {
    height: 12em;
}

#office-awards {
    text-align: left;
    color: #ddd;
}

#office-location {
    color: #ddd;
}

#office-awards-article {
    padding: 0em 4em;
}

.no-margin {
    margin: 0;
}

#socials {
    text-align: center;
}

#links h3,ul {
    text-align: left;
}

#links ul {
    list-style-type: none;
    padding-left: 0;
}
/* Mobile */

@media screen and (max-width: 1280px) {

        #product-buttons {
            padding-left: 2em;
            padding-right: 2em;
        }

        .popup-overlay {
            width: 100vw;
          }

        .close-btn {
            top: 40px;
            width: 30px;
            height: 30px;
            padding: 0;
            line-height: 0;
          }
}