﻿/* X-Small devices (portrait phones, less than 576px)
No media query for `xs` since this is the default in Bootstrap

Small devices (landscape phones, 576px and up)
@media (min-width: 576px) {
   
}

Medium devices (tablets, 768px and up)
@media (min-width: 768px) {
    
}

Large devices (desktops, 992px and up)
@media (min-width: 992px) {
    
}

X-Large devices (large desktops, 1200px and up)
@media (min-width: 1200px) {
    
}

XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) {
   
}

$container-max-widths: (
  sm: 540px,
  md: 720px,
  lg: 960px,
  xl: 1140px,
  xxl: 1320px
);
*/

/*

Poppins Light
font-family: "poppins", sans-serif;
font-weight: 300;
font-style: normal;
Poppins Regular
font-family: "poppins", sans-serif;
font-weight: 400;
font-style: normal;
Poppins Bold
font-family: "poppins", sans-serif;
font-weight: 700;
font-style: normal;

*/

.container {
    max-width: 90% !important;
}

:root {
    --blue: #0DEAEA;
    --font-sans: "poppins", sans-serif;
    --font-sans-light: 300;
    --font-sans-regular: 400;
    --font-sans-bold: 700;
    --font-sans-2: "neue-haas-grotesk-text", sans-serif
}



html, body {
    font-family: var(--font-sans);
    font-weight: var(--font-sans-regular);
    font-style: normal;
    color: #fff;
    background-color: #000;
}

html {
    height: 100%;
}

body {
    /* set the footer at the bottom */
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

img {
    display: inline-block;
}

.img-full-width {
    width: 100%;
    display:block;
}

a {
    text-decoration: none;
}

p {
    margin: 0 0 1rem 0;
    letter-spacing: 0.75px;
}

#logo {
    max-width: 80px;
    display: block;
    margin-top: 0.75rem;
}


.btn {
    border: 1px solid #000;
    border-radius: 8px;
    text-transform: uppercase;
    color: #fff;
    font-family: var(--font-sans);
    font-weight: var(--font-sans-bold);
    font-size: 0.938rem;
    line-height: 0.938rem;
    padding: 1.25rem;
}

.btn-alt {
    border: 1px solid var(--blue);
    color: var(--blue);
}

.btn:hover {
    border-color: #fff;
}

.btn-alt:hover {
    border-color: #fff;
}

.btn-alt.on-white:hover {
    border-color: #000;
}


@media (min-width: 992px) {
    .logo {
        max-width: 190px;
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background-color: transparent;
    transition: background-color 500ms ease-out;
    padding-top: 3rem;
}

    header.active {
        background-color: #000;
        
    }

    header h1,
    header h2,
    header h3 {
        font-family: var(--font-sans);
        text-transform: uppercase;
        line-height: 1.2rem;
    }

    header h2 {
        font-weight: var(--font-sans-bold);
    }

    header h1, header h3 {
        font-size: 1rem;
        font-weight: var(--font-sans-light);
    }

    header .border-top {
        border-top: solid 1px #fff;
        margin-bottom: 1.75rem;
        margin-top: 3.75rem;
    }

    #header-lower {
        display: none;
        padding-bottom: 1.5rem;
        background-color: inherit;
    }

header.active #header-lower{
    display: block;
}

#project-items li a {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1.2rem;
}

#content-items {
    margin-top: -2rem;
    margin: -8rem auto 0 auto;
    width: min-content;
}

    #content-items li a {
        color: #fff;
        text-transform: uppercase;
        font-size: 2.563rem;
        font-family: "neue-haas-grotesk-text", sans-serif;
        font-weight: 400;
        font-style: normal;
        line-height: 3.0756rem;
    }

main {
    /*flex: 1 0 auto;*/
}

#toggle-menu {
    cursor: pointer;
}

#btn-open-menu {
    display: none;
}

#btn-open-menu.active {
    display: block;
}

#btn-close-menu {
    display: none;
}

#btn-close-menu.active {
    display: block;
}

@media (min-width: 992px) {
    main {
        /*flex: 1 0 auto;*/
    }
}


#section-hero {
    padding: 0;
    margin: 0;
}


.masthead {
    padding: 3rem 0 3rem 0;
    background-color: #000;
    color: #fff;
}

    .masthead h1 {
        font-size: 1rem;
        line-height: 1rem;
        margin: 0 0 2.69rem 0;
    }

    .masthead h2{
        font-size: 1.25rem;
    }

    .masthead p {
        font-size: 1.5rem;
        line-height: 1.82rem;
    }


