:root {
    --dkred: #3D0000;
    --red: #BF1E2D;
    --dkgray: #222222;
    --white: #FFFFFF;
    --dkpurple: #68263A;
    --green: #379253;
    --twblue: #1da1f2;
    --tbblue: #03bfbf;
    --bgorange: #ff963c;
}

* {
    font-family: 'Montserrat', sans-serif;
    /*border: 1px dashed green;*/
}

html, body {
    margin: 0;
    height: 100vh;
    width: 100%;
    overflow: auto;
    background-size: cover;    
    background-position: center;
    background-color: var(--dkgray);
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--dkred);
    height: 80px;
    z-index: 999;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.75);
}

.navbar {
    padding: 0 20px;
}

.socials-bar {
    color: var(--white);
    font-size: 40px;
}

.panel {
    height: 90%;
    text-decoration: none;
    color: var(--white);
    background-color: var(--dkgray);
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.85);
    background-size: cover;
    background-position: center;
    padding: 0;
}

.panel:hover {
    color: var(--white);
}

.panel-desc {
    visibility: hidden;
}

.page-panel {
    height: 90%;
    text-decoration: none;
    color: var(--white);
    background-color: var(--dkgray);
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.85);
    background-size: cover;
    background-position: center;
    padding: 0;
}

.blur{
    height: 100%;
    width: 100%;
    position: relative;
}

.blur:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: -1;
}

.sml-container{
    width: fit-content ;
    margin: 10px auto;
    border-radius: 15px;
    text-align: center;
    font-size: 1rem;
}

.sml-container p {
    padding: 12px;
}

.panel-img {
    width: 80vw;
    height: 200px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 10px auto;
    text-align: center;
    display: table;
}

.page-panel h1 {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    font-size: 3rem;
    line-height: 100%;
    display: table-cell;
    vertical-align: middle;
}

.top-panel{
    padding-top: 15vh;
}

.bottom-panel{
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.text-panel {
    background-color: var(--dkgray);
    color: var(--white);
    padding: 20px;
    /*box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.85);*/
}

.text-panel h1 {
    width: fit-content ;
    padding: 10px;
    border-radius: 15px;
    text-align: center;
    font-size: 2rem;
}

.text-panel h2 {
    width: fit-content ;
    padding: 10px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.5rem;
}

.text-panel h3 {
    width: fit-content ;
    padding: 10px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.25rem;
}

.text-panel p {
    font-size: 1rem;
}

.text-panel li {
    margin-left: -30px;
    list-style: none;
    text-decoration: none;
    padding: 5px 0;
}

.text-panel a {
    font-size: 1rem;
    text-decoration: none;
    color: var(--white);
    position: relative;
    bottom: 5px;
    padding: 0 10px;
}

.text-panel i {
    font-size: 2rem;
}

.text-panel a:hover {
    text-decoration: none;
    color: var(--red);
}

.gallery-panel {
    background-color: var(--dkgray);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.85);
}

/* affects all elements but the p */
.gallery-element * {
    width: 100%;
}

.gallery-element p {
    font-size: 0.75rem;
    text-align: center;
    padding-top: 5px;
}

.responsive-iframe-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (9 / 16 * 100) */
    width: 100%;
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mini-panel-container {
    flex-basis: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.mini-panel{
    background-color: var(--dkgray);
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.85);
    min-height: 45vh;
    background-position: center;
    background-size: cover;
    padding: 0;
    color: var(--white);
    text-decoration: none;
}

.mini-panel:hover {
    color: var(--white);
}

.mini-panel .panel-img {
    width: 37vw;
    height: 100px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 10px auto;
    text-align: center;
}

.mini-panel .top-panel {
    padding-top: 5vh;
}

.mini-panel .sml-container p {
    font-size: 0.75rem;
    padding: 10px;
}

.mini-panel h1 {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 100%;
    display: table-cell;
    vertical-align: middle;
}

.coming-soon {
    margin: auto;
    width: 70%;
    height: 100%;
    text-align: center;
    display: table;
}

