@import url('https://fonts.googleapis.com/css2?family=Atomic+Age&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    font-size: 10px;
    font-family: 'Atomic Age', sans-serif;
    scroll-behavior: smooth;
}
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track-piece  {
    background-color: black;
}
::-webkit-scrollbar-thumb:vertical {
    height: 10px;
    background-color: white;
}
a {
    text-decoration: none;
    color: inherit;
}
.container{
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
p{
    color: white;
    font-size: 2rem;
    margin-top: 5px;
    line-height: 1.9rem;
    font-weight: 300;
    letter-spacing: .05rem;
}
.section-title {
    font-size: 4rem;
    font-weight: 300;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .2rem;
    text-align: center;
}
.section-title span {
    color: darkred;
}
.cta {
    display: inline-block;
    padding: 10px 30px;
    color: darkred;
    background-color: transparent;
    border: 2px solid darkred;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: .1rem;
    margin-top: 30px;
    transition: .3s ease;
    transition-property: background-color, color;
}
.cta:hover {
    color: white;
    background-color: darkred;
}
.exit h1 {
    font-size: 3rem;
    text-transform: uppercase;
    color: darkgrey;
}
.exit h1 span {
    color: white;
}


/* Header Section */
#header {
    position: fixed;
    z-index: 1000;
    left: 5px;
    top: 0;
    width: 99.5vw;
    height: auto;
}
#header .header {
    min-height: 8vh;
    background-color: black;
    transition: .3s ease background-color;
}
#header .exit p {
    text-align: center;
    font-size: 1.44rem;
}
#header .nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 2560px;
    padding: 0 10px;
}
#header .nav-list ul {
    list-style: none;
    position: absolute;
    background-color: black;
    width: 100vw;
    height: 100vh;
    left: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow-x: hidden;
    transition: .5s ease left;
}
#header .nav-list ul.active {
    left: 0;
}
#header .nav-list ul a {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: .2rem;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    padding: 20px;
    display: block;
}
#header .nav-list ul a::after {
    content: attr(data-after);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: darkred;
    font-size: 13rem;
    letter-spacing: 50px;
    z-index: -1;
    transition: .3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
    transform: translate(-50%, -50%) scale(1);
    letter-spacing: initial;
}
#header .nav-list ul li:hover a {
    color: darkgray;
}
#header .header-icon {
    position: relative;    
    left: 0; 
    list-style: none;
    margin: 0;
    padding: 0;
    float: none;
    margin-right: 400px;
    height: 50px;
    width: 50px;
}
#header .hamburger {
    height: 60px;
    width: 60px;
    display: inline-block;
    border: 3px solid white;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    cursor: pointer;
    transform: scale(.8);
    margin-right: 20px auto;
}
#header .hamburger:after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 3px solid white;
    animation: hamburger_puls 1s ease infinite;
}
#header .hamburger .bar {
    height: 2px;
    width: 30px;
    position: relative;
    background-color: white;
    z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    background-color: white;
    transition: .3s ease;
    transition-property: top, bottom;
}
#header .hamburger .bar::after {
    top: 8px;
}
#header .hamburger .bar::before {
    bottom: 8px;
}
#header .hamburger.active .bar::before {
    bottom: 0;
}
#header .hamburger.active .bar::after {
    top: 0;
}
/* End Header Section */


/* Hero Section */
#hero {
    background-image: url(./img/background.png);
    background-size: cover;
    background-position: relative;
    position: relative;
    z-index: 1;
    max-width: 2560px;
    text-align: center;
}
#hero::after {
content: '';
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
background-color: black;
opacity: .1;
z-index: -1;
}
#hero .hero {
    max-width: 250px;
    margin: 0 auto;
    padding: 0px;
    justify-content: flex-start;
}
#hero h1 {
    display: block;
    width: fit-content;
    font-size: 4rem;
    position: relative;
    color: transparent;
    animation: text_reveal .5s ease forwards;
    animation-delay: .5s;
}
#hero h1:nth-child(1) {
    animation-delay: .5s;
}
#hero h1:nth-child(2) {
    animation: text_reveal_name .5s ease forwards;
    animation-delay: 1.5s;
}
#hero h1:nth-child(3) {
    animation-delay: 2.5s;
}
/* End Hero Section */


