.page-template-landing .row{
    margin: 0;
}

.page-template-landing img{
    display: block;
    max-width: 100%;
}

.page-template-landing .site-content{
    padding-bottom: 0;
}

.lp-header{
    background-color: #262624;
    text-align: center;
    padding: 40px 0;
}

.lp-header h1{
    margin-bottom: 20px;
}

.lp-header p{
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

/* NAVIGATION */
.lp-navigation{
    background-color: #f7f7f7;
    display: none;
    width: 100%;
    z-index: 999;
}

.lp-navigation.stick{
    position: fixed;
    top: 0;
    box-shadow: 0 4px 12px #e7e7e7;
}

.logged-in .lp-navigation.stick{
    position: fixed;
    top: 32px;
}

.lp-navigation .row{
    display: flex;
    justify-content: center;
}

.lp-navigation a{
    font-size: 16px;
    text-align: center;
    padding: 20px;
    font-weight: 600;
    transition: all .3s;
    letter-spacing: .5px;
    color: #262624;
}

.lp-navigation a:hover{
    text-decoration: none;
    color: #e84d0e;
}

.lp-navigation .has-sub{
    position: relative;
    display: block;
}

.lp-navigation .work-sub-menu{
    background-color: #f7f7f7;
    border: solid 1px #ececec;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 62.84px;
    left: 0;
    width: 200px;
    opacity: 0;
    transition: all .3s;
    transform: translateY(-20px);
    pointer-events: none;
}

.lp-navigation .has-sub:hover .work-sub-menu{
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.lp-navigation .work-sub-menu span{
    padding: 10px;
    display: block;
    font-size: 14px;
    text-align: left;
    font-weight: 600;
    border-bottom: solid 1px #ececec;
    color: #262624;
    transition: all .3s;
}

.lp-navigation .work-sub-menu span:last-child{
    border-bottom: none;
}

.lp-navigation .work-sub-menu span:hover{
    background-color: #ececec;
}

@media screen and (min-width:768px) {
    .lp-navigation{
        display: block;
    }
}

/* SECTIONS */
.lp-section{
    padding: 40px 0;
}

.lp-section:nth-child(even){
    background-color: #f7f7f7;
}

@media screen and (min-width:768px) {
    .lp-section{
        padding: 80px 0;
    }
}

.lp-section-heading{
    margin-bottom: 40px;
}

.lp-section-heading:after{
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background-color: #e84d0e;
    margin-top: 6px;
}

.lp-link{
    font-weight: 700;
    color: #e84d0e;
    font-size: 21px;
    transition: all .3s;
    display: inline-block;
    width: 100%;
    text-align: right;
}

.lp-link:hover{
    text-decoration: none;
}

/* ABOUT US */
.lp-about{
    background-color: #fff;
}

.lp-about .desc{
    margin-bottom: 40px;
    font-size: 20px;
}

.lp-about .desc p{
    margin-bottom: 20px;
}

.lp-staff{
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
}

.lp-staff h3{
    text-align: center;
    margin-bottom: 20px;
}

.lp-staff .wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.lp-staff .item{
    text-align: center;
}

.lp-staff .item img{
    width: 140px;
    height: 140px;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 200px;
    margin-bottom: 10px;
}

.lp-staff .name{
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 0;
}

.lp-staff .title{
    margin-bottom: 0;
}

@media screen and (min-width:768px) {
    .lp-staff .wrapper{
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (min-width:1200px) {
    .lp-staff .wrapper{
        grid-template-columns: repeat(6, 1fr);
    }
}


/* OUR WORK */
.lp-our-work{
    background-color: #fff;
}

.lp-our-work h2{
    margin-bottom: 40px;
}

.lp-our-work a{
    color: #e84d0e;
}

.lp-our-work p{
    font-size: 20px;
}

.lp-our-work-desc{
    margin-bottom: 40px;
}

.lp-our-work-nav{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.lp-our-work-nav a{
    background-color: #ececec;
    padding: 10px 20px;
    color: #000;
    display: block;
    border-radius: 10px;
    font-weight: 700;
    transition: all .3s;
    margin-right: 10px;
    margin-bottom: 10px;
}

.lp-our-work-nav a:hover{
    text-decoration: none;
    color: #e84d0e;
}

.work-cat{
    margin-bottom: 40px;
    /* padding: 20px; */
    /* background-color: #fff; */
    /* border-radius: 10px; */
    /* box-shadow: 0 6px 12px #ececec; */
}

.work-cat h3{
    text-align: center;
}

.work-cat .wrapper{
    display: grid;
    justify-items: center;
    gap: 20px;
}
.lp-podcast{
    position: relative;
    max-width: 280px;
    overflow: hidden;
}

.lp-podcast .cover img{
    display: block;
    display: block;
    object-fit: cover;
    width: 100%;
    height: 280px;
}

.lp-podcast .desc{
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000000ed;
    width: 100%;
    height: 100%;
    padding: 20px;
    transition: all .3s;
    transform: translateY(10px);
    pointer-events: none;
    opacity: 0;
}

.lp-podcast:hover .desc{
    transform: translateY(0);
    pointer-events: all;
    opacity: 1;
}

.lp-podcast .desc p.title{
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.lp-podcast .desc p{
    color: #fff;
    font-size: 12px;
}

.lp-podcast .desc .links{
    display: flex;
}

.lp-podcast .desc .links a{
    margin-right: 10px;
    display: block;
    transition: all .3s;
}

.lp-podcast .desc .links a:hover{
    transform: scale(1.1);
}

.lp-other-services .wrapper{
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
}

@media screen and (min-width:768px) {
    .lp-our-work h2,
    .work-cat h3{
        text-align: left;
    }

    .lp-our-work h3{
        margin-bottom: 20px;
        border-bottom: solid 1px #f7f7f7;
        padding-bottom: 10px;
    }

    .work-cat .wrapper{
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width:1080px){
    .work-cat .wrapper{
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (min-width:1200px){
    .lp-podcast .cover img{
        height: 270px;
    }
    
    .work-cat .wrapper{
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}


/* OTHER SERVICES */
.lp-other .split{
    display: flex;
    flex-direction: column-reverse;
}

.lp-other .split .side{
    margin-bottom: 20px;
}

.lp-other .split img{
    max-height: 300px;
    width: 100%;
    object-fit: cover;
    display: block;
}

@media screen and (min-width:768px) {
    .lp-other .split{
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .lp-other .split:nth-child(odd){
        flex-direction: row-reverse;
    }

    .lp-other .split .side{
        width: calc( 50% - 20px );
    }
}

/* NEWS */
.lp-news .news-item__title a{
    color: #262624;
}

.lp-news .news__footer__link{
    color: #e84d0e;
    transition: all .3s;
}

.lp-news .news__footer__link:hover{
    color: #2a6496;
    text-decoration: none;
}

/* CAREERS */
.lp-jobs{
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.lp-careers{
    background-color: #fff;
}

.lp-job{
    background-color: #f7f7f7;
    border: solid 1px #ececec;
    padding: 20px;
    color: #000;
    display: block;
    border-radius: 10px;
    font-weight: 700;
    transition: all .3s;
    font-size: 18px;
}

.lp-job:hover{
    background-color: #e84d0e;
    border-color: #e84d0e;
    color: #fff;
    text-decoration: none;
    transform: scale(1.025);
}

@media screen and (min-width:768px){
    .lp-jobs{
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width:1080px){
    .lp-jobs{
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* CONTACT */
.lp-contact p{
    margin-bottom: 0;
    font-size: 20px;
}

.lp-contact h3{
    border-bottom: solid 1px #7d7d7d;
    font-size: 22px;
    padding-bottom: 8px;
}

.lp-contact a{
    color: #e84d0e;
    display: block;
    margin-bottom: 10px;
    transition: all .3s;
}

.lp-contact a:hover{
    text-decoration: none;
}

.lp-contact .wrapper{
    display: grid;
    gap: 20px;
}

.lp-contact .wrapper > div{
    background-color: #f7f7f7;
    border: solid 1px #ececec;
    padding: 20px;
    border-radius: 10px;
}

@media screen and (min-width:768px){
    .lp-contact .wrapper{
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* HOMEPAGE FIXES */
.home .category__image{
    margin-left: 0 !important;
}

.home .category:last-child{
    margin-bottom: 0;
}

.home .logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.home .logo-grid__logo{
    padding: 0;
    height: auto;
    width: 100%;
}

.home .logo-grid__logo img{
    object-fit: contain;    
    margin: 0 auto;
    height: 100px;
    width: 100px;
}

@media screen and (min-width:768px) {
    .home .logo-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 30px;
    }
}


header span.navigation__item .dropdown-navigation{
    display: block;
    top: 40px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
}

header span.navigation__item:hover .dropdown-navigation{
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.dropdown a.navigation__item:after{
    display: block;
}


/*--------------------------------------------------------------
## 1/7/2022 EDITS
--------------------------------------------------------------*/
.header{
    padding: 20px 0;
    background: #1c1c1b;
}

.home .header{
    background-color: transparent;
}

.header .split{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img{
    max-height: 100px;
}

.header-nav{
    background-color: #fff;
    border-radius: 5px;
    margin-top: 20px;
    position: absolute;
    width: calc(100% - 40px);
    left: 20px;
    padding: 20px;
    transform: translateY(-20px);
    transition: all .3s;
    opacity: 0;
    pointer-events: none;
}

.header-nav.active{
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.header-nav a,
.header-nav span{
    color: #262624;
}

.header-nav a{
    display: block;
    font-weight: 700;
    padding: 4px 0;
    font-size: 16px;
    text-decoration: none !important;
}

.header-nav span{
    display: block;
    padding-left: 20px;
    font-weight: 400;
    padding: 4px 0 4px 20px;
    font-size: 14px;
}

.header-nav-btn{
    background-color: transparent;
    border: none;
    width: 32px;
    height: 24px;
    border-top: solid 2px #fff;
    border-bottom: solid 2px #fff;
    position: relative;
    transition: all .3s;
}

.header-nav-btn:before,
.header-nav-btn:after{
    content: "";
    background-color: #fff;
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    transition: all .3s;
}

.header-nav-btn.active{
    border-color: transparent;
}

.header-nav-btn.active:before{
    transform: rotate(-45deg);
}

.header-nav-btn.active:after{
    transform: rotate(45deg);
}

@media screen and (min-width:1080px) {
    .header > .container{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-nav-btn{
        display: none;
    }

    .header-nav{
        opacity: 1;
        transform: translateY(0);
        position: initial;
        display: flex;
        justify-content: flex-end;
        padding: 0;
        background-color: transparent;
        pointer-events: all;
    }

    .header-nav a{
        margin-right: 20px;
    }

    .header-nav a,
    .header-nav a > span{
        padding: 0;
        font-weight: 700;
        font-size: 18px;
        color: #fff;
        letter-spacing: 1px;
        transition: all .3s;
    }

    .header-nav a:hover,
    .header-nav a:hover > span{
        color: #e84d0e;
    }

    .header-nav .work-sub-menu{
        position: absolute;
        background-color: #fff;
        transition: all .3s;
        transform: translateY(-10px);
        pointer-events: none;
        opacity: 0;
    }

    .header-nav a.has-sub:hover .work-sub-menu{
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }

    .header-nav .work-sub-menu span{
        padding: 10px;
        border-bottom: solid 1px #eee;
        transition: all .3s;
    }

    .header-nav .work-sub-menu span:hover{
        color: #e84d0e;
    }

    .header-nav.stick{
        position: fixed;
        top: 0;
        left: 0;
        border-radius: 0;
        width: 100%;
        background-color: #1c1c1b;
    }

    .logged-in .header-nav.stick{
        position: fixed;
        top: 12px;
        left: 0;
        border-radius: 0;
        width: 100%;
        background-color: #1c1c1b;
        padding: 10px;
        z-index: 999999;
    }
}

.lp-our-work .lp-link{
    margin-top: 20px;
}

.production-site.home{
    background: #262624 !important;
}

.home .header{
    position: absolute;
    z-index: 9;
    background: #1c1c1b;
    width: 100%;
}

.hero{
    padding: 140px 0 0 0 !important;
    margin-bottom: 0 !important;
}

.hero-wrapper{
    position: relative;
}

.hero-content{
    padding: 80px 0;
    position: relative;
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-content h3{
    line-height: 1.4em;
}

.hero-background-image{
    position: absolute;
    width: calc( 100% / 3 );
    height: calc( 100% / 2 );
    /* padding: 20px; */
}

.hero-background-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-fit: contain; */
    object-position: top;
}

.hero-background-image-1,
.hero-background-image-2,
.hero-background-image-3{
    top: 0;
    /* padding-top: 40px; */
}

.arrow-nav{
    position: absolute;
    right: 20px;
    bottom: 60px;
}
.arrow-nav img{
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.hero-background-image-4,
.hero-background-image-5,
.hero-background-image-6{
    bottom: 0;
    /* padding-bottom: 40px; */
}

.hero-background-image-1,
.hero-background-image-4{
    left: 0;
}

.hero-background-image-2,
.hero-background-image-5{
    left: calc( 100% / 3 );
}

.hero-background-image-3,
.hero-background-image-6{
    right: 0;
}

@media screen and (min-width:540px) {
    .hero-content{
        padding: 160px 0;
    }
}

@media screen and (min-width:768px) {
    .hero-content{
        padding: 200px 0;
    }

    .hero-content h3{
        font-size: 32px;
        line-height: 1.4em;
    }
}

@media screen and (min-width:1080px) {
    .hero{
        padding: 124px 0 0 0 !important;
    }
    .hero-content{
        padding: 200px 0;
    }
}

@media screen and (min-width:1300px) {
    .hero-content{
        padding: 300px 0;
    }
}

section.lp-external-links{
    background-color: #fff;
}

section.lp-external-links .wrapper{
    display: grid;
    gap: 40px;
}

section.lp-external-links .wrapper .item{
    flex: 1;
}

section.lp-external-links .wrapper .item a{
    transition: all .3s;
}

section.lp-external-links .wrapper .item a:hover{
    text-decoration: none;
    opacity: 1;
}

section.lp-external-links .wrapper .item img{
    display: block;
    max-height: 200px;
    max-width: 260px;
    object-fit: contain;
    transition: all .3s;
}

section.lp-external-links .wrapper .item a:hover img{
    transform: scale(1.025);
}

section.lp-external-links .wrapper .item span{
    color: #7d7d7d;
    margin-top: 10px;
    font-size: 14px;
    display: block;
    line-height: 1.2;
    font-weight: 600;
    transition: all .3s;
}

section.lp-external-links .wrapper .item a:hover span{
    color: #e84d0e;
}

@media screen and (min-width:768px){
    section.lp-external-links .wrapper{
        grid-template-columns: repeat(3, 1fr);
    }
} 