.coming-soon h1 {
    font-style: italic;
    display: table-cell;
    vertical-align: middle;
    font-size: 1.5rem;
}

img {
    opacity: 1;
}

.red {
    background-color: var(--red);
}

.dkpurple {
    background-color: var(--dkpurple);
}

.green {
    background-color: var(--green);
}

.dkgray {
    background-color: var(--dkgray);
}

.p1 {
    z-index: 10;
}

.p2 {
    z-index: 9;
}

.p3 {
    z-index: 8;
}

.p4 {
    z-index: 7;
}

.mp1 {
    z-index: 15;
}

.mp2 {
    z-index: 14;
}

.mp3 {
    z-index: 13;
}

.mp4 {
    z-index: 12;
}

.mp5 {
    z-index: 11;
}

.mp6 {
    z-index: 10;
}

.mp7 {
    z-index: 9;
}

.mp8 {
    z-index: 8;
}

.mp9 {
    z-index: 7;
}

.fa-brands {
    color: var(--white);
}

@media (max-width: 576px) {
    .mini-panel .panel-img {
        width: 70vw;
    }
}

/* sm devices */
@media (min-width: 576px) {
    
}

/* md devices */
@media (min-width: 768px) {

}

/* lg devices */
@media (min-width: 992px) {
    .panel {
        height: 100%;
        flex-basis: 25%;
        transition: flex-basis 0.3s;
    }
    
    .panel-desc {
        visibility : hidden;
        opacity: 0;
        transition: visibility 0.3s, opacity 0.3s linear;
        padding: 5px 10px;
        margin: auto auto 50px auto;
        width: 20vw;
        height: 100%;
        max-height: 160px;
        font-style: italic;
        font-size: 1rem;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 15px;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;

    }
    
    .panel:hover {
        text-decoration: none;
        color: var(--white);
        flex-grow: 2;
        flex-basis: calc(28% - 20px);
        z-index: 15;
    }
    
    .panel:hover .panel-desc {
        visibility : visible;
        opacity: 1;
    }

    .panel:not(:hover) {
        flex-grow: 1;
        flex-basis: calc(24% - 20px);
    }

    .page-panel {
        height: 100%;
    }

    .page-panel:hover {
        text-decoration: none;
        color: var(--white);
    }

    .page-panel .panel-desc {
        visibility : visible;
        opacity: 1;
    }

    .top-panel {
        padding-top: 20vh;
    }
    
    .panel-img {
        width: 18vw;
        height: 200px;
    }
    
    .socials-bar {
        font-size: 50px;
    }
    
    .text-panel {
        height: 100%;
        overflow-y: auto;
        padding: 100px 20px 20px 20px;
    }
    
    .gallery-panel {
        height: 100%;
        overflow-y: auto;
        padding: 90px 20px 10px 20px;
    }

    .mini-panel-container {
        flex-basis: 75%;
        padding: 80px 0 0 0;
        overflow-y: auto;
    }

    .mini-panel{
        text-decoration: none;
        transition: flex-basis 0.2s;
        flex-basis: 33%;
    }

    .mini-panel:hover {
        text-decoration: none;
        color: var(--white);
        flex-grow: 2;
        flex-basis: calc(35% - 20px);
    }
    
    .row1:hover {
        z-index: 15;
    }

    .row2:hover {
        z-index: 12;
    }

    .row3:hover {
        z-index: 9;
    }

    .mini-panel:not(:hover) {
        flex-grow: 1;
        flex-basis: calc(33% - 20px);
    }

    .mini-panel .panel-img {
        width: 20vw;
    }
}

@media (max-height: 800px){
    /*.panel:hover .panel-desc {
        visibility : visible;
        opacity: 0;
    }*/

    .mini-panel {
        height: 400px;
    }

    .panel {
        height: 800px;
    }
    
    .top-panel {
        padding-top: 160px;
    }

    .page-panel {
        height: 800px;
    }
}

/* xl devices */
@media (min-width: 1200px) {
    
}