/* James section */
#archives {
    background-color: black;
}
#archives .archives {
    flex-direction: column;
    max-width: 2560px;
    padding: 100px 0px;
    margin: 0;
}
#archives .archives-header h1 {
    margin-bottom: 0px;
}
#archives .all-archives {
    overflow: hidden;
}
#archives .all-archives figure {
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: auto;
    display: block;
}
/* End James section */


/* Footer */
#footer {
    background-color: darkred;
}
#footer .footer {
    min-height: 50px;
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: -15px;
}
#footer p {
    color: white;
    font-size: 1.3rem;
}
#footer img {
    max-width: 50px;
}
/* End Footer */


/* Keyframes */
@keyframes hamburger_puls {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}
@keyframes text_reveal_box {
    50% {
        width: 110%;
        left: 0;
    }
    100% {
        width: 0;
        left: 100%;
    }
}
@keyframes text_reveal {
    100% {
        color: white;
    }
}
@keyframes text_reveal_name {
    100% {
        color: darkred;
        font-weight: 500;
    }
}
/* End Keyframes */

/* Media Query For Phone */
@media only screen and (min-width: 320px) {
    .cta {
        font-size: 2.5rem;
        padding: 20px 60px;
    }
    .cta:hover {
        color: darkred;
        background-color: black;
    }
    h1.section-title {
        font-size: 6rem;
    }
    
    /* Header */
    #header {
        width: 100vw;
        left: 0px;
    }
    #header .header-icon {
        display: none;
    }
    #header .nav-list ul a::after {
        font-size: 3rem;
    }
    /* End Header */


    /* Hero */
    #hero h1 {
        font-size: 7rem;
    }
    #hero {
        background-color: black;
        background-image: none;
    }
    #hero a {
        display: none;
    }
    #hero img {
        height: 100%;
        width: 100%;
    }
    /* End Hero */

    /* Archives */
    #archives .archives-header h1 {
        font-size: 4rem;
    }
    #archives .archives {
        padding: 70px 0px;
    }
    #archives .all-archives a {
        font-size: 2rem;
        margin: 10 auto;
        padding-left: 5px;
        padding-right: 5px;
    }
    #archives .archive-item {
        flex-direction: row;
        height: 151px;
        width: 50%;
        margin: 0;
        border-radius: 0;
        flex-basis: 35%;
    }
    #archives .archive-item img {
        width: 55%;
    }
    #archives .archive-item a {
        padding: 5px 5px;
    }
    #archives .archive-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    /* End Archives */


    /* Footer */
    #footer p {
        font-size: 0.75rem;
    }
    /* End Footer */
}
/* End Media Query For Phone */


/* Media Query For Tablet */
@media only screen and (min-width: 768px) {
    .cta {
        font-size: 2.5rem;
        padding: 20px 60px;
    }
    .cta:hover {
        color: darkred;
        background-color: black;
    }
    h1.section-title {
        font-size: 6rem;
    }
    
    /* Header */
    #header .header-icon {
        display: block;
        position: relative;    
        left: 0; 
    
        list-style: none;
        margin: 0;
        padding: 0;
        float: none;
        margin-right: 400px;
        height: 50px;
        width: 50px;
    }
    #header .nav-list ul a::after {
        font-size: 9rem;
    }
    /* End Header */


    /* Hero */
    #hero h1 {
        font-size: 7rem;
    }
    #hero {
        background-color: black;
        background-image: none;
    }
    #hero a {
        display: none;
    }
    #hero img {
        height: 100%;
        width: 100%;
    }
    /* End Hero */

    
    /* Archives */
    #archives .archives {
        padding: 70px 0px;
    }
    #archives .archive-item {
        flex-direction: row;
        height: 230px;
        margin: 0;
        width: 100%;
        border-radius: 0;
        flex-basis: 35%;
    }
    #archives .archive-item img {
        width: 60%;
    }
    #archives .archive-item a {
        padding: 5px 5px;
    }
    #archives .archive-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    #archives .all-archives .archive-info {
        height: 100%;
    }
    #archives .all-archives .videos-img {
        height: 100%;
    }
    #archives .all-archives .albums-img {
        height: 100%;
    }
    #archives .all-archives .library-img {
        height: 100%;
    }
    /* End Archives */

}
/* End Media Query For Tablet */

