.image-modal {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
#view-image-field img {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 95%;
    border: 3px solid #F6E6AE;
    border-radius: 10px;
}
#close-view-image {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #F6E6AE;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.page {
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    height: 100%;
}
.section {
    margin-top: 100px;
    height: calc(100% - 100px);
    scroll-snap-align: end;
    opacity: 0;
}
.section-show {
    opacity: 1;
    transition: opacity 1s;
}

.image-field {
    display: flex;
    justify-content: center;
    align-items: center;
}
.presentation-image {
    width: 80%;
    height: auto;
    border: 3px solid black;
    border-radius: 10px;
}
.carousel-image-caption-dark {
    color: #708090;
    font-size: 36px;
}
.carousel-image-caption-light {
    color: #FF7F00;
    font-size: 36px;
    font-weight: 600;
}

.carousel-indicators {
    position: static;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}
.carousel-indicators button {
    background-color: #F6E6AE!important;
}
.carousel-control-prev,
.carousel-control-next {
    width: 30px;
}

.section-label {
    align-items: center;
    padding: 0 35px 0 15px;
    color: #14A9A5;
}
.section-title {
    font-family: Georgia;
    font-size: 36px;
    font-weight: 400;
    color: black;
}
.section-hr {
    width: 500px;
    margin: 0;
}
.section-list {
    font-weight: 300;
    font-size: 16px;
    padding: 20px 0 0 0;
    color: black;
    list-style-type: none;
}
.section-list li {
    position: relative;
    margin-top: 5px;
    text-align: justify;
}
.section-list li::before {
    content: '•';
    position: absolute;
    left: -20px;
    color: #14A9A5;
    font-size: 16px;
}