.indeximg {
    background-image: url('../media/indexpage2.webp');
    height: 50vh;
    background-position: center 80%;
    margin-top: -1px;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 3vh;
    background-repeat: no-repeat;
}

.carousel {
    margin-top: 2vh;
    width: 100%;
    /* margin-left: -1%;
    margin-right: -1%; */
    height: 90vh;
    overflow: hidden;
    white-space: nowrap;
}

.carousel img, .carousel video, .carousel a {
    display: inline-block;
    width: 100%;
    height: 75vh;
    object-fit: cover;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    16.666% {
        transform: translateX(-100%);
    }
    33.333% {
        transform: translateX(-200%);
    }
    50% {
        transform: translateX(-300%);
    }
    66.666% {
        transform: translateX(-400%);
    }
    83.333% {
        transform: translateX(-500%);
    }
    100% {
        transform: translateX(0);
    }
}


.carousel img:nth-child(1) {
    animation: slide 20s infinite;
    animation-delay: 5s;
}

.carousel img:nth-child(2) {
    animation: slide 20s infinite;
    animation-delay: 5s;
}

.videodiv {
    display: flex;
    justify-content: center;
    /* margin-top: -75px; */
    background-color: black;
}

@media(max-width:600px) {
    .videodiv {
        display: none;
    }
    .aboutusimg {
        display: none;
    }
}

.indexvideo {
    width: 100%;
    /* max-width: 75vw; */
    max-height: 60vh;
}

.center {
    display: flex;
    justify-content: center;
    gap: 3%;
    margin-bottom: 5%;
    flex-wrap: wrap;
    /* align-items: center */
}
.productfiller {
  width: 300px;
  color: var(--cool-blue);
}

.productfiller h3 {
  color: var(--dark-blue)
}

.fillerpic {
  width: 300px;
}

.fillsummary {
  cursor: context-menu;
}

.product {
    /* border: 1px solid black ; */
    box-sizing: border-box;
    border-radius: 10px;
    padding: 1%;
    margin: 1%;
    transition: transform 0.2s;
    z-index: 1;
    position: relative;
    /* flex-basis: calc(25% - 2% * 2 / 3); */
}

.productlink {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

/* .product::before {
    content: '';
    height: 30px;
    width: 30px;
    display: block;
    position: absolute;
    border-top: solid 3px #f5ee5d;
    border-left: solid 3px #f5ee5d;
    left: 0px;
    top: 20px;
} */

.product::after {
    content: '';
    height: 30px;
    width: 30px;
    display: block;
    position: absolute;
    border-bottom: solid 3px #f5ee5d;
    border-right: solid 3px #f5ee5d;
    right: 0px;
    bottom: 20px;
}

.product img {
    height: 300px;
    width: 300px;
    /* transition: transform .2s; */
    -webkit-box-shadow: 5px 5px 16px 0 rgba(0, 0, 0, 0.53);
    box-shadow: 5px 5px 16px 0 rgba(0, 0, 0, 0.53);
}

.product h2 {
    text-align: center;
    color: var(--dark-blue);
}

.product p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: #87829a;
}

.product:hover {
    transform: scale(1.05);
}

.product a {
    text-decoration: none;
    color: black;
}

.product h2 {
    margin-top: 0.5%;
}

.product p {
    max-width: 300px;
}

.aboutussnippet {
    margin-bottom: 4%;
}

.snippetelement {
    margin-top: 12vh;
    width: 100%;
    /* background-color: #bbbbbb88; */
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-top: 3vh;
    padding-bottom: 6vh;
    text-align: center;
    color: var(--dark-blue);
}

.aboutusimg {
    max-width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.infobuttons {
    background-color: var(--main-theme);
    color: white;
    padding: 10px 25px;
    border-radius: 3px;
    cursor: pointer;
    border: 0;
    box-shadow: none;
    background: #048DAC;
    background: -moz-linear-gradient(45deg, #048DAC 0%, #037C97 64%, #037C97 100%);
    background: -webkit-linear-gradient(45deg, #048DAC 0%, #037C97 64%, #037C97 100%);
    background: linear-gradient(45deg, #048DAC 0%, #037C97 64%, #037C97 100%);
}

/* .infobuttons a {
    text-decoration: none;
    color: white;
} */

.snippetelement p {
    max-width: 50%;
    color: var(--cool-blue);
    font-size: larger;
}

.statistics {
    text-align: center;
    color: var(--dark-blue);
}

.statscollection {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25%;
    color: var(--cool-blue);
}

.statsbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* padding: 50px; */
}

.aboutusimg {
    max-width: 100%;
}

/* .aboutuswimage {
    display: flex;
    flex-direction: column;
} */

.contactformclass {
    color: #87829a;
}

/* Temporary */

.darkblue {
    color: var(--dark-blue)
  }
  
