.main__wrapper {
    background-color: var(--ultraDark20);
    padding-bottom: 100px;
    padding-top: 12px;
}
.main {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: space-between;
}
.main > div:first-child > p {
}
.main > div:first-child > a {
    max-width: 50%;
}
.main > div {
    flex: 0 1 50%;
}
.main > div:last-child {
    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 > 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;
}
/* @keyframes clipPathAnimation {
    0% {
        clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
    }
    25% {
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    }
    50% {
        clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
    }
    75% {
        clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
    }
    100% {
        clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
    }
} */
@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%;
    }
}
/* @keyframes translateXAnimation {
    0% {
        left: 50%;
    }
    25% {
        left: 100%;
    }
    50% {
        left: 50%;
    }
    75% {
        left: 0%;
    }
    100% {
        left: 50%;
    }
} */

.main > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 122px;
}

.swiper-wrapper {
    align-items: stretch !important;
    max-height: 640px;
}
.swiper-slide {
    height: unset !important;
    border-radius: var(--brad);
    overflow: hidden;
}

.mainControls {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    width: max-content;
    gap: 24px;

    margin-top: auto;
}
.slider_counter {
    color: var(--white30) !important;
}
@media (max-width: 1340px) {
    .main {
        align-items: start;
    }
    .main > div:last-child {
        aspect-ratio: initial;
    }
}
@media (max-width: 768px) {
    .main__wrapper {
        padding-bottom: 60px;
    }
    .main > div:first-child {
        margin-top: 24px;
    }
    .controls {
        display: none;
    }
    .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;
    }
}