@media (min-width: 992px) {

    .masthead {
        padding: 3rem 0 6rem 0;
        text-align: center;
    }

        .masthead h1 {
            font-size: 2rem;
            line-height: 2rem;
            margin: 0 0 3.69rem 0;
        }

        .masthead h2 {
            font-size: 1.5rem;
        }

        .masthead p {
            /*
            font-size: 3rem;
            line-height: 3.625rem;
            */
            font-size: 2.5rem;
            line-height: 3rem;
            margin: 0 2rem 3rem 2rem;
        }
}

section {
    padding: 3rem 0 3rem 0;
}


.section-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    /*margin: 3.8rem 0 3.8rem 0;*/
    padding: 0 0 1rem 0;
}


    p, .section-body-text p {
        font-size: 1rem;
        font-weight: 450;
        line-height: 1.125rem;
    }

.section-body-text-large p {
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.8125rem;
}

.section-text-block-title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 6.25rem;
    margin: 0;
    padding: 0;
}

.section-text-block-body-text {
    font-size: 1.25rem;
    font-weight: 450;
    line-height: 1.4375;
    margin: 0;
    padding: 0;
}

@media (min-width: 992px) {

    section {
        padding: 6rem 0 6rem 0;
    }

    .section-title {
        font-size: 3rem;
        font-weight: 600;
        text-transform: uppercase;
        padding: 0 0 1rem 0;
    }


    p, .section-body-text p {
        font-size: 1rem;
        font-weight: 450;
        line-height: 1.125rem;
    }

    .section-body-text-large p {
        font-weight: 500;
        font-size: 2rem;
        line-height: 2.375rem;
    }

    .section-text-block-title {
        font-size: 3rem;
        font-weight: 600;
        line-height: normal;
        margin: 0;
        padding: 0;
    }

    .section-text-block-body-text {
        font-size: 1.25rem;
        font-weight: 450;
        line-height: 1.4375;
        margin: 0;
        padding: 0;
    }


}

/* HOME PAGE */

#section-services{

}

    #section-services h1 {
        font-size: 6rem;
        text-transform: uppercase;
        font-family: var(--font-sans-2);
    }

    #section-services h2 {
        text-transform: uppercase;
        font-family: var(--font-sans);
        font-size: 2rem;
    }

    #section-services p {
        font-family: var(--font-sans-2);
        font-size: 1rem;
        font-weight: 200;
    }


/* HOME PROJECT CAROUSEL */
.slide-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.title-block-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left:0;
}

    .title-block-wrapper .title-block {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 100%;
    }

.title-block a:hover h2, .title-block a:hover p {
    color: rgb(140,140,140);
}

.title-block-wrapper .title-block h2 {
    font-size: 1.5rem;
    margin-bottom: 0.1rem;
}

    .title-block-wrapper .title-block p {
        font-size: 0.75rem;
        margin-bottom: 0rem;
    }

@media (min-width: 992px) {


    .title-block-wrapper .title-block h2 {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }

    .title-block-wrapper .title-block p {
        font-size: 1rem;
        margin-bottom: 0rem;
    }
}



    .carousel {
        padding: 3rem 0 0 0;
    }

h3.carousel-title {
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 550;
    margin-bottom: 1rem;
}

