.board {
    margin-bottom: 500px;
}

.board .titles {
    text-align: center;
    position: relative;
    z-index: 1;
}

.board .titles .italic {
    color: var(--green);
    font-family: var(--font);
    font-size: var(--size-186);
    font-style: italic;
    font-weight: 200;
    line-height: 1;
    letter-spacing: -7px;
    margin-left: -30%;
}

.board .titles .normal {
    color: var(--green);
    font-family: var(--font);
    font-size: var(--size-245);
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    margin: 0px auto var(--space-2lg) 30%;
}

.board .sub {
    /* text-align: center; */
}
.board .sub svg {
    width: 100%;
    max-width: 585px;
    margin-bottom: var(--space-lg);
}

.board .text {
    max-width: 1000px;
    margin: 0 auto;
}

.board .sub h3 {
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-48);
    font-weight: 200;
    line-height:1.2;
    /* margin-bottom: var(--space-xs); */
}

.board .text p {
    color: var(--grey-two);
    font-family: var(--font-second);
    font-size: var(--size-20);
    font-style: normal;
    font-weight: 100;
    line-height: 170%;
    margin: 0;
}

.board .mobile_board {
    display: none;
}
.board .desktop.middle {
    display: flex;
    position: relative;
    z-index: 1;
}
.board .desktop_board {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: var(--space-sm);
    align-items: start;
    position: relative;
}

.board .left,
.board .right {
    position: relative;
    height: clamp(500px, 55vw, 900px);
    overflow: visible;
}

.board .board_image {
    position: absolute;
    max-width: 650px;
    max-height: 650px;
    width: 100%;
    aspect-ratio: 3 / 4;
    animation-name: float;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    z-index: 1;
    border-radius: 6px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35); */
}

.board .board_image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(var(--img-rotate, 0deg));
    }
    50% {
        transform: translateY(-14px) rotate(calc(var(--img-rotate, 0deg) + 1deg));
    }
    100% {
        transform: translateY(0px) rotate(var(--img-rotate, 0deg));
    }
}

@media (prefers-reduced-motion: reduce) {
    .board .board_image {
        animation: none;
    }
}

.board .left .board_image:nth-child(7n+1) {
    top: -15%;
    left: 20%;
    width: 54.6%;
    z-index: 5;
    animation-duration: 5.5s;
    animation-delay: 0s;
}
.board .left .board_image:nth-child(7n+2) {
    top: 1%;
    left: 55%;
    width: 39%;
    z-index: 2;
    animation-duration: 7s;
    animation-delay: 0.4s;
}
.board .left .board_image:nth-child(7n+3) {
    top: 25%;
    left: -10%;
    width: 62.4%;
    z-index: 4;
    animation-duration: 6.2s;
    animation-delay: 0.8s;
}
.board .left .board_image:nth-child(7n+4) {
    top: 48%;
    left: 50%;
    width: 39%;
    z-index: 2;
    animation-duration: 5.8s;
    animation-delay: 1.2s;
}
.board .left .board_image:nth-child(7n+5) {
    top: 58%;
    left: -8%;
    width: 50%;
    z-index: 5;
    animation-duration: 6.8s;
    animation-delay: 0.2s;
}
.board .left .board_image:nth-child(7n+6) {
    top: 78%;
    left: 20%;
    width: 44.2%;
    z-index: 3;
    animation-duration: 5.2s;
    animation-delay: 1s;
}
.board .left .board_image:nth-child(7n+7) {
    top: 105%;
    left: 44%;
    width: 41.6%;
    z-index: 2;
    animation-duration: 7.4s;
    animation-delay: 0.6s;
}

.board .right .board_image:nth-child(7n+1) {
    top: -8%;
    right: -8%;
    width: 39%;
    z-index: 2;
    animation-duration: 6.4s;
    animation-delay: 0.3s;
}
.board .right .board_image:nth-child(7n+2) {
    top: 8%;
    right: 0%;
    width: 52%;
    z-index: 3;
    animation-duration: 5.6s;
    animation-delay: 0.9s;
}
.board .right .board_image:nth-child(7n+3) {
    top: 26%;
    right: 35%;
    width: 52%;
    z-index: 4;
    animation-duration: 7.2s;
    animation-delay: 0.1s;
}
.board .right .board_image:nth-child(7n+4) {
    top: 48%;
    right: 0%;
    width: 65%;
    z-index: 4;
    animation-duration: 6s;
    animation-delay: 0.7s;
}

