/* html,
body {
    height: 100% !important;
    overflow: hidden;
} */

body {
    background-color: #0d0d0d;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}
.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
}

.pg-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 101;
    padding: 1rem 0;
    width: 100%;
}
.pg-header .header-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.pg-header .btn-back {
    opacity: 0.5;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
}
.pg-header .btn-back:hover {
    opacity: 1;
}
.pg-header .btn-back svg {
    width: 12px;
}

.location-mark {
    position: absolute;
    z-index: 99;
    left: 50%;
    bottom: 10%;
    transition: all 0.5s ease;
}
.location-mark:hover {
    transform: scale(1.2);
}
.location-mark .pin {
    width: 72px;
}
.location-mark .dropdown-menu {
    border: none;
}
.location-mark .location-detail {
    padding: 0 0.5rem;
}
.location-mark .location-ttl {
    font-size: 1.5rem;
    font-weight: bold;
}
.location-mark .location-ttl a {
    text-decoration: none;
    color: #460505;
}
.location-mark.mark1 {
    left: 15%;
    bottom: 44%;
}
.location-mark.mark2 {
    left: 75%;
    bottom: 35%;
}
.location-mark.mark3 {
    bottom: 50%;
    left: 48%;
}
.location-mark.mark4 {
    bottom: 20%;
    left: 12%;
}
.location-mark.mark5 {
    bottom: 30%;
    left: 28%;
}
.location-mark.mark6 {
    bottom: 55%;
    left: 35%;
}
.location-mark.mark7 {
    bottom: 50%;
    left: 48%;
}
.location-mark.mark8 {
    bottom: 45%;
    left: 75%;
}
.location-mark.mark9 {
    bottom: 40%;
    left: 55%;
}
.location-mark.mark10 {
    bottom: 20%;
    left: 65%;
}

.pick-ttl-wrp {
    margin-top: 160px;
}
.pick-ttl {
    font-weight: bold;
}
.arabic-content {
    direction: rtl;
    text-align: right;
}

/* Detail page */
.pg-body {
    padding-top: 100px;
}
.pg-category-details {
    color: #ece6e6;
}
.pg-category-details .video-wrapper video {
    width: 100%;
}

.pg-category-details .exam-item {
    gap: 10px;
    border: 1px dotted #a3a3a3;
    padding: 12px;
    border-radius: 6px;
    flex-wrap: wrap;
    display: flex;
}
.pg-category-details .btn-play {
    text-transform: uppercase;
    color: #fff;
    background-color: #319471;
    border: none;
    padding: 0.5rem 1.5rem;
}
