.gallery {
    padding-top: 2rem;
}

.gallery--wrapper {
    display: flex;
    justify-content: space-between;
}

.gallery--left {
    width: 736px;
    background-color: #fff;
    height: min-content;
}

.gallery--title {
    font-family: "Gilroy";
    padding: 0.75rem 1.25rem 0 1.25rem;
}

.gallery--title h1 {
    margin: 0;
}

.gallery--itemsWrapper {
    display: flex;
    flex-direction: column;
    counter-reset: gallery_item;
}

.gallery--item {
    position: relative;
    width: 100%;
    counter-increment: gallery_item;
    padding-top: 3rem;
    --line_length: 2rem;
    --circle_width: 2rem;

    padding: 3.5rem 1.25rem .75rem 1.25rem;
}

.gallery--item::after {
    position: absolute;
    top: calc(var(--circle_width) - .25rem);
    left: 0;
    content: "";
    width: var(--line_length);
    height: 2px;
    background-color: red;
}

.gallery--item::before {
    position: absolute;
    top: .75rem;
    left: calc(var(--line_length) + .5rem);
    content: counter(gallery_item);
    width: var(--circle_width);
    height: var(--circle_width);
    font-size: calc(var(--circle_width) / 2);
    background-color: red;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
}

.gallery--item.video::before{
    content:url("/assets/icons/star.svg");
}

.gallery--item_image_container {
    width: 100%;
}

.gallery_img {
    max-width: 100%;
}

.gallery--item_text {
    font-family: "Helvatica";
    font-weight: 400;
    line-height: 1.25rem;
    margin: .75rem 0 .75rem 0;

}

.gallery--right {
    width: 368px;
    position: sticky;
    position: -webkit-sticky;
    top: 88px;
    align-self: flex-start;
}

.gallery-right_swiper {
    width: 100%;
    padding: 0 .75rem;
}

.gallery-right_swiper .swiper-slide figure{
    padding: .5rem;
    background-color: #fff;
}

.gallery-right_img {
    width: 100%;
}
.gallery-right_text_container{
    background-color: #fff;
    transform: translateY(-2px);
}
.gallery-right_text {
    height: 68px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: "Gilroy";
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin: 0 0 0.75rem 0;
    padding: 0.5rem 0.75rem 0.25rem 0.75rem;
    color: #222;
    -webkit-box-shadow: 0 1px 5px rgb(0 0 0 / 10%);
    box-shadow: 0 1px 5px rgb(0 0 0 / 10%);
}

.gallery-right_swiper_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2rem;
}

.gallery-right_swiper_pagination {
    width: unset !important;
    transform: translateY(-1px);
}

.right_swiper_nav_prevEl {
    margin-right: .5rem;
}
.right_swiper_nav_nextEl {
    margin-left: .5rem;
}
.right_swiper_nav_prevEl,
.right_swiper_nav_nextEl {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 2.25rem;
    color: #f00;
}

.gallery-right_swiper_nav .swiper-pagination-bullet-active {
    background-color: #f00 !important;
}
.gallery_right--related_galleries{
    padding: 0 .75rem;
}
.gallery_right--related_galleries_title h4{
    font-family: "Helvatica";
    font-weight: 700;
    font-size: 1.25rem;
    margin: 1rem 0 0.5rem 0;
}

.gallery_right--related_galleries_title h4.video{
    margin-top: 0;
}

.related_galleries--wrapper{
    display: flex;
    flex-direction: column;
}
.related_galleries--wrapper a{
    display: block;
    width: 100%;
    margin-bottom: 1rem;
}
.related_galleries_img{
    width: 100%;
}
.related_galleries_text{
    background-color: #fff;
    padding: 1rem 1rem 1.5rem;
    transform: translateY(-2px);
}
.related_galleries_text h3{
    font-family: "Gilroy";
    font-weight: 800;
    margin: 0;
    font-size: 18px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gallery-right_img.video{
    height: 185px;
    width: 100%;
    object-fit: cover;
}

.video_details--video{
    width: 100%;
}

.gallery--item_image_container.video{
    font-family: "Gilroy";
}

:root{
    --plyr-color-main:red ;
}

.related_galleries_img.video{
    width: 100%;
    height: 194px;
    object-fit: cover;
}