.main__wrapper {
    background-color: var(--ultraDark20);
    /* padding-bottom: 100px; */
    padding-top: 12px;
    max-width: 100% !important;
}
.main {
    /* display: flex; */
    /* flex-direction: column; */
    /* gap: 12px; */
    /* justify-content: space-between; */
}
.main h1 {
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 900;
}
.main * {
    z-index: 2;
    text-align: center;
}
.main > div:first-child {
}
.main > div:first-child > p {
    color: white !important;
}
.main > div:first-child > a {
    max-width: 50%;
}
.main > div {
    flex: 0 1 50%;
}
.main > div:last-child {
    z-index: 0;

    display: flex;
    align-items: stretch;
    align-self: stretch;
    flex: 1 1 48.5%;
    width: 100%;
    border-radius: var(--bradMed);
    overflow: hidden;
    /* max-height: 640px; */
    /* aspect-ratio: 1/2; */
}
.main > div:last-child::after {
    z-index: 1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        #151516 0%,
        rgba(0, 0, 0, 10%) 50%,
        rgba(0, 0, 0, 0) 100%
    );
}
.main .swiper-wrapper {
    max-height: 720px !important;
}
.main .swiper-slide:nth-child(2) > div {
    height: 100%;
}
.main .swiper-slide:not(:nth-child(2)) {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.main .swiper-slide:not(:nth-child(2)) > div {
    /* aspect-ratio: 2.5/2; */
    height: 30%;
}
.main .swiper-slide:not(:nth-child(2)) > div:last-child {
    height: 70%;
}
.main > div:last-child > div > div > div {
    max-width: 80%;
    border-radius: var(--bradMed);
}
.main > div:last-child img {
    scale: 1.01;
}
.main > div:last-child img:last-child {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
    animation: clipPathAnimation 5s infinite ease-in-out;
}
.main > div:last-child > div > div > div::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: 100%;
    width: 2px;
    background-color: white;
    z-index: 20;
    filter: drop-shadow(1px 0px 4px white);
    box-shadow: -1px 0px 4px white;

    animation: translateXAnimation 5s infinite ease-in-out;
}
.main > div:last-child > div > div > div::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    height: 64px;
    width: 8px;
    background-color: white;
    z-index: 21;
    border-radius: 100px;

    animation: translateXAnimation 5s infinite ease-in-out;
}
@media (min-width: 768px) {
    .main p {
        max-width: 50%;
        margin: 0 auto;
    }
}
@keyframes clipPathAnimation {
    0% {
        clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
    }
    50% {
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    }
    100% {
        clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
    }
}
@keyframes translateXAnimation {
    0% {
        left: 0%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 0%;
    }
}

.main > div:first-child {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    /* margin-top: 122px; */

    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

@media (max-width: 1340px) {
    .main {
        align-items: start;
    }
    .main > div:last-child {
        aspect-ratio: initial;
    }
}

@media (max-width: 768px) {
    .wrapper.main {
        max-width: 100%;
    }
    .main__wrapper {
        padding-bottom: 60px;
        margin-bottom: 0 !important;
    }
    .main > div:first-child {
        margin-top: 24px;
    }

    .main {
        margin-top: 8px !important;
        flex-direction: column-reverse;
    }
    .main > div:first-child > a {
        max-width: 100%;
    }
    .main__sub > div:first-child {
        max-width: 124px;
    }
    .main > div:last-child {
        aspect-ratio: initial !important;
        max-height: none;
        min-height: 408px;
    }
    .main > div:last-child > div > div > div {
        min-height: 408px;
        max-height: 408px;
    }
    .main > div:last-child img {
        scale: 1.05;
    }

    .main__sub p {
        max-width: 100%;
        font-size: 14px !important;
    }
    .main__sub > div:last-child {
        width: 100% !important;
    }
}
