* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Source Sans 3', sans-serif;
}

h1,
h2,
h3 {
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
}

input,
button {
    outline: none;
}


/** BACKGROUNDS */

.bg-black {
    background-color: #000;
    color: #fff;
}

video.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    object-position: center center;
    object-fit: cover;
    filter: brightness(0.5);
    width: 100%;
    height: 100%;
    z-index: -1;
}


/** MENU */

.menu {
    padding: 0 20px;
}

.menu-logo {
    display: inline-block;
}

.menu-logo a {
    color: #fff;
    line-height: 64px;
    font-size: 24px;
    text-decoration: none;
}

.menu-links {
    float: right;
}

.menu-links ul li {
    display: inline-block;
    margin-left: 20px;
}

.menu-links ul li a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    line-height: 64px;
    font-size: 18px;
    opacity: .9;
    transition: all .2s ease;
}

.menu-links ul li a:hover {
    border-bottom: 2px solid #fff;
    opacity: 1;
}

.menu-links ul li.active a {
    opacity: .6;
    pointer-events: none;
}

.menu-links-close,
.menu-open {
    display: none;
}


/** HOME */

.home-content {
    margin-top: 200px;
    text-align: center;
    color: #fff;
}

.home-content h1 {
    font-size: 100px;
    line-height: 85px;
}

.home-content p {
    font-size: 20px;
    letter-spacing: 12px;
}

.home-content-actions {
    margin-top: 20px;
}

.home-content-actions button {
    line-height: 34px;
    color: #fff;
    padding: 10px 13px;
    /* border-radius: 30px; */
    border-radius: .33rem;
    font-size: 18px;
    border: 0;
    background-color: #000;
    /* border: 2px solid rgba(255, 255, 255, 0.5); */
    opacity: .7;
    transition: all .2s ease;
}

.home-content-actions button:hover {
    cursor: pointer;
    opacity: 1;
    transform: scale(1.05);
}

.home-content-actions button:first-child {
    margin-right: 20px;
}

.home-content-actions button img {
    height: 34px;
    float: left;
    margin-right: 10px;
}


/** HOME FOOTER */

.bottom-footer,
.sticky-footer {
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 20px 10px;
}

.sticky-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding-top: 0;
}

.footer-copy span {
    line-height: 30px;
    font-size: 12px;
    color: gray;
}

.footer-social img {
    width: 26px;
    margin: 0 6px;
    opacity: 0.7;
    transition: all .2s ease;
}

.footer-social img:hover {
    opacity: 1;
    transform: scale(1.03);
    cursor: pointer;
}

.footer-contact a {
    line-height: 30px;
    font-size: 12px;
    color: gray;
    text-decoration: none;
}


/** PROJECTS */

.projects h1 {
    line-height: 120px;
    text-align: center;
    font-size: 70px;
    margin-bottom: 20px;
    color: #c1c1c1;
    display: none;
}

.project {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-thumb {
    position: relative;
}

.project-thumb:hover>.project-thumb-play {
    opacity: 1;
}

.project-thumb-img {
    width: 100%;
    border-radius: 36px;
    padding: 10px;
}

.project-thumb-play {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all .2s ease;
}

.project-thumb-play img {
    transition: all .2s ease;
}

.project-thumb-play img:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.project-data {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.project-data p {
    font-size: 20px;
    color: #4c4c4c;
}

.project-data h2 {
    font-size: 51px;
    color: #939393;
}

.project-data img {
    width: 38px;
    opacity: .7;
    cursor: pointer;
    transition: all .2s ease;
}

.project-data img:hover {
    opacity: 1;
    transform: scale(1.03);
}


/** VIDEO MODAL */

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 50%);
    cursor: zoom-out;
    display: none;
}

#video-modal-content {
    width: 95%;
    max-width: 800px;
    margin: 20px auto 20px;
    height: calc(100vh - 120px);
}


/** ABOUT */

.bg-about,
.bg-contact {
    min-height: 100vh;
    background-color: #000;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-about {
    background-image: url(/assets/img/about/bg.webp);
}

.bg-about-2 {
    background-image: url(/assets/img/about/about-bg-2.jpg);
}

.about,
.contact {
    background-color: rgb(0 0 0 / 66%);
    width: 95%;
    max-width: 700px;
    margin: 100px auto;
    text-align: center;
}

.about-image img {
    width: 100%;
}

.about-content,
.contact-content {
    padding: 30px;
    color: #ffe8be;
}

.about h1,
.contact h1 {
    font-size: 67px;
    border-bottom: 2px solid #444a47;
    margin-bottom: 18px;
}

