.project-inner-page {
    margin-top: 40px;
}

.project-swiper {
    margin-top: 40px;
    padding-bottom: 40px;
    height: fit-content;
}

.project-swiper .swiper-slide {
    cursor: pointer;
}

.project-inner {
    width: 100%;
    bottom: 0;
    position: absolute;
    padding: 0 40px 20px;
}

.project-inner img {
    max-width: 60px;
    filter: brightness(0) invert(1);
}

.project-item {
    margin-bottom: 0;
}

.project-thumbnail {
    border-radius: 20px;
    width: 100%;
    background-image: url(../img/project_thumbnail.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 110%;
    height: 400px;
    transition: all .25s;
}

.project-thumbnail:hover {
    background-size: 120%;
    transition: all .25s;
}

.project-year {
    font-weight: bold;
    font-size: 48px;
    color: white;
}

.project-modal-box {
    position: fixed;
    width: 100%;
    height: 100vh;
    right: 0;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: rgba(0, 0, 0, .5);
}

.project-modal-card {
    box-sizing: content-box;
    width: 100%;
    max-width: 65%;
    background-color: white;
    border-radius: 20px 0 0 20px;
    padding: 40px 40px 60px;
}

.project-modal-close {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-weight: bold;
    margin-bottom: 20px;
}

.project-modal-close img {
    margin-left: 5px;
    width: 100%;
    max-width: 30px;
}

.project-modal-content {
    padding-left: 40px;
}

.project-content-box {
    margin: -60px 20px 0;
    padding: 40px;
    border-radius: 20px;
    max-width: 85%;
    position: relative;
    background-color: rgba(78, 183, 226, 0.9);
    z-index: 1;
}

.project-content-header {
    z-index: -1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.project-content-year {
    font-size: 128px;
    font-weight: bold;
    color: #4eb7e2;
    margin-left: 20px;
}

#BusinessProjectDiv .project-content-img {
    width: 100%;
    max-width: 70%;
    border-radius: 20px;
}

#BPModalDiv .project-content-img {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
}

.project-content-item {
    margin-bottom: 20px;
}

.project-content-item:last-child {
    margin-bottom: 0;
}

.project-content-month {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.project-content-title {
    font-size: 18px;
    color: white;
}

.project-content-prev-btn{
    position: absolute;
    right: 120px;
    bottom: 60px;
    cursor: pointer;
}

.project-content-prev-btn img{
    transform: rotate(180deg);
}

.project-content-next-btn {
    position: absolute;
    right: 50px;
    bottom: 60px;
    cursor: pointer;
}

.project-content-prev-btn:hover img,
.project-content-next-btn:hover img {
    max-width: 60px;
    transition: all .3s;
}

.project-content-prev-btn img,
.project-content-next-btn img {
    width: 100%;
    max-width: 50px;
    transition: all .3s;
}

.project-modal-img{
    width: 100vw;
    height: 400px;
    background-size: cover;
    border-radius: 20px;
}