/* Media Query For Laptop/Desktop 1 */
@media only screen and (min-width: 1024px) {
    .cta:hover {
        color: white;
        background-color: darkred;
    }
    /* Header */
    #header {
        width: 99.5vw;
        left: 5px;
    }
    #header .header-icon {
        display: flex;
        position: relative;    
        list-style: none;
        padding: 0 auto;
        float: none;
        margin-right: 640px;
        height: 50px;
        width: 50px;
    }
    #header .nav-list ul li {
        display: inline-block;
    }
    #header .nav-list ul li a {
        font-size: 1.8rem;
    }
    #header .nav-list ul a:after {
        display: flex;
        font-size: 5rem;
    }
    /* End Header */

/* Hero */
#hero {
    background-image: url(./img/Site/library-back.jpg);
    background-repeat: no-repeat;
    background-size: 1024px 768px;
    z-index: 1;
    display: block;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
#hero a {
    display: block;
}
#hero img {
    display: none;
    height: 100%;
    width: 100%;
}
/* End Hero */

    /* Archives */
    #archives .archives {
        padding: 70px 0px;
    }
    #archives .archive-item {
        flex-direction: row;
        height: 230px;
        margin: 0;
        width: 100%;
        border-radius: 0;
        flex-basis: 35%;
    }
    #archives .archive-item img {
        width: 60%;
    }
    #archives .archive-item a {
        padding: 5px 5px;
    }
    #archives .archive-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    #archives .all-archives .archive-info {
        height: 100%;
    }
    #archives .all-archives .videos-img {
        height: 100%;
    }
    #archives .all-archives .albums-img {
        height: 100%;
    }
    #archives .all-archives .library-img {
        height: 100%;
    }
    /* End Archives */

    /* Footer */
    #footer p {
        font-size: 1.3rem;
    }
    /* End Footer */
}
/* End Media Query For Laptop/Desktop 1 */


/* Media Query For Laptop/Desktop 2 */
@media only screen and (min-width: 1280px) {
    .cta:hover {
        color: white;
        background-color: darkred;
    }
    /* Header */
    #header {
        width: 99.5vw;
        left: 5px;
    }
    #header .header-icon {
        display: block;
        position: relative;
        margin-right: 900px;
    }
    #header .nav-list ul li {
        display: inline-block;
    }
    #header .nav-list ul li a {
        font-size: 1.8rem;
    }
    #header .nav-list ul a:after {
        display: flex;
        font-size: 5rem;
    }
    /* End Header */

/* Hero */
#hero {
    background-image: url(./img/Site/library-back.jpg);
    background-repeat: no-repeat;
    background-size: 1280px 720px;
    z-index: 1;
    display: block;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
#hero a {
    display: block;
}
#hero img {
    display: none;
    height: 100%;
    width: 100%;
}
/* End Hero */

    /* Archives */
    #archives .archives {
        padding: 70px 0px;
    }
    #archives .archive-item {
        flex-direction: row;
        height: 230px;
        margin: 0;
        width: 100%;
        border-radius: 0;
        flex-basis: 35%;
    }
    #archives .archive-item img {
        width: 60%;
    }
    #archives .archive-item a {
        padding: 5px 5px;
    }
    #archives .archive-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    #archives .all-archives .archive-info {
        height: 100%;
    }
    #archives .all-archives .videos-img {
        height: 100%;
    }
    #archives .all-archives .albums-img {
        height: 100%;
    }
    #archives .all-archives .library-img {
        height: 100%;
    }
    /* End Archives */

