/*   
Theme Name: Rich Tea Films Website Archive 2022 (2.0)
Designer: Gemma Roza
Author: Jack Oestergaard-Churchill
Author URI: https://jackchurchill.info

BASE STYLES

Header 1: Couture / 45px / 10 letter space / CAPS
Header 2: Couture / 37px / 8 letter space / CAPS
Header 3: Couture / 27px / 6 letter space / CAPS
Body: Barlow Regular / 26px / 40 line height?
Special Font / Rustico / 130px / CAPS

Rich Tea Orange
#FDC679
rgb(253, 198, 121)

Rich Tea Black
#3B3B3B
rgb (59, 59, 59)


Rich Tea Blue
#3E8ADB
rgb(62, 138, 219)

*/
/*////////////////////////////*/

::selection {
    background: #FDC679;
}

body {
    background-image: url(../images/Background.png);
    background-repeat: repeat;
    background-size: 70%;
    background-color: #F1F1F0;
    margin: 0;
    color: #3B3B3B;
    font-family: 'Barlow', sans-serif;
}

#page-wrap {
    max-width: 1200px;
    min-width: 350px;
    margin: 0 auto;
}

/*////////////////////////////*/
/*  HEADER  */
/*////////////////////////////*/

header {
    height: 100px;
    overflow: hidden;
    font-family: 'Couture', 'Open Sans', sans-serif;
}

header a {
    height: 100px;
    overflow: hidden;
}

header a:hover {
    color: #FDC679;
}

header a #siteTitle {
    height: 50px;
    float: right;
    padding: 25px;
}

header a #siteTitle .nameTitle {
    height: 50px;
    float: left;
    line-height: 50px;
    text-transform: uppercase;
    font-size: 20px;
    margin-right: 15px;
    color: #3B3B3B;
    letter-spacing: 5px;
}

@media screen and (max-width: 760px) {
    header a #siteTitle .nameTitle {
        display: none;
    }
}

header a #siteTitle #logoimg {
    height: 50px;
    float: left;
}

header nav {
    float: left;
    height: 100px;
}

@media screen and (max-width: 450px) {

    header {
        height: 130px;
    }

    nav {
        margin-top: 70px;
        width: 100%;
    }

    nav,
    .menu-main-nav-container {
        height: 60px !important;
    }

    nav ul li {
        height: 30px !important;
        padding: 15px !important;
        line-height: 30px !important;
    }

    header a #siteTitle {
        float: left;
        padding: 0px;
        margin: -130px auto 0;
        text-align: center;
        width: 100%;
        padding: 20px 0 0;
    }

    header a #siteTitle #logoimg {
        display: none !important;
    }

    header a #siteTitle .nameTitle {
        display: inline-block !important;
        float: none;
        margin: 0px;
    }

    nav ul {
        text-align: center;
    }
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0 10px;
}

nav ul li {
    height: 50px;
    padding: 25px 15px;
    line-height: 50px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    display: inline-block;
}

@media only screen and (max-width: 750px) {

    header a #siteTitle .nameTitle {
        display: none;
    }
}

.current-menu-item a,
.current-menu-item,
.single-our-work .our-work-nav a {
    color: #FDC679 !important;
}

/*////////////////////////////*/
/*  HEADER MESSAGE  */
/*////////////////////////////*/

#header_message {
    min-height: 2.7em;
    background-color: #3E8ADB;
    padding: 6px 0;
    margin: 0 0 10px;
}

#header_message p {
    text-align: center;
    color: #ffffff;
}

#header_message a {
    color:#3B3B3B;
}

/*////////////////////////////*/
/*  GRID  */
/*////////////////////////////*/

#grid_wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    grid-auto-rows: 220px;
}

.grid_link {
    overflow: hidden;
    color: #fff;
}

.grid_link:hover .grid_title {
    color: #fff;
    opacity: 1;
    transition: all .2s ease-in-out;
    transform: scale(0.9);
}

.grid_link:hover .grid_item {
    filter: grayscale(1);
    transition: all .2s ease-in-out;
    transform: scale(1.1);
    background-color: rgba(59, 59, 59, 1);
}

.grid_link .grid_item {
    height: 100%;
    width: 100%;
    margin-top: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    float: left;
    filter: grayscale(0);
    transition: all .2s ease-in-out;
    background-color: rgba(253, 198, 121, 1);
}