.board .right .board_image:nth-child(7n+5) {
    top: 60%;
    right: 50%;
    width: 65%;
    z-index: 4;
    animation-duration: 5.4s;
    animation-delay: 1.1s;
}
.board .right .board_image:nth-child(7n+6) {
    top: 76%;
    right: 78%;
    width: 78%;
    z-index: 2;
    animation-duration: 7s;
    animation-delay: 0.5s;
}
.board .right .board_image:nth-child(7n+7) {
    top: 84%;
    right: -5%;
    width: 65%;
    animation-duration: 6.6s;
    animation-delay: 0s;
}

.board .desktop_board .middle {
    position: relative;
    min-height: clamp(400px, 45vw, 700px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    margin: 0;
    width: 100%;
}

.board .desktop_board .middle .middle_images {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.board .desktop_board .middle .sub,
.board .desktop_board .middle .text {
    position: relative;
    z-index: 2;
}

.board .middle.top {
    margin: 0 auto 150px auto;
}

.board .board_swiper {
    width: 100%;
    padding: var(--space-sm) 0;
}

.board .board_swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.board .board_swiper .swiper-slide {
    height: auto;
}

.board .board_swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.board .middle.mobile {
    display: none;
}

.board .middle_images .board_image {
    position: absolute;
    max-width: 650px;
    max-height: 650px;
    width: 100%;
    aspect-ratio: 3 / 4;
    animation-name: float;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    pointer-events: auto;
    z-index: 1;
    border-radius: 6px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35); */
}

.board .middle_images .board_image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.board .middle_images .board_image:nth-child(6n+1) {
    top: -8%;
    left: 35%;
    width: 65%;
    animation-duration: 6.2s;
    animation-delay: 0.2s;
    z-index: 10;
}
.board .middle_images .board_image:nth-child(6n+2) {
    top: 4%;
    right: -44%;
    width: 50%;
    animation-duration: 6.8s;
    animation-delay: 0.6s;
}
.board .middle_images .board_image:nth-child(6n+3) {
    bottom: -56%;
    left: -24%;
    width: 39%;
    animation-duration: 5.9s;
    animation-delay: 0.9s;
}
.board .middle_images .board_image:nth-child(6n+4) {
    bottom: -63%;
    right: 38%;
    width: 40%;
    animation-duration: 7.1s;
    animation-delay: 0.3s;
}
.board .middle_images .board_image:nth-child(6n+5) {
    top: 40%;
    left: -10%;
    width: 65%;
    animation-duration: 6.5s;
    animation-delay: 0.5s;
}
.board .middle_images .board_image:nth-child(6n+6) {
    top: 68%;
    right: 8%;
    width: 40%;
    animation-duration: 5.7s;
    animation-delay: 1s;
}
.board .middle_images .board_image:nth-child(6n+7) {
    top: -8%;
    right: auto;
    left: 0;
    width: 52%;
    animation-duration: 5.7s;
    animation-delay: 1s;
}

@media (min-width: 1551px) {
    .board .desktop_board {
        margin-top: 150px;
    }
}

@media (max-width: 1500px) {
.board .desktop.middle {
    gap: 30px;
}
.board .text {
    max-width: 100%;
    margin: 0 auto;
    width: 80%;
}
}

@media (min-width: 1201px) and (max-width: 1550px) {
    .board .desktop_board {
        margin-top: 120px;
    }
    .board .left .board_image:nth-child(7n+3) {
        left: 28%;
    } 
    .board .left .board_image:nth-child(7n+5) {
        left: 27%;
    }
    .board .right .board_image:nth-child(7n+1) {
        right: 30%;
    }
    .board .right .board_image:nth-child(7n+4) {
        right: 47%;
    }
    .board .right .board_image:nth-child(7n+7) {
        right: 35%;
    }
}

@media (min-width: 1201px) and (max-width: 1300px) {
    .board .left .board_image:nth-child(7n+7) {
        top: 122%;
    }
}
@media (max-width: 1200px) {
    .board .desktop.middle {
        flex-direction: column;
    }
    .board .desktop_board {
        margin-top: 130px;
    }
    .board .text {
        width: 100%;
    }
    .board .board_image {
        width: 100% !important;
        max-width: 100%;
    }
    .board .left .board_image:nth-child(7n+2) {
        left: -28%;
    }
    .board .middle_images .board_image:nth-child(6n+7) {
        top: 11%;
        right: auto;
        left: -42%;
    }
    .board .left .board_image:nth-child(7n+7) {
        left: -28%;
        top: 91%;
    }
    .board .middle_images .board_image:nth-child(6n+3) {
        left: 55%;
    }
    .board .middle_images .board_image:nth-child(6n+2) {
        top: 14%;
    }
    .board .right .board_image:nth-child(7n+3) {
        right: -15%;
    }
    .board .right .board_image:nth-child(7n+4) {
        top: 37%;
        right: -7%;
    }
    .board .right .board_image:nth-child(7n+5) {
        top: 56%;
        right: 26%;
    }
}

/* @media (max-width: 1200px) {
	.board .desktop_board{
        display: grid;
        padding-inline: 0;
        grid-template-columns: 1fr 1fr;
        transform: scale(0.9);		
	}	
	
.board .desktop_board .left, .board .desktop_board .right, .board .desktop_board .middle {
    height: 100vw;
    min-height: 0;
}	
	
	.board .desktop_board .left{display:none}	
	
    .board .desktop_board {
        display: none;
    }
    .board .mobile_board {
        display: block;
    }
    .board .text {
        position: relative;
        z-index: 1;
    }
    .board .text p {
        text-align: center;
    }
    .board {
        margin-bottom: 500px;
    }
    .board .middle.desktop {
        display: none;
    }
    .board .middle.mobile {
        display: block;
    }
    .board .titles::after {
        content: "";
        display: block;
        background: #000;
        filter: blur(65px);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
    }
    .board .titles .italic,
    .board .titles .normal {
        position: relative;
        z-index: 1;
    }
} */

@media (max-width: 992px) {
    .board .titles .italic  {
        margin-left: 0;
        letter-spacing: normal;
    }
}

@media screen and (max-width:667px) and (orientation: portrait) {
    .board {
        position: relative;
        z-index: 1;
        background: var(--black);
        margin-bottom: 450px;
    }
    .board .titles .italic  {
        margin-left: 0;
        letter-spacing: normal;
    }
    .board .titles .normal {
        margin: 0px auto var(--space-sm) 0%;
        text-align: right;
    }

    .board .sub svg {
        margin-bottom: 0;
        max-width: calc(100% - 50px);
    }

}

@media (max-width: 480px) {
    .board {
        margin-bottom: 200px;
    }
}

.board .mobile_diagonal_showcase {
    position: relative;
    width: 100%;
    height: 980px;
    margin-top: -50px;
}
.board .diag_row {
    left: -15%;
    width: 130%;
    height: 210px;
    overflow: hidden;
}
.board .diag_row_front {
    z-index: 60;
}

.board .diag_row_back {
    z-index: 5;
}

.board .diag_row_1 {
    top: -7px;
    transform: rotate(-8deg);
}
.board .diag_row_2 {
    top: 201px;
    transform: rotate(-8deg);
}
.board .diag_row_3 {
    bottom: -30px;
    transform: rotate(5deg);
    margin-top: -40px;
}
.board .diag_row_4 {
    bottom: -240px;
    transform: rotate(5deg);
}

.board .diag_track {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
    width: max-content;
    height: 100%;
    will-change: transform;
}

.board .diag_item {
    width: 155px;
    height: 185px;
    flex: 0 0 155px;
    overflow: hidden;
}

.board .diag_item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.board .diag_row_1 .diag_track {
    animation: board-slide-left 20s linear infinite;
}
.board .diag_row_2 .diag_track {
    animation: board-slide-right 24s linear infinite;
}
.board .diag_row_3 .diag_track {
    animation: board-slide-left 22s linear infinite;
}
.board .diag_row_4 .diag_track {
    animation: board-slide-right 26s linear infinite;
}

@keyframes board-slide-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-33.3333%);
    }
}
@keyframes board-slide-right {
    from {
        transform: translateX(-33.3333%);
    }

    to {
        transform: translateX(0);
    }
}

.board .mobile_diagonal_showcase .middle {
    width: calc(100% - 40px);
    z-index: 50;
    text-align: center;
    pointer-events: none;
    position: relative;
}
.board .mobile_diagonal_showcase .middle::after {
    content: "";
    display: block;
    background: #000;
    filter: blur(65px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}
.board .mobile_diagonal_showcase .middle svg {
    position: relative;
    z-index: 10;
}
.board .mobile_diagonal_showcase .middle .sub {
    position: relative;
    margin-bottom: var(--space-sm);
}

.board .mobile_diagonal_showcase .middle .text {
    position: relative;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 500px) and (max-width: 1200px) {
.board .mobile_diagonal_showcase {
    margin-top: -50px;
}
}

@media (prefers-reduced-motion: reduce) {
    .board .diag_track {
        animation: none !important;
    }
}