.breadcrumb-section {
    display: flex;
    flex-direction: column;
}

.breadcrumb-header {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    z-index: 1;
    padding: 20px;
}

.breadcrumb-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#bh-slv-logo {
    width: min(300px, calc(200px + ((100vw - 300px) * (100 / 200))));
    height: auto;
}

#bh-slv-logo .cls-1 {
    fill: var(--blue-light);
}

#bh-slv-logo .cls-2 {
    fill: var(--orange);
}

#bh-slv-logo .cls-3 {
    fill: var(--default-logo);
}

#bh-slv-logo .cls-4 {
    fill: var(--green);
}

.bh-inner-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 0;
}

.bh-inner-menu li a {
    margin: 0 20px;
    font-size: 17px;
    font-weight: 400;
    color: var(--default-text);
}

.bh-inner-menu li a:hover {
    color: var(--blue-light);
    transform: translateY(-30px);
}

.bh-button {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: var(--blue-light);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
}

.bh-button .icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.bh-button:hover {
    transform: scale(1.05);
    border-color: #fff9;
}

.bh-button:hover .icon {
    transform: translate(4px);
}

.bh-button::before {
    animation: shine 2.5s ease-out infinite;
}

.bh-button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}

#bh-open-button {
    width: min(40px, calc(30px + ((100vw - 300px) * (10 / 200))));
    height: min(40px, calc(30px + ((100vw - 300px) * (10 / 200))));
    fill: var(--default-text);
    display: none;
}

#bh-open-button:active {
    scale: 0.9;
}

.breadcrumb-area {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.breadcrumb-video {
    position: relative;
    width: 100%;
    height: 100%;
}

.breadcrumb-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breadcrumb-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 0.6;
    z-index: 1;
}

.breadcrumb-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    gap: 25px;
    z-index: 2;
}

.breadcrumb-text p {
    text-align: center;
}

.breadcrumb-page {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.breadcrumb-text h1 {
    font-size: clamp(35px, calc(35px + ((100vw - 350px) * (25 / 226))), 60px);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    text-align: center;
}

@media (min-width: 576px) {
    .breadcrumb-text h1 {
        font-size: 60px;
    }
}

.breadcrumb-text ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
}

.breadcrumb-items+.breadcrumb-items::before {
    padding-right: 15px;
    padding-left: 15px;
    color: var(--white);
    content: "|";
}

.breadcrumb-page .breadcrumb-items {
    color: var(--white);
    font-size: 16px;
}

.breadcrumb-page .breadcrumb-items a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

@media (max-width: 1050px) {
    .bh-inner-menu {
        display: none;
    }

    #bh-open-button {
        display: block;
    }
}

@media (max-width: 700px) {
    .bh-button {
        display: none;
    }
}