
#top-div {
    position: relative;
    width: 100vw;
    height: 300px;
}

#slider-container-div {
    position: absolute;
    left: 0;
    height: 100%;
    display: flex;
    flex-direction: row;
}

.slider-item-div {
    width: 100vw;
    height: 100%;
    overflow: hidden;
}

.slider-item-image {
    min-width: 100%;
    min-height: 100%;
    height: 100%;
}

.slider-item-div {
    position: absolute;
    opacity: 0;
    transition: opacity 1s;
}
.slider-item-div.active {
    opacity: 1;
}

#middle-div {
    width: 100vw;
}

#slider-title-div {
    z-index: 100;
    position:absolute;
    top: calc(50% - 70px);
    margin-left: 40px;
    color: white;
}

#slider-title-top {
    font-size: 20px;
}

#slider-title-bottom {
    font-size: 30px;
    font-weight: 600;
}

#slider-title-button {
    width: fit-content;
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 100px;
    padding-top: 15px;
    padding-bottom: 15px;
    border: 2px solid white;
    font-weight: 700;
    transition: 0.3s;
    background-color: #ffffff00;
}

#slider-title-button:hover {
    cursor: pointer;
    background-color: #ffffff30;
}


#middle-div {
    width: calc(100% - 40px);
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    padding: 30px 20px;
}

.middle-button {
    width: 200px;
    text-align: center;
}

.middle-button-img {
    width: 70px;
    opacity: 0.3;
}

.middle-button-title {
    margin-top: 20px;
    font-size: 17px;
}

.middle-button:hover {
    cursor: pointer;
}


#bottom-div {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box; /* Ensure padding is included in the width */
    padding-top: 40px;
    padding-bottom: 40px;
}

#bottom-top, #bottom-bottom {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 10px;
}


#bottom-div > div {
    width: calc(100% - 2 * 15px);
    box-sizing: border-box;
    margin-left: 15px;;
}

#bottom-top-left {
    padding-bottom: 20px;
    border: 1px solid #00000040;
    background-color: white;
    width: 100%;
}

#bottom-top-left-title {
    width: calc(100% - 2 * 30px);
    padding: 10px 0px;
    margin-left: 30px;
    font-weight: 700;
    font-size: 20px;
    margin-top: 20px;
    border-bottom: 2px solid black;
    margin-bottom: 15px;

    position: relative;
}

.bottom-images {
    width: 100%;
}

#bottom-top-left-title > span {
    right: 0;
    position: absolute;
    font-weight: 500;
    font-size: 15px;
    bottom: 10px;
    cursor: pointer;
    color: #00000040;
}

.notice-item {
    width: calc(100% - 2 * 30px);
    padding: 5px 0px;
    margin-left: 30px;

    display: flex;
    flex-direction: row;
    cursor: pointer;
}

.notice-item-title {
    width: calc(100% - 100px);

    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.notice-item-title:hover {
    text-decoration: underline;
}

.notice-item-date {
    width: 100px;
    text-align: right;
}

#bottom-top-right {
    margin-top: 10px;
}
#bottom-bottom-left {
    width: 100%;
}

#bottom-bottom-right {
    width: 100%;
}

#bottom-bottom-left-top {
    width: 100%;
    margin-top: 10px;
}

#bottom-bottom-left-top > img {
    width: 100%;
}

#bottom-bottom-left-bottom {
    border: 1px solid #00000040;
    height: 150px;
    width: 100%;
    background-color: white;
    margin-top: 10px;

    overflow: hidden;
    position: relative;
}

#bottom-bottom-right {
    margin-top: 10px;
    border: 1px solid #00000040;
    width: 100%;
    background-color: white;
}


.image-wrapper {
    width: 300%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.image-wrapper > img {
    height: 100%;
    width: calc(100% / 3);
}


.circles {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
}

.circle {
    width: 12px;
    height: 12px;
    margin: 0 3px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.circle.active {
    background-color: white;
}