
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-display: swap;
    font-weight: 200;
    src: url(webfonts/inter.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(webfonts/playfair.woff) format('woff');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
:root{
    --tec-color-text-primary:#fff;
    --tec-color-accent-primary:#ff00bb;
}
body{
    background-color: #333;
    color: rgba(255,255,255,.6);
    overflow-x: hidden;
    font-family: 'Outfit';
}

a,
a:visited{
    text-decoration: none;
    color: rgba(255,255,255,1);
}
a:hover{
    color: rgba(255,255,255,1);
}
.container{
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
}
.container-fluid{
    padding: 0 15px;
    margin: 0 auto;
}

/* FULL WITH CSS */
.alignwide {
    margin-left  : -80px;
    margin-right : -80px;
}
.alignfull {
    margin-left  : calc( -100vw / 2 + 100% / 2 );
    margin-right : calc( -100vw / 2 + 100% / 2 );
    max-width    : 100vw;
}
.alignfull img {
    width: 100vw;
}

.page-content, 
.entry-content, 
.entry-summary {
    margin: 0;
}

/* SITE HEADER */
.site-header{
    padding: 3rem 0;
}
.site-branding{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.site-branding p{
    margin-top: 0;
}
.site-description{
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}
h1.site-title,
p.site-title{
    margin: 0;
    line-height: 1;
}
h1.site-title a,
p.site-title a{
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 100;
}
/*
.site-header .container{
    display:flex;
    justify-content:space-between;
    align-items: center;
}
.main-navigation{
    width: auto;
}
*/

/* NAVIGATION */
.main-navigation li a{
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.main-navigation ul ul{
    display: block;
    box-shadow: none;
}
.main-navigation ul ul li{
    margin-left: 0;
}
@media screen and (min-width: 37.5em){
    .main-navigation ul {
    display: flex;
    justify-content: flex-end;
    }
    .main-navigation li{
        margin-left:3rem;
    }
}

/* TYPOGRAPHY */
h1,h2,h3,h4,a.wp-block-button__link{
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
/*
h1{
    font-family: 'Playfair Display';
}
*/

.site-title a{
    display: block;
    width: 100px;
    height: 100px;
    background: url(images/logo-bifff.svg) no-repeat center center;
    text-indent: -30000000px;
    background-size: contain;
}

/* HOMEPAGE */
.home .site-header{
    position: absolute;
    width: 100%;
    top:0;
    z-index: 100;
}
.home .entry-header{
    display: none;
}
.home-splash-screen h2{
    font-size: clamp(1.5rem, -0.25rem + 4vw, 3.5rem) !important;
    line-height: 1.1;
    margin: 0;
    /* https://clamp.font-size.app/?config=eyJyb290IjoiMTYiLCJtaW5XaWR0aCI6IjUwMHB4IiwibWF4V2lkdGgiOiIxNDAwcHgiLCJtaW5Gb250U2l6ZSI6IjE2cHgiLCJtYXhGb250U2l6ZSI6IjUycHgifQ%3D%3D */
}
/* FILMS GRID */
.films-grid article{
    width: calc(100% / 3 - 2rem);
}
.films-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* NEWS GRID */
.news-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.news-grid article{
    width: calc(100% / 2 - 2rem);
    margin-bottom: 5rem;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 5px;
}
.news-grid-content{
    padding: 3rem;
}


/* SITE FOOTER */
.site-footer{
    color: rgba(255,255,255,.6);
    padding: 3rem 0;
    font-size: 0.8em;
}
.site-footer a{
    color: rgba(255,255,255,1);
}

@keyframes heartbeat
{
  0%
  {
    transform: scale( 1 );
  }
  20%
  {
    transform: scale( 1.05 );
  }
  40%
  {
    transform: scale( 1 );
  }
  60%
  {
    transform: scale( 1.1 );
  }
  80%
  {
    transform: scale( 1 );
  }
  100%
  {
    transform: scale( 1 );
  }
}

.logo-line img{
    max-height: 80px;
    max-width: 200px;
    width: auto;
    display: block;
    margin:0 auto;
    mix-blend-mode: multiply;
    filter: grayscale(100%) invert(1);
}
mark{
    display: inline-block;
  animation: heartbeat 1s infinite;
  color: #ff00d7 !important;
}
body mark.has-pale-pink-color{
    color: #ff00d7 !important;
}

@media screen and (min-width: 37.5em){
    .container-fluid,
    .container{
        padding: 0 30px;
    }
    .wp-block-cover, .wp-block-cover-image{
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* WIDGET */
#secondary{
  background-color: black;
  padding: 3rem 0;
}
#secondary .menu{
    margin:0;
    list-style: none;
    padding: 0;
}

@media screen and (max-width: 992px) {
 
  }