.grid_link .grid_title {
    float: left;
    height: 220px;
    display: table;
    width: 96%;
    padding: 0 2%;
    opacity: 0;
    transition: all .2s ease-in-out;
}

.grid_link .grid_title span {
    width: 100%;
    float: left;
    text-align: center;
}

.grid_title_wrap {
    display: table-cell;
    vertical-align: middle;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

.grid_title_client {
    font-family: 'Barlow Light', sans-serif;
    font-size: 16px;
    line-height: 16px;
    font-weight: normal;
    text-shadow: 0 0 8px rgba(0, 0, 0, 1);
}

.grid_title_main {
    font-family: 'Rustico', sans-serif;
    font-size: 35px;
    line-height: 45px;
    margin: 26px 0 0;
    text-transform: capitalize;
    font-weight: normal;
}

@media only screen and (max-width: 1100px) {
    #grid_wrap {
        grid-auto-rows: 180px;
    }

    .grid_link .grid_title {
        height: 180px;
    }

    .grid_title_main {
        font-size: 30px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 850px) {
    #grid_wrap {
        grid-auto-rows: 140px;
    }

    .grid_link .grid_title {
        height: 140px;
    }

    .grid_title_main {
        font-size: 25px;
        line-height: 35px;
    }

    .grid_title_client {
        font-size: 14px;
        line-height: 14px;
    }
}

@media only screen and (max-width: 650px) {
    #grid_wrap {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .grid_link .grid_title {
        height: 180px;
    }

    .grid_title_main {
        font-size: 35px;
        line-height: 45px;
    }

    .grid_title_client {
        font-size: 14px;
        line-height: 14px;
    }
}

@media only screen and (max-width: 550px) {
    #grid_wrap {
        grid-template-columns: repeat(1, 1fr);
        grid-auto-rows: 220px;
    }

    .grid_link .grid_title {
        height: 220px;
    }
}

/*////////////////////////////*/
/*  PAGE  */
/*////////////////////////////*/

.postTitle {
    text-align: center;
    padding: 40px 20px;
}

.entry {
    width: 80%;
    margin: 40px auto;
    text-align: center;
}

#edit {
    text-align: center;
}

/*////////////////////////////*/
/*  POST / SINGLE  */
/*////////////////////////////*/


.ourworkTitle h1 {
    font-size: 30px;
    letter-spacing: 6px;
}

@media screen and (max-width: 600px) {
    .postTitle {
        padding: 20px;
    }

    .ourworkTitle h1,
    h1 {
        font-size: 20px !important;
        letter-spacing: 5px !important;
    }
}

.videoWrapperTitle {
    font: left;
    position: absolute;
    padding: 5px 5px 5px 30px;
    text-align: left;
    font-size: 16px;
    color: #fff;
}

@media screen and (max-width: 700px) {
    .videoWrapperTitle {
        font-size: 12px;
        padding: 5px;
    }
}

@media screen and (max-width: 391px) {
    .videoWrapperTitle {
        font-size: 10px;
    }
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Number of Videos: 1 */
.videoWrapper:only-child,
.videoWrapper:nth-child(1):nth-last-child(1) {
    padding-bottom: 54.25%;
}

/* Number of Videos: 2 */
.videoWrapper:nth-child(1):nth-last-child(2),
.videoWrapper:nth-child(2):nth-last-child(1) {
    padding-bottom: 27.25%;
}

/* Number of Videos: 3 */
.videoWrapper:nth-child(1):nth-last-child(3),
.videoWrapper:nth-child(2):nth-last-child(2),
.videoWrapper:nth-child(3):nth-last-child(1) {
    padding-bottom: 18.25%;
}

/* Number of Videos: 4 */
.videoWrapper:nth-child(1):nth-last-child(4),
.videoWrapper:nth-child(2):nth-last-child(3),
.videoWrapper:nth-child(3):nth-last-child(2),
.videoWrapper:nth-child(4):nth-last-child(1) {
    padding-bottom: 13.5%;
}

.video {
    width: 80%;
    max-height: 580px;
    margin: 20px auto 0;
    /* border-left: 5px solid #fff;
    border-right: 5px solid #fff;*/
}

.videobg {
    visibility: visible;
    width: calc(100vw - (100vw - 100%));
    margin: 0 0 -560px;
    overflow: hidden;
    position: absolute !important;
    left: 0px;
}

@media screen and (max-width: 600px) {
    .videobg {
        display: none !important;
    }
}

.videobg .slick-list {
    background: black;
}

.videobg .slick-track {
    opacity: 0.6 !important;
}

#postfeaturedimage {
    width: 100%;
    height: 350px;
}

