body {
    background-color: #0f1d34;
    color: white;
}

.product-container {
    width: 50%;
    margin: auto;
    min-height: 100vh;
    justify-items: center
}

.product-name {
    margin: 0;
    font-size: 8dvh;
}

.product-first-text {
    margin-left: 10px;
    text-align: justify;
    font-size: larger;
    line-height: 125%;
}

.product-link {
    color: white;
    font-size: 24px;
    margin-right: 5%;
    text-decoration: none;
    border-bottom: 3px solid #DF8045;
    padding-left: 1%;
    padding-right: 1%;
}

/* @keyframes key-features-glow {
    0% {
        box-shadow: -11px 11px 20px 0px rgba(43, 169, 212, 0.6);
    }

    25% {
        box-shadow: 11px 11px 20px 0px rgba(43, 169, 212, 0.6);
    }

    50% {
        box-shadow: 11px -11px 20px 0px rgba(43, 169, 212, 0.6);
    }

    75% {
        box-shadow: -11px -11px 20px 0px rgba(43, 169, 212, 0.6);
    }

    100% {
        box-shadow: -11px 11px 20px 0px rgba(43, 169, 212, 0.6);
    }
} */

.key-features {
    background: #0D0D0D;
    width: 120%;
    margin-top: 5%;
    margin-bottom: 5%;
    display: grid;
    grid-template-columns: 45% 55%;
    border-radius: 40px;
    /* animation: key-features-glow 9s infinite;
    animation-timing-function: ease-in-out; */
}

.key-features-heading {
    color: white;
    background-color: rgba(43, 169, 212, 0.6);
    align-content: center;
    font-size: 2.1em;
    height: 2.1em;
    padding-left: 7%;
    margin-top: 13%;
}

.key-features-list-container {
    color: white;
    margin-top: 5%;
    margin-left: 7%;
}

.key-features-list-container-wrapper {
    grid-column: 1;
    grid-row: 3;
}

.key-features-list {
    list-style-type: none;
    gap: 4em;
    display: grid;
    grid-template-columns: 1fr;
}

.key-features-list-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.key-features-list-item-header {
    border-left: 7px solid #00a2a2;
    padding-left: 20px;
    font-size: xxx-large;
    height: 115%;
}

.key-feature-description {
    padding-left: 30px;
    font-size: 1.3em;
    line-height: 120%;
}

.key-features-list li:last-child {
    margin-bottom: 15%;
}

.product-first-img {
    width: 30%;
    object-fit: scale-down;
}

.product-intro {
    margin-top: 5%;
    display: flex;
}

.gallery-carousel {
    display: inline;
    margin-left: 5%;
}

.gallery-carousel-list-item {
    border: none;
    background-color: #00a2a2; 
    font-size: 1.2em; 
    padding: 0.5em;
    width: 180px;
    text-align: center;
    display: inline-block;
    margin: 1% 1% 1% 0;
    cursor: pointer;
}

.gallery-carousel .gallery-carousel-list-item:first-child {
    border-radius: 20px 0 0 20px;
}

.gallery-carousel .gallery-carousel-list-item:last-child {
    border-radius: 0 20px 20px 0;
}

.gallery-carousel-item {
    margin: 1% 3% 7% 5%;
}