/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    
    min-height: 500px;
    padding: 30px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #000;
    z-index: 1;
}

.page-header.common-bnr {
    position: relative;
    display: block;
    min-height: 330px;
    padding: 30px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: black;
    z-index: 0;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: -1;
}

.page-header__inner {
    position: relative;
    display: block;
}

.page-header__inner h1 {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.2em;
    color: #fff;
    margin-bottom: 20px;
}
.page-header__inner p {
    color: #fff;
}

@media (min-width:1200px) {

   .page-header__inner p {
    color: #fff;
    max-width: 900px;
}

}

.thm-breadcrumb__box {
    position: relative;
    display: block;
    z-index: 1;
}

.thm-breadcrumb {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.thm-breadcrumb li {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li span {
    position: relative;
    display: inline-block;
    top: 3px;
}

.thm-breadcrumb li a {
    position: relative;
    display: inline-block;
    color: var(--judges-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li a i {
    position: relative;
    display: inline-block;
    padding-right: 7px;
}

.thm-breadcrumb li:hover a {
    color: var(--judges-base);
}

.thm-breadcrumb li.active {
    color: var(--color2);
}









/* End */