/* fonts */
@font-face {
    font-family: 'Cabinet Grotesk Regular';
    src: url("/fnt/CabinetGrotesk-Regular.woff2");
}

@font-face {
    font-family: 'Cabinet Grotesk Bold';
    src: url("/fnt/CabinetGrotesk-Bold.woff2");
}

body {
    font-family: 'Cabinet Grotesk Bold', sans-serif;
}

/* landing */
.landing {
    width: 100%;
    height: 100vh;
    background-color: #000000;
}

.landing .jquery-background-video-wrapper {
    width: 100%;
    height: 100%;
}

.landing .bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing .gradients {
    display: none;
    width: 100%;
}

.landing .gradients .grad-left {
    position: absolute;
    width: 200px;
    height: 100%;
    left: 350px;
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

.landing .gradients .grad-right {
    position: absolute;
    width: 200px;
    height: 100%;
    right: 350px;
    background: rgb(0,0,0);
    background: linear-gradient(-90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

.landing .logo {
    padding-inline: 20px;
    padding-top: 20px;
}

.landing .logo img {
    width: 100%;
}

.landing .links {
    display: block;
    padding-inline: 20px;
    padding-top: 10px;
    color: white;
}

.landing .links a {
    color: white;
    text-transform: uppercase;
}

@media only screen and (min-width: 992px) {
    .landing .jquery-background-video-wrapper {
        width: calc(100% - 700px);
        height: 100%;
        left: 350px;
    }

    .landing .bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .landing .gradients {
        display: block;
        height: 100%;
    }

    .landing .logo {
        width: 930px;
        margin: 0 auto;
    }

    .landing .links {
        width: 930px;
        margin: 0 auto;
    }
}

/* midsection */
.midsection {
    padding: 100px 0;
    background-color: black;
    text-transform: uppercase;
    color: white;
}

.midsection .top {
    font-size: 2rem;
    line-height: 2rem;
}

.midsection .bottom {
    font-size: 4rem;
    line-height: 4rem;
}

/* work */
.work {
    background-color: black;
    color: white;
}

.work .inner {
    padding: 20px;
}

.work .inner .row {
    overflow: hidden;
}

.work .inner .cell {
    position: relative;
}

.work .inner .cell .image {
    position: absolute;
    width: fit-content;
}

.work .inner .cell .title {
    font-size: 2rem;
}

@media only screen and (min-width: 992px) {
    .work .inner {
        width: 900px;
        margin: 0 auto;
        padding: 0;
    }

    .work .inner .row {
        margin: 0;
    }

    .work .inner .cell {
        height: 5rem;
        margin: 0;
        transition: 200ms;
    }

    .work .inner .cell:hover {
        height: 600px;
        transition: 200ms;
    }

    .work .inner .cell .title {
        transition: 300ms;
    }

    .work .inner .cell:hover .title {
        color: red;
        transition: 300ms;
    }

    .work .inner .cell .image {
        height: calc(600px - 5rem - 50px);
        margin-top: 20px;
        opacity: 0;
        transition: 500ms;
    }

    .work .inner .cell.last-cell .image {
        right: 0;
    }

    .work .inner .cell:hover .image {
        opacity: 1;
        transition: 500ms;
    }

    .work .inner .cell .image img {
        height: 100%;
        aspect-ratio: 4 / 5;
        object-fit: cover;
    }

    .work .inner .cell .title {
        font-size: 3rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        line-height: 2.7rem;
        text-transform: uppercase;
    }
}

/* work - mobile */
.work-mob {
    background-color: black;
    color: white;
}

.work-mob .inner {
    padding: 20px;
}

.work-mob .inner .cell {
    padding-bottom: 1rem;
}

.work-mob .inner .cell:last-child {
    padding-bottom: 0;
}

.work-mob .inner .cell .title {
    font-size: 2rem;
    line-height: 2rem;
    text-transform: uppercase;
}

/* work-carousel */
.work-carousel {
    background-color: #000000;
    color: white;
    overflow-x: hidden;
}

.work-carousel .gradients {
    display: none;
    width: 100%;
    height: 100%;
}

.work-carousel .grad-left {
    position: absolute;
    width: calc((100% - 900px) / 2);
    height: 100%;
    left: 0;
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    z-index: 20;
}

.work-carousel .grad-right {
    position: absolute;
    width: calc((100% - 900px) / 2);
    height: 100%;
    right: 0;
    background: rgb(0,0,0);
    background: linear-gradient(-90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    z-index: 20;
}

.work-carousel .slick-slide {
    height: auto;
}

.work-carousel .image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    padding: 10px;
    object-fit: cover;
}

.work-carousel .text {
    padding: 5px 10px 0 10px;
}

.slick-slide .text {
    opacity: 0;
    transition: 300ms;
}

.slick-slide.slick-active .text {
    opacity: 1;
    transition: 300ms;
}

.work-carousel .text h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
}

@media only screen and (min-width: 992px) {
    .work-carousel .gradients {
        display: block;
    }
}

/* work-mob */
.work-mob {
    padding: 0 20px;
}

.work-mob .accordion {
    background-color: transparent;
}

.work-mob .accordion .accordion-header {
    text-align: center;
}

.work-mob .accordion .accordion-header button {
    font-size: 2rem;
    text-transform: uppercase;
}

.work-mob .accordion-item {
    background-color: transparent;
    border: none;
}

.work-mob .accordion-button {
    border: none;
    background-color: transparent;
    color: white;
    padding-inline: 0;
    width: 100%!important;
    text-align: center;
}

.work-mob .accordion-body {
    padding: 0;
    padding-bottom: 15px;
    color: white;
}

.work-mob .accordion-body .image {
    width: 100%;
}

.work-mob .accordion-body .image img {
    width: 100%;
}

.work-mob .accordion-button:not(.collapsed) {
    background-color: transparent!important;
    box-shadow: none!important;
}

.work-mob .accordion-button:focus {
    border: none;
    box-shadow: none;
}

.accordion-button::after {
    display: none;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff0000'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}
/* contact */
.contact {
    background-color: black;
    color: white;
    padding: 100px 0;
}

.contact .inner {
    font-size: 2rem;
    line-height: 2rem;
    text-transform: uppercase;
    padding: 20px;
}

@media only screen and (min-width: 992px) {
    .contact .inner {
        font-size: 4rem;
        line-height: 4rem;
        text-transform: uppercase;
    }
}

.contact .inner .red {
    color: red;
}

@media only screen and (min-width: 992px) {
    .contact .inner {
        width: 900px;
        margin: 0 auto;
    }
}

.contact .animation {
    margin-top: 80px;
}

.contact .inner .image {
    width: 400px;
    text-align: center;
}

.contact .inner .image img {
    width: 100%;
}

.contact .inner .image .flipped {
    transform: scaleX(-1);
}

.contact .inner .image .link {
    display: flex;
    justify-content: center;
    font-size: 2rem;
    line-height: 2rem;
    color: white;
    text-decoration: none;
}

.contact .inner .image .link i {
    display: block;
    font-size: 1.5rem;
    line-height: 2.3rem;
    margin-top: -5px;
    margin-left: 5px;
    opacity: 0.5;
}

.contact .mobile .link {
    display: flex;
    justify-content: center;
    font-size: 2rem;
    line-height: 2rem;
    color: white;
    text-decoration: none;
}

.contact .mobile .link i {
    display: block;
    font-size: 1.5rem;
    line-height: 2.3rem;
    margin-top: -5px;
    margin-left: 5px;
    opacity: 0.5;
}
