#hero {
    background-color: var(--powder-blue);
}

/* --------- Intro Section --------- */
.introduction {
    font-weight: 300;
    font-size: 1.3rem;
    line-height: 1.3;
}

.introduction a {
    color: var(--brand)
}

/* --------- DATA Section --------- */
.stats-span {
    width: 90px;
    text-align: right;
}

.stats-span-two {
    width: 180px;
}

/*   training section   */
#training ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 0;
    margin-block-end: 1em;
    padding-inline-start: 1rem;
    unicode-bidi: isolate;
}

#training li {
    margin-bottom: 0.5rem;
    list-style-type: square;
}

#training li::marker {
    color: var(--gray5);
    font-size: 1.4em;
    line-height: 0.8;
    padding-top: 3px;

}

/*   carousels on the home page   */
.home-page .inicators-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}


/*   carousels and slider arrows on the home page   */
.btn-round {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    line-height: 1;
}

.btn-round:hover {
    border: 1px solid var(--logo);

}

.home-page .carousel-control-next,
.home-page .carousel-control-prev {
    position: relative;

}

.home-page .carousel-indicators [data-bs-target] {
    width: 1rem;
    height: 0.25rem;
    margin: 0.5rem;
}

.home-page .carousel-indicators {
    position: relative;
    margin: 0 1rem;
}

.tools-carousel-image-container {
    width: 290px;
    height: 240px;
    margin: 0;
    padding: 0;
}

.tools-carousel-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 200;
}


.training-container {
    display: flex;
    flex-direction: column;

}

.training-container .text-left {
    margin-top: auto;

}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .home-page .carousel-indicators [data-bs-target] {
        width: 0.9rem;
        height: 0.25rem;
        margin: 0.3rem;
    }

    .home-page .carousel-indicators {

        margin: 0 0.5rem;
    }
}

/* ----needed for the cypress test -- */
#seeAllStructures {
    margin-left: 3px;
}