#ifmobileyoutube {
    margin: 10px 0;
}

.heroimage {
    width: 300px;
    height: 500px;
    float: right;
    background: #ffffff;
}

.heroimage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 550px) {
    .heroimage {
        width: 100%;
        /*300px;*/
    }
}

#projectImageCarousel {
    width: 100%;
    height: 200px;
    float: left;
    margin: 120px 0 80px;
}

@media only screen and (max-width: 750px) {
    #projectImageCarousel {
        margin: 50px 0;
    }
}

#ourworktopquotewrap {
    width: 100%;
    min-height: 200px;
    padding-top: 100px;
    text-align: right;
}

#ourworktopquote {
    text-align: right;
    width: 30%;
    min-height: 150px;
    display: inline-block;
}

@media only screen and (max-width: 750px) {
    #ourworktopquotewrap {
        display: inline-block;
        margin: 0px;
        text-align: center;
        padding: 1.7em 0 0;
        margin: 0;
        min-height: 0;
    }

    #ourworktopquote {
        width: 100%;
        margin: 0px;
        text-align: center;
        padding: 0px;
        min-height: 0;
    }
}

#ourworkbottomquotewrap {
    width: 300px;
    min-height: 500px;
    float: left;
}

#ourworkbottomquote {
    width: 300px;
    min-height: 150px;
    height: 100%;
    text-align: left;
    float: left;
    margin: 80px 0 0;
}

@media only screen and (max-width: 750px) {
    #ourworkbottomquotewrap {
        display: inline-block;
        text-align: center;
        width: 100%;
        min-height: 0;
    }

    #ourworkbottomquote {
        width: 100%;
        min-height: 0;
        text-align: center;
        margin: 0 0 60px;
    }
}

.quote {
    font-family: 'Rustico', sans-serif;
    font-size: 35px;
    line-height: 45px;
    text-transform: capitalize;
    font-weight: 400;
}

blockquote {
    quotes: "\0022""\0022""‘""’";
    font-family: 'Rustico', sans-serif;
}

blockquote:before {
    font-family: Rustico, monospace;
    content: open-quote;
}

blockquote:after {
    font-family: Rustico, monospace;
    content: close-quote;
    padding-left: 5px;
}

#contenttop {
    text-align: right;
    padding: 0 340px 0 20%;
}

@media only screen and (max-width: 850px) {
    #contenttop {
        padding: 0 340px 0 10%;
    }
}

@media only screen and (max-width: 750px) {
    #contenttop {
        padding: 0;
        display: inline-block;
        text-align: center;
    }
}

#contentbottom {
    text-align: left;
    margin-left: 340px;

}

@media only screen and (max-width: 750px) {
    #contentbottom {
        margin: 0px;
        text-align: center;
    }
}


.outworkcontent {}

.entrysection {
    display: inline-block;
    width: 100%;
}

/*
li &.prev {
    display: block;
    height: 20px;
    width: 20px;
    background: url('../images/LEFT_ARROW.png') no-repeat;
}

li &.next {
    display: block;
    height: 20px;
    width: 20px;
    background: url('../images/RIGHT_ARROW.png') no-repeat;
}
*/

.lslide {}


/*////////////////////////////*/
/*  CONTACT  */
/*////////////////////////////*/

#faceArea {
    background-color: #ebebe9;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    text-align: center;
    padding: 60px 0;
}

@media only screen and (max-width: 500px) {
    #faceArea {
        grid-template-columns: repeat(1, 1fr);
        padding: 40px 0;
        grid-gap: 40px;
    }
}

#faceAreaOverflow {
    height: 344px;
    width: calc(100vw - (100vw - 100%));
    position: absolute;
    float: left;
    left: 0;
    z-index: -180;
    margin: -60px 0;
}

@media screen and (min-width: 1200px) {
    #faceAreaOverflow {
        background-color: #ebebe9;
    }
}

.biscuitface {
    height: 150px;
}

.faceName {
    font-family: 'Couture', sans-serif;
    font-size: 17px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: normal;
    margin: 5px 0;
    padding: 0;
}

.biscuitface {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    background-position: center;
    background-size: contain;
}

#jackbiscuitface {
    background: url('../images/biscuitface-2017/jackbiscuitface_smile_funny_tm_920.png') 0 0 no-repeat;
    background-size: cover;
}