/* Footer */
#footer p {
    font-size: 1.3rem;
}
    /* End Footer */
}
/* End Media Query For Laptop/Desktop 2 */


/* Media Query For Laptop/Desktop 3 */
@media only screen and (min-width: 1366px) {
    .cta:hover {
        color: white;
        background-color: darkred;
    }
    /* Header */
    #header {
        width: 99.5vw;
        left: 5px;
    }
    #header .header-icon {
        display: block;
        position: relative;
        margin-right: 985px;
    }
    #header .nav-list ul li {
        display: inline-block;
    }
    #header .nav-list ul li a {
        font-size: 2.5rem;
    }
    #header .nav-list ul a:after {
        display: flex;
        font-size: 5rem;
    }
    /* End Header */


/* Hero */
#hero {
    background-image: url(./img/Site/library-back.jpg);
    background-repeat: no-repeat;
    background-size: 1366px 768px;
    z-index: 1;
    display: block;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
#hero a {
    display: block;
}
#hero img {
    display: none;
    height: 100%;
    width: 100%;
}
/* End Hero */

    /* Archives */
    #archives .archives {
        padding: 70px 0px;
    }
    #archives .archive-item {
        flex-direction: row;
        height: 230px;
        margin: 0;
        width: 100%;
        border-radius: 0;
        flex-basis: 35%;
    }
    #archives .archive-item img {
        width: 60%;
    }
    #archives .archive-item a {
        padding: 5px 5px;
    }
    #archives .archive-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    #archives .all-archives .archive-info {
        height: 100%;
    }
    #archives .all-archives .videos-img {
        height: 100%;
    }
    #archives .all-archives .albums-img {
        height: 100%;
    }
    #archives .all-archives .library-img {
        height: 100%;
    }
    /* End Archives */

/* Footer */
#footer p {
    font-size: 1.3rem;
}
    /* End Footer */
}
/* End Media Query For Laptop/Desktop 3 */


/* Media Query For Laptop/Desktop 4 */
@media only screen and (min-width: 1440px) {
    .cta:hover {
        color: white;
        background-color: darkred;
    }
    /* Header */
    #header {
        width: 99.5vw;
        left: 5px;
    }
    #header .header-icon {
        display: flex;
        position: relative;    
        list-style: none;
        padding: 0 auto;
        float: none;
        margin-right: 1060px;
        height: 50px;
        width: 50px;
    }
    #header .nav-list ul li {
        display: inline-block;
    }
    #header .nav-list ul li a {
        font-size: 3rem;
    }
    #header .nav-list ul a:after {
        display: flex;
        font-size: 6rem;
    }
    /* End Header */

/* Hero */
#hero {
    background-image: url(./img/Site/library-back.jpg);
    background-repeat: no-repeat;
    background-size: 1440px 900px;
    z-index: 1;
    display: block;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
#hero a {
    display: block;
}
#hero img {
    display: none;
    height: 100%;
    width: 100%;
}
/* End Hero */

    /* Archives */
    #archives .archives {
        padding: 70px 0px;
    }
    #archives .archive-item {
        flex-direction: row;
        height: 230px;
        margin: 0;
        width: 100%;
        border-radius: 0;
        flex-basis: 35%;
    }
    #archives .archive-item img {
        width: 60%;
    }
    #archives .archive-item a {
        padding: 5px 5px;
    }
    #archives .archive-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    #archives .all-archives .archive-info {
        height: 100%;
    }
    #archives .all-archives .videos-img {
        height: 100%;
    }
    #archives .all-archives .albums-img {
        height: 100%;
    }
    #archives .all-archives .library-img {
        height: 100%;
    }
    /* End Archives */
    
    /* Footer */
    #footer p {
        font-size: 1.3rem;
    }
    /* End Footer */
}
/* End Media Query For Laptop/Desktop 4 */


