/*=========================
	IMAGE BANNER BLOCK
=========================*/

.block-hero-banner .container .top-content {
    display: flex;
    padding-top: 180px;
    padding-bottom: 250px;
    justify-content: space-between;
}
.block-hero-banner.height__full {
    height: calc(100vh - 95px);
}

.block-hero-banner .hero-banner__content .title {
  text-align: left;
  margin-bottom: var(--space-5);
}
.block-hero-banner .hero-banner__contentLeft { 
    flex: 1;
    max-width: 500px;
}
.block-hero-banner .hero-banner_middleContent {
    display: none;
}
.block-hero-banner .hero-banner__contentRight {
    display: flex;
    justify-content: flex-end;
    width: 285px;
}

.block-hero-banner  .slide-content .label {
    font-size: 12px;
}

.block-hero-banner  .slide-content h5 {
    border-bottom: 1px solid #FFF;
    padding-bottom: 5px;
}

.block-hero-banner .title u {
    text-decoration-thickness: 4px;
    text-underline-offset: 10px; 
}

.block-hero-banner .subtitle {
    display: flex;
    justify-content: space-between;   
    padding-top: 5px;
}

.block-hero-banner .subtitle p {
    font-weight: 700;
}

.block-hero-banner  .swiper {
    padding-bottom: 50px;
    margin: 0;
}

.block-hero-banner  .swiper-wrapper { 
    max-height: 100px;
}

.block-hero-banner .swiper-button-next, .block-hero-banner .swiper-button-prev {
    color: #FFF;
}

.block-hero-banner .swiper-button-next:after, .block-hero-banner .swiper-button-prev:after {
    font-size: 12px;
    border: 1px solid #FFF;
    padding: 8px 18px;
    border-radius: 12px;
}

.block-hero-banner .pagination {
    top: 15px;
    position: relative;
}

.block-hero-banner  .swiper-pagination-fraction {
    top: -10px;
    font-size: 12px;
}

.block-hero-banner .featured-posts { 
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: var(--color-a1);
    position: absolute;
    bottom: -100px;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
}

.block-hero-banner .featured-posts a {
    display: flex;
    flex-direction: column;
    padding: 30px;
    gap: var(--space-2);
    color: var(--color-p);
    border-right: 1px solid var(--color-p);
    position: relative;
}

.block-hero-banner .featured-posts a svg.eye-icon{
    bottom: 15px;
    position: absolute;
    right: 20px;
}

.block-hero-banner .featured-posts a:hover {
    background-color: var(--color-p);
    color: var(--color-n-white);
}


.block-hero-banner .featured-posts a:hover svg path {
    stroke: #FFF;
}

.block-hero-banner .post {
    display: flex;
    flex-direction: column; 
    gap: var(--space-1)
}

.block-hero-banner .post:last-child {
    border: none;
}
.block-hero-banner .post .category {
    font-size: 14px;
    font-weight: 600;
}

.block-hero-banner .post .staff-title {
    font-size: 12px;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between
}

.block-hero-banner .post .staff-title span {
    font-weight: 600;
    font-size: 11px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 40, 85, 0.5);
    z-index: 1;
}

section {
    position: relative;
}

section .container {
    position: relative;
    z-index: 2;
}

.title-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.title-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.6s ease;
    visibility: hidden;
}

.title-slide.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.title-slide.exit {
    position: absolute;
    opacity: 0;
    transform: translateY(-100%);
    visibility: visible;
}

.title-slide.enter {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

@media (max-width: 768px) {
    .video-background {
        display: none;
    }
}
@media (max-width: 768px) {      
    .block-hero-banner .container .top-content {
        padding-top: 60px;
        padding-bottom: 30px;
        gap: 30px;
    }
    .block-hero-banner {
        background: var(--color-p) !important;
    }
    .block-hero-banner .container .top-content {
        flex-direction: column;
        align-items: center;
    }
    .block-hero-banner .hero-banner__contentLeft {
        text-align: center;
    }
    .block-hero-banner .hero-banner_middleContent {
        display: block;
        width: 100%;
    }
    .block-hero-banner .hero-banner__contentRight {
        display: block;
        width: 100%;
    }
    .block-hero-banner .featured-posts {
        position: relative;
        grid-template-columns: 1fr;
        width: 100%;
        top: 0;
        transform: unset;
        left: 0;
    }
    .block-hero-banner .featured-posts a {
        border: 0;
        border-bottom: 1px solid var(--color-p);
    }
    .block-hero-banner .featured-posts a:hover {
        border: 0;
    }
    .block-hero-banner  .slide-content .label {
        display: none;
    }
}