#jackbiscuitface:hover {
    background-position: -1.5px -150px;
}

#sambiscuitface {
    background: url('../images/biscuitface-2017/sambiscuitface_smile_funny_tm_920.png') 0 0 no-repeat;
    background-size: cover;
}

#sambiscuitface:hover {
    background-position: -1.5px -150px;
}

.faceSocialWrap {
    width: 20px;
    margin: 0 auto;
}

.faceSocialIcon {
    width: 20px;
    height: 20px;
    overflow: hidden;
    float: left;
    margin: 5px 2px 0px;
}

.faceSocialIcon:hover {
    background-position: 0 -20px;
}

.SocialIconLinkedin {
    background: url('../images/RTSOCIAL/RTSOCIAL_LINKEDIN.png') 0 0 no-repeat;
    background-size: cover;
}

.SocialIconTwitter {
    background: url('../images/RTSOCIAL/RTSOCIAL_TWITTER.png') 0 0 no-repeat;
    background-size: cover;
}

.SocialIconInsta {
    background: url('../images/RTSOCIAL/RTSOCIAL_INSTA.png') 0 0 no-repeat;
    background-size: cover;
}

.SocialIconEmail {
    background: url('../images/RTSOCIAL/RTSOCIAL_EMAIL.png') 0 0 no-repeat;
    background-size: cover;
}

#contactDetails {
    width: 100%;
    margin: 60px 0 0;
}

.contactDetailsRow {
    margin: 0 0 60px;
}

.contactDetailsIcon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.contactDetailsIconLink {}

.contactDetailsTitle {
    font-family: Couture, sans-serif;
    font-size: 17px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 15px 0;
    padding: 0;
    overflow-wrap: break-word;
}

.contactDetailsDescription {
    width: 60%;
    margin: 0 auto;
}

/*////////////////////////////*/
/*  FOOTER  */
/*////////////////////////////*/

footer {
    text-align: center;
    padding: 80px 0 20px;
    font-size: 21px;
    bottom: 0;
}

@media only screen and (max-width: 950px) {
    footer {
        width: 40%;
        margin: 0 auto;
    }
}

footer a {
    padding: 0 5px;
}

footer div {
    font-size: 12px;
}

.nopadding {
    padding: 0 !important;
}


/*////////////////////////////*/
/*  BISCUITS & CRUMBS  */
/*////////////////////////////*/

.biscuit {
    width: 201px;
    height: 200px;
    z-index: -200;
    position: absolute;
}

.biscuit01 {
    background: url('../images/RTF2019_BISCUIT_01.png') 0 0 no-repeat;
    background-size: cover;
}

.biscuit02 {
    background: url('../images/RTF2019_BISCUIT_02.png') 0 0 no-repeat;
    background-size: cover;
}

.biscuit03 {
    background: url('../images/RTF2019_BISCUIT_03.png') 0 0 no-repeat;
    background-size: cover;
}

.biscuit04 {
    background: url('../images/RTF2019_BISCUIT_04.png') 0 0 no-repeat;
    background-size: cover;
}

.biscuit05 {
    background: url('../images/RTF2019_BISCUIT_05.png') 0 0 no-repeat;
    background-size: cover;
}

.biscuitLeft {
    left: -110px;
}

.single .biscuitLeft {
    left: -75px;
}

@media only screen and (max-width: 600px) {
    .biscuitLeft {
        left: -160px;
    }

    footer {
        /*width: 6S0%;*/
    }
}

.biscuitrighttuck {
    right: 50px;
    margin: -135px 0 0;
}

.biscuitleftbottom {
    left: 50px;
    padding: 0 0 20px;
    height: 80px;
    margin: -80px 0 0;
    /*bottom: 0px;*/
}

@media only screen and (max-width: 800px) {
    .biscuitleftbottom {
        left: 20px;
    }
}

@media only screen and (max-width: 700px) {
    .biscuitleftbottom {
        left: -90px;
    }
}

.crumb {
    width: 60px;
    height: 42.5px;
    z-index: -190;
    position: absolute;
}

.crumb01 {
    background: url('../images/RTF2019_CRUMBS_01.png') 0 0 no-repeat;
    background-size: cover;
}

.crumb02 {
    background: url('../images/RTF2019_CRUMBS_02.png') 0 0 no-repeat;
    background-size: cover;
}

