.historical_hero {
    position: relative;
}
#historical .hero_inner {
    height: 68vh;
}
.historical_hero img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.historical_hero .title {
    color: var(--white);
    font-size: var(--size-title);
    font-weight: 400;
    margin-bottom: var(--spacing-text);
}
.historical_hero .text {
    width: 100%;
    max-width: 33vw;
}
.historical_hero .text p {
    color: var(--white);
    font-size: var(--size-text);
    margin-bottom: var(--spacing-text);
}

.historical_gallery {
    padding: var(--spacing) var(--spacing-text);
}
.historical_gallery .swiper-button-prev::after, .historical_gallery .swiper-button-next::after {
    display: none;
}

.historical_gallery .swiper-button-prev, .historical_gallery .swiper-button-next {
    background: var(--white);
    border-radius: 500px;
    padding: var(--spacing-text);
    width: 60px;
    height: 60px;
}
.historical_gallery .swiper-button-prev {
    margin-left: var(--spacing);
}
.historical_gallery .swiper-button-next {
    margin-right: var(--spacing);
}
.historical_gallery .swiper-button-next {
    transform: rotate(180deg);
}
.historical_gallery .swiper .swiper-slide-blank {
    display: none;
}
.historical_gallery .swiper .swiper-slide {
    overflow: hidden;
}
.historical_gallery .swiper .swiper-slide img {
    width: auto;
    height: calc(100vh - 120px) !important;
    object-fit: cover;
}


@media (min-width: 993px) and (max-width: 1400px) {
.historical_hero .text {
    max-width: 60vw;
}
}

@media (max-width: 992px) {
.historical_hero .text {
    max-width: 100%;
}
.historical_gallery {
    padding: 0;
}
.historical_gallery .swiper-button-next, 
.historical_gallery .swiper-button-prev {
    width: 30px;
    height: 30px;
    padding: 15px !important;
}
.historical_gallery .swiper-button-next img, 
.historical_gallery .swiper-button-prev img {
    width: 40px;
    height: 40px;
}
.historical_gallery .swiper-button-prev {
    margin-left: 0;
}
.historical_gallery .swiper-button-next {
    margin-right: 0;
}
.historical_gallery .swiper .swiper-slide img {
    height: 100vh !important;
}   
}