/* Media Query For Laptop/Desktop 5 */
@media only screen and (min-width: 1536px) {
    .cta:hover {
        color: white;
        background-color: darkred;
    }
    /* Header */
    #header {
        width: 99.5vw;
        left: 5px;
    }
    #header .header-icon {
        display: flex;
        position: relative;    
        list-style: none;
        padding: 0 auto;
        float: none;
        margin-right: 1155px;
        height: 50px;
        width: 50px;
    }
    #header .nav-list ul li {
        display: inline-block;
    }
    #header .nav-list ul li a {
        font-size: 3.5rem;
    }
    #header .nav-list ul a:after {
        display: flex;
        font-size: 7rem;
    }
    /* End Header */

/* Hero */
#hero {
    background-image: url(./img/Site/library-back.jpg);
    background-repeat: no-repeat;
    background-size: 1536px 864px;
    z-index: 1;
    display: block;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
#hero a {
    display: block;
}
#hero img {
    display: none;
    height: 100%;
    width: 100%;
}
/* End Hero */

    /* Archives */
    #archives .archives {
        padding: 70px 0px;
    }
    #archives .archive-item {
        flex-direction: row;
        height: 230px;
        margin: 0;
        width: 100%;
        border-radius: 0;
        flex-basis: 35%;
    }
    #archives .archive-item img {
        width: 60%;
    }
    #archives .archive-item a {
        padding: 5px 5px;
    }
    #archives .archive-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    #archives .all-archives .archive-info {
        height: 100%;
    }
    #archives .all-archives .videos-img {
        height: 100%;
    }
    #archives .all-archives .albums-img {
        height: 100%;
    }
    #archives .all-archives .library-img {
        height: 100%;
    }
    /* End Archives */
    
    /* Footer */
    #footer p {
        font-size: 1.3rem;
    }
    /* End Footer */
}
/* End Media Query For Laptop/Desktop 5 */


/* Media Query For Laptop/Desktop 6 */
@media only screen and (min-width: 1600px) {
    .cta:hover {
        color: white;
        background-color: darkred;
    }
    /* Header */
    #header {
        width: 99.5vw;
        left: 5px;
    }
    #header .header-icon {
        display: flex;
        position: relative;    
        list-style: none;
        padding: 0 auto;
        float: none;
        margin-right: 1215px;
        height: 50px;
        width: 50px;
    }
    #header .nav-list ul li {
        display: inline-block;
    }
    #header .nav-list ul li a {
        font-size: 3.5rem;
    }
    #header .nav-list ul a:after {
        display: flex;
        font-size: 7rem;
    }
    /* End Header */

/* Hero */
#hero {
    background-image: url(./img/Site/library-back.jpg);
    background-repeat: no-repeat;
    background-size: 1600px 900px;
    z-index: 1;
    display: block;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
#hero a {
    display: block;
}
#hero img {
    display: none;
    height: 100%;
    width: 100%;
}
/* End Hero */

    /* Archives */
    #archives .archives {
        padding: 70px 0px;
    }
    #archives .archive-item {
        flex-direction: row;
        height: 230px;
        margin: 0;
        width: 100%;
        border-radius: 0;
        flex-basis: 35%;
    }
    #archives .archive-item img {
        width: 60%;
    }
    #archives .archive-item a {
        padding: 5px 5px;
    }
    #archives .archive-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    #archives .all-archives .archive-info {
        height: 100%;
    }
    #archives .all-archives .videos-img {
        height: 100%;
    }
    #archives .all-archives .albums-img {
        height: 100%;
    }
    #archives .all-archives .library-img {
        height: 100%;
    }
    /* End Archives */

    /* Footer */
    #footer p {
        font-size: 1.6rem;
    }
    /* End Footer */
}
/* End Media Query For Laptop/Desktop 6 */