.crumb03 {
    background: url('../images/RTF2019_CRUMBS_03.png') 0 0 no-repeat;
    background-size: cover;
}

.crumbLeft {
    left: -20px;
    margin: -75px 0 0;
}

.crumbNextLeft {
    left: 85px;
    margin: -10px 0 0;
}

.crumbrighttuck {
    right: 250px;
    margin: -10px 0 0;
}

.crumbAbove {
    float: right;
    transform: translate(-70px, 85px);
}

.crumbBelow {
    float: left;
    transform: translate(6px, 268px) rotate(-38deg);
}

@media only screen and (max-width: 750px) {
    .crumbBelow {
        transform: translate(6px, 200px) rotate(-38deg);
    }

    .crumbAbove {
        transform: translate(-70px, 16px);
    }
}

@media only screen and (max-width: 500px) {
    .biscuitrighttuck {
        margin: -190px 0 0;
    }

    .crumbrighttuck {
        margin: -10px -20px 0;
    }
}


/*////////////////////////////*/
/*  RTICON  */
/*////////////////////////////*/

.RTICON01 {
    background: url('../images/RTICON/RTICON_01.png') 0 0 no-repeat;
    background-size: cover;
}

.RTICON02 {
    background: url('../images/RTICON/RTICON_02.png') 0 0 no-repeat;
    background-size: cover;
}

.RTICON03 {
    background: url('../images/RTICON/RTICON_03.png') 0 0 no-repeat;
    background-size: cover;
}

.RTICON04 {
    background: url('../images/RTICON/RTICON_04.png') 0 0 no-repeat;
    background-size: cover;
}

.RTICON05 {
    background: url('../images/RTICON/RTICON_05.png') 0 0 no-repeat;
    background-size: cover;
}

.RTICON06 {
    background: url('../images/RTICON/RTICON_06.png') 0 0 no-repeat;
    background-size: cover;
}

.RTICON07 {
    background: url('../images/RTICON/RTICON_07.png') 0 0 no-repeat;
    background-size: cover;
}

.RTICON08 {
    background: url('../images/RTICON/RTICON_08.png') 0 0 no-repeat;
    background-size: cover;
}

.RTICON09 {
    background: url('../images/RTICON/RTICON_09.png') 0 0 no-repeat;
    background-size: cover;
}

.RTICON10 {
    background: url('../images/RTICON/RTICON_10.png') 0 0 no-repeat;
    background-size: cover;
}

.RTICON11 {
    background: url('../images/RTICON/RTICON_11.png') 0 0 no-repeat;
    background-size: cover;
}

.RTICON12 {
    background: url('../images/RTICON/RTICON_12.png') 0 0 no-repeat;
    background-size: cover;
}

.RTICON13 {
    background: url('../images/RTICON/RTICON_13.png') 0 0 no-repeat;
    background-size: cover;
}

.RTICON14 {
    background: url('../images/RTICON/RTICON_14.png') 0 0 no-repeat;
    background-size: cover;
}

#brokenbiscuits {
    background-image: url(../images/BrokenBiscuitError404.png);
    background-position: center;
    height: 500px;
    max-width: 800px;
    margin: 0 auto;
}

/*////////////////////////////*/
/*  TPYE  */
/*////////////////////////////*/

h1 {
    font-family: 'Couture', sans-serif;
    font-size: 37px;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

h2 {
    font-family: 'Couture', sans-serif;
    font-size: 27px;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: normal;
    margin: 60px 0 20px;
    padding: 0;
}

h3 {
    font-family: 'Couture', sans-serif;
    font-size: 17px;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: normal;
    margin: 40px 0 0;
    padding: 0;
}

h4 {
    font-family: 'Rustico', sans-serif;
    font-size: 90px;
    line-height: 120px;
    margin: 20px;
    text-transform: capitalize;
    font-weight: normal;
}

p {
    font-family: 'Barlow', sans-serif;
    font-size: 1em;
    line-height: 1.7em;
}

a,
a:active,
a:visited {
    color: #3b3e3e;
    text-decoration: none;
}

a:hover {
    color: #3E8ADB;
    text-decoration: none;
}

/*////////////////////////////*/
/*  WORDPRESS  */
/*////////////////////////////*/

.wp-caption {}

.wp-caption-text {}

.sticky {}

.screen-reader-text {}

.gallery-caption {}

.bypostauthor {}

.alignright {}

.alignleft {}

.aligncenter {}