.carousel .slide {
    position: relative;
}

    .carousel .slide h2 {
        position: absolute;
        top: 1rem;
        left: 1rem;
        font-size: 1rem;
        font-weight: 600;
        color: #fff;
    }


    footer {
        margin: 0;
        background-color: #fff;
        color: #000;
        padding: 18rem 0 3rem 0;
    }

        footer a {
            text-transform: uppercase;
            color: #000;
        }

        footer h1 {
            font-size: 3rem;
            text-transform: uppercase;
        }

        footer .footer-links a {
            font-family: var(--font-sans);
            font-size: 0.875rem;
            font-weight: var(--font-sans-bold);
        }

        footer ul {
            line-height: 1.3rem;
        }

        footer .footer-logo-wrapper {
            display: block;
            margin-top: 12.5rem;
        }

        .copyright {
            margin-top: 1rem;
            font-size: 0.75rem;
        }

        .copyright p {
            color: #848484;
            font-size: 0.8rem;
            margin: 0 0 0.125rem 0;
        }


    .swiper-slide {
        width: 100%; /* Ensures each slide takes full width */
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.swiper-button-next,
.swiper-button-prev {
    display: none;
}

@media (min-width: 992px) {

    .swiper-button-next,
    .swiper-button-prev {
        color: #fff;
        display: block;
    }
}

/* SERVIVES PAGE */
.services-page .section-title {
    margin: 1rem 0 1rem 0;
    border-bottom: solid 1px #000;
}

    .services-page .section-body-text p {
        margin: 2rem 0 2rem 0;
    }

    @media (min-width: 992px) {

        .services-page .section-title {
            margin: 3.8rem 0 3.8rem 0;
            padding-top: 1.5rem;
        }

        .services-page .section-body-text p {
            margin: 1rem 0 1rem 0;
        }
    }



/* CONTACT PAGE */



/* PROJECTS PAGE */



    .project-item {
        /*position: relative;*/
        margin-bottom: 2.0rem;
    }

        a .project-item:hover {
            opacity: 0.6;
        }
        .project-item h2 {
/*            position: absolute;
            top: 1rem;
            left: 1rem;*/
            margin-top:0.5rem;
            font-size: 1.25rem;
            color: #000;
            font-weight: 600;
        }

    .showreel-item h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    @media (min-width: 992px) {
        .showreel-item h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
    }

    /* PROJECT PAGE */
    .project-page {

    }

    .project-page section {

        padding-top: 2rem;
    }

        .project-page .back-link {
            display: inline-flex;
            border-bottom: solid 1px #fff;
            padding-bottom: 0.25rem;
            margin-bottom: 7rem;
           
        }

        .project-page  .main-image {
            padding: 3rem 0 3rem 0;
        }

        .project-page .credits {
            margin: 0;
        }

@media (min-width: 992px) {

    .project-page .back-link {
        margin-bottom: 9rem;
    }

    .project-page .main-image {
        padding: 0;
    }

    .project-page .credits {
        margin: 2.4375rem 0 0 0;
    }
}

    .project-page .back-link img {
        margin-right: 0.5rem;
    }

.project-page h1 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 3rem;
    line-height: 3.625rem;
    margin: 0 0 2.4375rem 0;
}

        .project-page .description p {
            font-weight: 450;
            font-size: 1.25rem;
            line-height: 1.4375rem;
            /*color: #FF00B2;*/
        }




    #JobTypeId {
        margin: 1rem 0 1rem 0;
    }



    /* Name anchors on page. add some spacing so filters show whe */
    #people, #projects {
        padding-top: 2rem;
    }


    .filter-bar {
        margin: 4.75rem 0 5.69rem 0;
    }

        .filter-bar.showreel {
            margin: 4.75rem 0 0 0;
        }

        .filter-bar.services {
            margin: 4.75rem 0 0 0;
        }

            .filter-bar.services .btn-filter {
                margin-bottom: 1rem;
            }

@media (min-width: 1200px) {
    .filter-bar.services .btn-filter {
        margin-bottom: 0;
    }
}


    .sub-filter-bar {
        margin: 1rem 0 5.69rem 0;
    }

        .sub-filter-bar.no-margin-bottom {
            margin: 1rem 0 0rem 0;
        }

        .btn-filter {
            border: solid 1px #000;
            padding: 0.625rem;
            font-size: 1.25rem;
            cursor: pointer;
            margin: 0 0.875rem 0 0;
            color: #000;
        }

        .btn-filter:hover {
            background-color: #000;
            color: #fff;
        }

        .btn-filter.showreels {
            border: solid 2px #E05A00;
        }


            .btn-filter.showreels:hover {
                background-color: #E05A00;
                color: #fff;
            }

        .btn-filter svg {
            stroke: #ffffff;
            width: 40px;
            height: 40px;
        }

        .btn-filter:hover svg path {
            stroke: #ffffff;
            fill: #ffffff;
        }




    .services-page .btn-filter {
        padding: 0.3rem 0.625rem 0.3rem 0.625rem;
    }

    .btn-filter .icon {
        margin-right: 0.3rem;
    }

    .btn-filter.selected {
        background-color: #000;
        color: #fff;
    }


    /* ANIMATIONS */

    /* Animate the line from the left */

/* 
    https://tobiasahlin.com/blog/css-trick-animating-link-underlines/
*/
    a.underline-dark {
        position: relative;
        color: #000;
        text-decoration: none;
    }

        a.underline-dark:hover {
            color: #000;
        }

        a.underline-dark::before {
            content: "";
            position: absolute;
            display: block;
            width: 100%;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #000;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        a.underline-dark:hover::before {
            transform: scaleX(1);
        }