.gs-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    /*background-color: #e2eded;*/
    background: rgb(226, 237, 237);
    background: linear-gradient(180deg, rgba(226, 237, 237, 1) 25%, rgba(226, 237, 237, 1) 50%, rgba(248, 248, 248, 1) 75%);
    flex: 0;
    /*background: rgb(82,139,139);
background: linear-gradient(180deg, rgba(82,139,139,1) 0%, rgba(144,184,184,1) 35%, rgba(248,248,248,1) 100%);*/
    /*  
    background: rgb(226, 237, 237);
    background: linear-gradient(180deg, rgba(226, 237, 237, 1) 0%, rgba(248, 248, 248, 1) 54%, rgba(248, 248, 248, 1) 100%); */
}

.main {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: center;
    /*  background-color: #e2eded;*/
    flex: 0;
    margin-bottom: 2em;

}

/*   .main > div {
    background-color: #e2eded;
    margin: 1em 2.2em 2em;
    padding: 1em;
} */

.main > .image-stack {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin: 0 1.2em .5em;
    padding: .5em;
    background-color: white;
    border-radius: 5px;
    box-shadow: 
    0 0 0 2px white, 
0.3em 0.3em 1em rgb(0 0 0/8%);
}

.main > .image-stack img {
    position: relative;
    align-self: center;
    background-color: #e2eded;
    margin: 0 1em 0.5em;
    padding: 0;
    border-radius: 5px;
}

.image-stack > h3 {
    align-self: center;
    color: #8b5252;
}

.image-stack > h4 {
    align-self: center;
    color: #3a6262;
    /*color: #5f9f9f;*/
    font-weight: bold;
}

.image-stack > p {
    font-size: .8em;
}

@media screen and (max-width : 653px) {
    .main > .image-stack {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        margin: 0 1.2em 1.2em;
        padding: .5em;
        background-color: white;
        border-radius: 5px;
        box-shadow: 
        0 0 0 2px white, 
0.3em 0.3em 1em rgb(0 0 0/8%);
width: 80%;
    }
}

/* tooltip test */

.tooltip {
    position: relative; /* Required for absolute positioning of the tooltip */
    display: inline-block; /* Or block, depending on your layout */
    border-bottom: 1px dotted black; /* Optional: Adds a dotted underline */
}

.tooltip.tooltiptext {
    visibility: hidden; /* Hide the tooltip by default */
    width: 120px; /* Set a width for the tooltip */
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    /* Position the tooltip */
    position: absolute;
    z-index: 1; /* Ensure the tooltip is on top */
    bottom: 125%; /* Position below the element */
    left: 50%;
    margin-left: -60px; /* Center the tooltip horizontally */

    /* Optional: Add an arrow to the tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}
.tooltip:hover.tooltiptext {
    visibility: visible;
    opacity: 1;
}

hr {
    max-width: 75%;
    margin-top: 2em;
}

.gs-introtext {
    margin: 1rem auto 2rem;
    width: 80%;
    max-width: 1000px;
}

.gs-introtext h3 {
    color: #8b5252 !important;
    font-size: 1.2em;
    margin-left: 1rem;
}

.gs-introtext p {
    border-left: solid 1px #555656;
    padding-left: 1rem;
    margin-bottom: unset;
    margin-top: 0;
}

@media screen and (min-width : 767px) {
    .gs-introtext {
        width: 90%;
        display: flex;
        align-items: center;
        margin-bottom: 2em;
        margin-top: 2.2em;
    }

    .gs-introtext h3 {
        margin: 0 1rem
    }

    .gs-introtext p {
        flex: 3;
        font-size: .9em;
        line-height: 1.5em;
    }
}

/* 
.tiles-title {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-color: #f8f8f8;
}

.tiles-title > h2 {
    margin-top: 1.5em;
    align-self: center;
} 
 * 
 * .whats-new-title {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-color: #e2eded;
}

.whats-new-title > h2 {
    margin-top: 1em;
    align-self: center;
    color: #5c5c5c;
    font-weight: bold;
} */