.about p {
    margin-bottom: 16px;
}


/** ABOUT 2 */

.about-2 {
    color: white;
    width: 100%;
    max-width: 700px;
    margin: 100px 0;
    padding: 0 26px;
}

.about-2-header {
    margin-bottom: 30px;
}

.about-2-header h1 {
    font-size: 90px;
    line-height: 72px;
}

.about-2-header h2 {
    letter-spacing: 1px;
}

.about-2-header p {
    font-weight: 600;
}

.about-2-content p {
    margin-bottom: 10px;
    text-align: justify;
}


/** CONTACT */

.bg-contact {
    background-image: url(/assets/img/contact/contact-bg-2.jpg);
}

.contact-methods {
    text-align: left;
    border-bottom: 2px solid #444a47;
    padding-bottom: 18px;
    margin-bottom: 18px;
}

.contact-content h5 a {
    line-height: 50px;
    text-decoration: none;
    color: #ffe8be;
    font-size: 22px;
}

.contact-method {
    margin-bottom: 16px;
}

.contact-method:last-child {
    margin-bottom: 0;
}

.contact-method img {
    height: 50px;
    float: left;
}

.contact-method a {
    line-height: 50px;
    text-decoration: none;
    color: #ffe8be;
    font-size: 22px;
    margin-left: 18px;
    transition: all .2s ease;
}


/** MODAL */

.modal-dialog {
    max-width: 800px;
    margin: 30px auto;
}

.modal-body {
    position: relative;
    padding: 0px;
}

.close {
    position: absolute;
    right: -30px;
    top: 0;
    z-index: 999;
    font-size: 2rem;
    font-weight: normal;
    color: #fff;
    opacity: 1;
}


/** RESPONSIVE */

@media screen and (max-width: 720px) {
    .menu-open {
        display: inline;
        float: right;
        height: 64px;
    }
    .menu-open img {
        width: 24px;
        margin: 20px 0;
    }
    .menu-links {
        position: fixed;
        top: 0;
        left: 0;
        background-color: black;
        height: 100vh;
        width: 100%;
        z-index: 10;
        text-align: center;
        box-sizing: border-box;
        display: none;
    }
    .menu-links .menu-links-close {
        display: block;
        text-align: right;
        padding: 20px 25px 20px 0;
    }
    .menu-links .menu-links-close span {
        color: white;
        font-size: 45px;
        line-height: 35px;
        opacity: .7;
    }
    .menu-links .menu-links-close span:hover {
        opacity: 1;
        cursor: pointer;
    }
    .menu-links ul li {
        display: block;
        margin: 0;
    }
    .menu-links ul li a {
        line-height: 50px;
        color: #fff !important;
    }
    .sticky-footer,
    .bottom-footer {
        display: none;
    }
    .projects {
        margin-top: 50px;
    }
    .projects .project {
        grid-template-columns: 1fr;
        margin-bottom: 50px;
    }
    .projects .project-ltr .project-thumb {
        grid-row-start: 2;
    }
    .project .project-data img {
        display: none;
    }
    .project-data p {
        font-size: 16px;
    }
    .project-data h2 {
        font-size: 40px;
    }
}

.fullscreen-player {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 1;
    display: none;
}

.fullscreen-player video {
    width: 100%;
    height: 100%;
}

.reel-close {
    color: #fff;
    font-size: 46px;
    line-height: 26px;
    display: inline-block;
    cursor: pointer;
    position: fixed;
    top: 14px;
    right: 14px;
}

@media screen and (max-width: 550px) {
    .home-content h1 {
        font-size: 70px;
    }
    .home-content-actions button {
        margin: 0 0 14px !important;
    }
}


/** Equipment */

.equipment {
    margin-top: 20px;
}

.equipment-category {
    margin-bottom: 50px;
    text-align: center;
}

.equipment-category-title {
    margin-top: 100px;
}

.equipment-category-title h1,
.equipment-category-title h2 {
    font-size: 50px;
    margin-bottom: 14px;
}

.equipment-category-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-bottom: 60px;
}

.equipment-item {
    width: 30vw;
    min-width: 315px;
    margin-top: 40px;
}

.equipment-item-image img {
    width: 100%;
    border-radius: 1rem;
    cursor: pointer;
    transition: all .3s ease;
}

.equipment-item img:hover {
    transform: scale(1.05);
}

.equipment-item-meta {
    margin-top: 12px;
}

.equipment-item-meta h3 {
    margin-bottom: 8px;
    font-size: 30px;
}

.equipment-item-meta p {
    color: #919a95;
}

.body-white a {
    color: #000 !important;
}