.container {
    padding: 1rem;
}

/* HEADER */
h1.site-title,
p.site-title {
    font-size: 4rem;
    margin: 1rem 0 0 0;
    line-height: 1;
    font-weight: bold;
    letter-spacing: -0.05em;
}

p.site-description {
    font-size: 2rem;
    font-weight: 200;
    letter-spacing: -0.05em;
    color: red;
    margin: 0 0 2rem 0;
}

.menu-toggle {
    width: 40px;
    height: 40px;
    background-color: blueviolet;
    border: 0;
    text-indent: -3300000000px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.toggled .menu-toggle {
    background-color: yellowgreen;
}

.main-navigation a {
    font-weight: bold;
    letter-spacing: -0.025em;
    font-size: 1.2rem;
}

a,
a:visited {
    color: red;
    text-decoration: none;
}


a:hover {
    color: #232323;
}

.fullscreenbgvideo {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.fullscreenbgvideo video {
    height: 100%;
    object-fit: cover;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.05em;
    color: red;
}

.lightfont {
    font-weight: 200;
}

.lightfont strong {
    font-weight: 600;
}

.condensed-font {
    letter-spacing: -0.05em;
}

.line-height-1 {
    line-height: 1;
}

.outlined {
    color: rgba(255, 255, 255, 0.4)
}

/* HOMEPAGE */
.home .entry-header {
    display: none;
}

a.wp-block-latest-posts__post-title,
.wp-block-button__link {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
}

.wp-block-button__link {
    font-weight: 300;
}

hr.wp-block-separator {
    border: 0;
    border-top: 1px solid black;
    background-color: transparent;
}

/* ARCHIVE */
.archive-description {
    margin: 0 0 3rem 0;
    font-size: 4rem;
    font-weight: 200;
    line-height: 1;
    letter-spacing: -0.05em;
    opacity: 0.7;
}

.archive-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.archive-grid article {
    width: 100%;
}

.category-teachers article {
    text-align: center;
}

/* .category-teachers article img{
    border-radius: 50%;
} */

/* COURSES */
.category-courses article {
    position: relative;
}

.category-courses article .entry-header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.category-courses article .entry-header h2 {
    font-size: 3rem;
    text-align: center;
    line-height: 1;
}

.category-courses article img {
    /* border-radius: 50%; */
}

.category-courses article a {
    display: block;
    transition: all 0.3s ease-in-out;
}

.category-courses article a:hover {
    transform: scale(1.1);
}

/* FOOTER */
.site-footer {
    padding: 5rem 0 1rem 0;
    border-top: 1px solid rgb(145, 145, 145);
    font-size: 0.8em;
}

.site-footer .widget_nav_menu li,
.site-footer .widget_nav_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer .widget_nav_menu li a {
    font-weight: bold;
    letter-spacing: -0.025em;
    font-size: 1.2rem;
}

.site-footer h3 {
    font-size: 1.8rem;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 0;
}

.site-footer .site-description {
    font-size: 1.1rem;
}

@media screen and (min-width: 576px) {
    .archive-grid article {
        width: 48%;
    }
}

/* FULLWIDTH BLOCK */


@media screen and (min-width: 1200px) {
    .main-navigation ul {
        display: flex;
        justify-content: space-between;
    }

    .main-navigation ul li {
        -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }

    .main-navigation a {
        display: block;
        padding: 2em 1em 0.5em 1em;
        transition: all 0.3s ease-in-out;
        border-right: 1px solid white;
        background: url(images/arrow-white.svg) no-repeat 50% calc(100% - 10px);
        background-size: 50px;
    }

    .main-navigation li:last-of-type a {
        border-right: 0;
    }

    .main-navigation a:hover,
    .main-navigation .current-menu-item a {
        color: white;
        background-color: #232323;
        background: url(images/arrow-white.svg) no-repeat calc(100% - 10px) calc(100% - 10px) #232323;
        background-size: 50px;
    }

    .main-navigation .current-menu-item a {
        background-image: none;
    }

}


@media screen and (min-width: 1200px) {
    .archive-grid article {
        width: 30%;
    }

    .category-teachers .archive-grid article {
        width: 48%;
    }
}