/* Class is used to make the page jump to a adjusted position which takes
 * the fixed navbar into account */
a.anchor {
    display: block;
    position: relative;
    top: -80px; /* match navbar height */
    visibility: hidden;
}

.speaker-card {
    width: 20rem;
}

.speaker-card img {
    object-fit: cover;
    height: 20rem;
}

header {
    margin: 0px;
}

.time-title {
    font-size: 19px;
    display: block;
}

#symposium-nav {
    top: 0px;
    position: absolute;
    z-index: 1020;
    border-bottom: 1px solid #e5e5e5;
}

.symposium-container .row {
    margin-bottom: 4rem;
}

.symposium-container h1 {
    margin-bottom: 1rem;
}

.symposium-container p {
    max-width: 800px;
    width: 100%;
}

.symposium-container .row:not(:last-child) {
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

body {
    overflow-x: hidden;
}

#speakersCarousel {
    max-width: 1100px;
    margin: 0 auto;
}

.carousel-item {
    padding: 2rem 0;
}

.speaker-card {
    width: 100%;
    max-width: 20rem;
    margin: 0 auto;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 10px;
}

@media (max-width: 768px) {
    .symposium-container .row {
        margin-bottom: 2rem;
    }

    .symposium-container .row:not(:last-child) {
        padding-bottom: 1.5rem;
    }

    .symposium-container h1 {
        font-size: 1.6rem;
    }
}