.intro {
    display: flex;
    align-items: flex-start;
    gap: 55px;
    width: min(96%, 1500px);
}

.intro__media {
    /*width: 50%;*/
    display: flex;
    flex-direction: column;
    margin-top: 141px;
    align-items: flex-end;

    background-color: #242424;
    padding: 10px;
    width: 38vw;
}
.intro__media.video{
    align-items: unset !important;
}

@media screen
and (min-device-width: 1200px)
and (max-device-width: 1600px)
and (-webkit-min-device-pixel-ratio:1) {
    .intro__media{
        margin-top: 2.5%;
    }
}

.intro__media-image,
.intro__media-video {
    width: 100%;
    max-height: 433px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/*.intro__media-image-wrap{*/
/*    width: 700px;*/
/*    height: 394px;*/
/*}*/

.intro__media-image-wrap .intro__media-image {
    max-height: 600px;  /* Limits the height */
    max-width: 700px;   /* Limits the width */
    object-fit: contain; /* Ensures the entire image is visible without cropping */
    width: 100%;         /* Scales the image responsively */
    height: auto;        /* Ensures height adjusts with aspect ratio */
}

.intro__media-image-wrap.vertical .intro__media-image {
    aspect-ratio: 9 / 16; /* Maintains 9:16 ratio for vertical images */
}

.intro__media-image-wrap.horizontal .intro__media-image {
    aspect-ratio: 16 / 9; /* Maintains 16:9 ratio for horizontal images */
}

.intro__media-credits {
    font-size: 13px;
    margin-right: 6px;
    margin-top: 8px;
    text-align: left;
}

.intro__content {
    width: 50%;
    line-height: 33px;
    margin-top: 141px;
}

.scroll-arrow.desktop
{
    bottom: 40px;
}

@media screen
and (min-device-width: 1200px)
and (max-device-width: 1600px)
and (-webkit-min-device-pixel-ratio:1){
    .intro__content{
        margin-top: 2.5%;
    }
}

.intro .titles-container {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    border-right: 8px solid;
    padding: 11px;
}

.titles-container desktop, .intro .titles-container{
    border-right-color: var(--bg-color);
}

.ltr .intro .titles-container{
    border-left: 8px solid;
    border-right: 0;
}

.ltr .intro .titles-container, .ltr .intro .titles-container, .circle-dot.circle-seal {
    border-left-color: var(--bg-color);
}

.ltr .intro__text{
    line-height: 23px;
}

.titles-container.mobile {
    display: none;
}

.titles-container * {
    margin: 0;
}

.intro__title {
    width: 305px;
    font-size: 30px;
    font-weight: bold;
    font-family: 'SimplePro-H-Bold';
}

.intro__subtitle {
    font-size: 17px;
    font-weight: 400;
    line-height: 17px;
    text-align: right;
    margin-top: 5px;
}

.intro__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    width: 590px;
    margin-top: 37px;
}

.scroll-arrow {
    position: absolute;
    background: url(/img/arrow.png) no-repeat;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 27px;
    height: 20px;
    margin: 0;
    align-self: start;
    background-size: contain;
    cursor: pointer;
    animation: fadeIn 2s ease-out infinite;
    justify-self: center;
}

.scroll-arrow.mobile {
    display: none;
}

.scroll-arrow:hover {
    scale: 1.2;
}
/* Laptop */
@media screen
and (min-device-width: 1200px)
and (max-device-width: 1600px)
and (-webkit-min-device-pixel-ratio:1) {

}
/* Mobile */
@media (max-width: 768px) {
    .intro {
        width: 100%;
        padding: 13px;
        justify-content: flex-end;
        flex-direction: column-reverse;
        margin: 0 auto;
        gap: 10px;
    }

    .intro__media {
        flex: 0 1 auto;
        height: auto;
        width: 100%;
        margin-top: 10px;
    }

    .intro__media-image-wrap{
        width: 100%;
        height: 100%;
    }

    .intro__media-image {
        width: 100%;
        /*max-height: 160px;*/
        overflow: hidden;
        object-fit: cover;
        object-position: top;
        margin-bottom: 3px;
    }

    .intro__content {
        flex: 0 1 auto;
        width: 100%;
        padding-left: 0;
        height: auto;
        max-height: 250px;
        overflow: scroll;
        margin-top: 0;
    }

    .titles-container.mobile {
        width: 100%;
        display: flex;
    }

    .titles-container.desktop {
        display: none;
    }

    .intro__title {
        width: 100%;
        font-size: 26px;
        line-height: 30px;
    }

    .intro__subtitle {
        font-size: 18px;
        line-height: 20px;
    }

    .intro__text {
        width: 100%;
        font-size: 18px;
        line-height: 20px;
        margin-top: 0;
    }

    .ltr .intro__text{
        line-height: 21px;
    }

    .intro__media-credits {
        font-size: 12px;
    }

    .scroll-arrow.desktop {
        display: block;
        bottom: -45px;
    }

    .scroll-arrow.mobile {
        display: none;
        position: relative;
        top: 0;
        margin-top: 0;
    }

    .scroll-arrow.mobile:hover {
        scale: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}