.hdp {
    color: #fff;
}

.hdp--head {
    /*background: #141c2d;*/
    position: relative;
    height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: var(--header-height) 0 0;

    &::before,
    &::after {
        content: "";
        position: absolute;
        z-index: 1;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    &::before {
        background-image: url("/wp-content/themes/kn/img/sign.webp");
        width: 320px;
        height: 341px;
        top: 50px;
        left: -100px;
        opacity: 16%;
    }

    &::after {
        background-image: url("/wp-content/themes/kn/img/eagle.webp");
        width: 280px;
        height: 450px;
        bottom: 0;
        right: -160px;
        opacity: 1;
    }
}

.hdp--head .hdp__img-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #211f23, #211f2354);
    z-index: 1;
}
.hdp--head .hdp__img-container {
    height: 100%;
    position: absolute;
    opacity: 1;
    z-index: 0 !important;
    width: 100% !important;
    top: 0;
    left: 0;
}
.hdp--head img {
    height: 100%;
    object-fit: cover;
    width: 100% !important;
}

.hdp--section .container {
    background: #141c2d;
    position: relative;
}

.hdp img {
    height: 100%;
    left: 0;
    object-fit: cover;
    /*opacity: 0.5;*/
    /*position: absolute;*/
    top: 0;
    width: 60%;
    z-index: 1;
}

.hdp__content {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

@media (width >= 1200px) {
    .hdp__content {
        /*min-height: 350px;*/
    }
}

.hdp__back-to-news {
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    margin-bottom: 24px;
    position: relative;
    width: fit-content;
    transition: color 0.2s ease-in-out;
}

.hdp__back-to-news i {
    font-size: 12px;
}

.hdp__back-to-news:hover {
    color: var(--red);

    &::after {
        border-color: var(--red);
    }
}

.hdp__back-to-news::after {
    content: "";
    display: inline-block;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.2s ease-in-out;
}

.hdp .mx-auto {
    text-align: center;
}

.hdp .ms-auto {
    text-align: right;
}

.hdp__scroll-indicator {
    color: var(--gold);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);

    @media (width >= 768px) {
        bottom: 30px;
    }
}

.hdp__scroll-indicator:hover {
    cursor: pointer;
}

.hdp__scroll-indicator:hover .hdp__scroll-bullet {
    animation: scroll-wheel-animation 1.5s infinite;
}

.hdp__scroll-mouse {
    position: relative;
    height: 3rem; /* 48px */
    width: 1.75rem; /* 28px */
    border: 3px solid #524e58;
    border-radius: 1.25rem; /* 20px */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.6);
}

.hdp__scroll-bullet {
    position: absolute;
    height: 8px;
    width: 8px;
    background: var(--gold);
    left: 50%;
    top: 0.5rem; /* 8px */
    transform: translateX(-50%);
    border-radius: 50%;
}

.hdp__scroll-text {
    color: var(--gold);
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 300;
}

@keyframes scroll-wheel-animation {
    0% {
        top: 0.5rem; /* 8px */
        opacity: 1;
    }
    100% {
        top: 1.75rem; /* 28px */
        opacity: 0;
    }
}
