.post-hero-cpt {
    position: relative;
    width: 100%;
    height: 100vh;
}

.post-hero-cpt.not-show{
    visibility: hidden;
    margin-top: 100px;
    height: 1px;
    opacity: 0;
}
.post-hero-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.post-hero-media {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.post-hero-media img, .post-hero-media video {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.post-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center; 
    width: 80%;
    max-width: 1000px;
}

.post-hero-content h1 {
    max-width: 1000px;
    width: 90%;  
}

.post-hero-content .subtitle {
    font-size: 12px; 
    line-height: 18px;
}

.default-section {
  background: linear-gradient(to bottom, #001545, #002B8C);;
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
    .post-breadcrumb-wrapper {
        display:none;
    }

    .post-hero-content {
        width: 80%;
    }

    .post-hero-content h1 {
        max-width: 1000px;
        width: 100%; 
    }
}

@media (max-width: 767px) {

    .post-hero-content {
        width: 100%;
    }
}