/* Media Query For Laptop/Desktop 7 */
@media only screen and (min-width: 1920px) {
    .cta:hover {
        color: white;
        background-color: darkred;
    }
    /* Header */
    #header {
        width: 99.5vw;
        left: 5px;
    }
    #header .header-icon {
        display: flex;
        position: relative;    
        list-style: none;
        padding: 0 auto;
        float: none;
        margin-right: 1535px;
        height: 50px;
        width: 50px;
    }
    #header .nav-list ul li {
        display: inline-block;
    }
    #header .nav-list ul li a {
        font-size: 4rem;
    }
    #header .nav-list ul a:after {
        display: flex;
        font-size: 8rem;
    }
    /* End Header */

/* Hero */
#hero {
    background-image: url(./img/Site/library-back.jpg);
    background-repeat: no-repeat;
    background-size: 1920px 1080px;
    z-index: 1;
    display: block;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
#hero a {
    display: block;
}
#hero img {
    display: none;
    height: 100%;
    width: 100%;
}
/* End Hero */

    /* Archives */
    #archives .archives {
        padding: 70px 0px;
    }
    #archives .archive-item {
        flex-direction: row;
        height: 230px;
        margin: 0;
        width: 100%;
        border-radius: 0;
        flex-basis: 35%;
    }
    #archives .archive-item img {
        width: 60%;
    }
    #archives .archive-item a {
        padding: 5px 5px;
    }
    #archives .archive-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    #archives .all-archives .archive-info {
        height: 100%;
    }
    #archives .all-archives .videos-img {
        height: 100%;
    }
    #archives .all-archives .albums-img {
        height: 100%;
    }
    #archives .all-archives .library-img {
        height: 100%;
    }
    /* End Archives */
    
    /* Footer */
    #footer p {
        font-size: 1.6rem;
    }
    /* End Footer */
}
/* End Media Query For Laptop/Desktop 7 */


/* Media Query For Laptop/Desktop 8 */
@media only screen and (min-width: 2560px) {
    .cta:hover {
        color: white;
        background-color: darkred;
    }
    /* Header */
    #header {
        width: 99.5vw;
        left: 5px;
    }
    #header .header-icon {
        display: flex;
        position: relative;    
        list-style: none;
        padding: 0 auto;
        float: none;
        margin-right: 2175px;
        height: 50px;
        width: 50px;
    }
    #header .nav-list ul li {
        display: inline-block;
    }
    #header .nav-list ul li a {
        font-size: 4rem;
    }
    #header .nav-list ul a:after {
        display: flex;
        font-size: 8rem;
    }
    /* End Header */

/* Hero */
#hero {
    background-image: url(./img/Site/library-back.jpg);
    background-repeat: no-repeat;
    background-size: 2560px;
    z-index: 1;
    display: block;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
#hero a {
    display: block;
}
#hero img {
    display: none;
    height: 100%;
    width: 100%;
}
/* End Hero */

/* Archives */
#archives .archives {
    padding: 70px 0px;
}
#archives .archive-item {
    flex-direction: row;
    height: 230px;
    margin: 0;
    width: 100%;
    border-radius: 0;
    flex-basis: 35%;
}
#archives .archive-item img {
    width: 60%;
}
#archives .archive-item a {
    padding: 5px 5px;
}
#archives .archive-item:nth-child(even) {
    flex-direction: row-reverse;
}
#archives .all-archives .archive-info {
    height: 100%;
}
#archives .all-archives .videos-img {
    height: 100%;
}
#archives .all-archives .albums-img {
    height: 100%;
}
#archives .all-archives .library-img {
    height: 100%;
}
/* End Archives */
    
    /* Footer */
    #footer p {
        font-size: 1.6rem;
    }
    /* End Footer */
}
/* End Media Query For Laptop/Desktop 8 */