@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --black: #333;
    --black2: #333;
    --white: #fff;
    --white2: #fff;
    --link: #ccc;
    --red: #8B0000;
}

.sr-only {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.hidden {
    display: none;
}

body {
    overflow-x: hidden;
}

a {
    color: var(--link);
}

.text--center {
    text-align: center;
}

container {
    position: relative;
    width: 100%;
}

.navigation {
    position: fixed;
    width: 300px;
    left: -300px;
    height: 100%;
    border-right: 1px solid rgba(0,0,0,0.05);
    background: var(--white2);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: left 0.5s;
}

.navigation.active {
    left: 0;
}

.navigation ul {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
}

.navigation ul li {
    position: relative;
    width: 100%;
    list-style: none;
}

.navigation ul li a {
    position: relative;
    display: block;
    width: 100%;
    margin: 10px 0;
    white-space: normal;
    display: flex;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    letter-spacing: 2px;
    opacity: 0.5;
}

.navigation ul li a:hover {
    opacity: 1;
}

.main {
    position: absolute;
    width: calc(100% - 300px);
    left: 300px;
    background: var(--white);
    min-height: 100vh;
}

.main .topbar {
    position: fixed;
    top: 0;
    width: 100vw;
    left: 0;
    background: var(--white2);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    height: 60px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: left 0.5s, width 0.5s;
}

.main .topbar.active {
/*    width: calc(100% - 0px);*/
    left: 0;
}

.main .topbar .logo {
    color: var(--black);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.4em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main .topbar .logo img {
    width: 50px;
    vertical-align: middle;
    margin-right: 10px;
}

.main .topbar .toggle {
    position: relative;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.content-wrapper {
    display: flex;
    position: relative;
    flex-direction: column;
    min-height: 100vh;
    padding: 80px 40px 0;
    margin-top: 75px;
    left: 0;
    overflow: hidden;
    width: 100vw;
    transition: left 0.5s, width 0.5s;
}

.content-wrapper.active {
    left: 300px;
    width: calc(100vw - 300px);
}

.content-wrapper.last-content-wrapper {
    min-height: calc(100vh - 200px);
}

.banner {
    padding-top: 0;
    margin-top: 60px;
}

.banner .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner .content .banner-text {
    padding: 0 20px;
}

.banner .rva-banner {
    position: relative;
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: center;
    width: 100vw;
}

.banner .rva-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h3 {
    position: relative;
    font-size: 1.4em;
    color: var(--black);
    letter-spacing: 2px;
    text-transform: uppercase;
}

p {
    color: #777;
}

.title h2 {
    font-size: 2rem;
    text-transform: uppercase;
    color: rgba(0,0,0,0.25);
    border-bottom: solid 1px rgba(0,0,0,0.05);
}

.content--description {
    background: rgba(0,0,0,0.05);
    padding: 2rem 15%;
    margin: 20px 0;
}

.btn {
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    background: var(--black2);
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 10px;
    text-decoration: none;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: .8em;
    text-align: center;
    padding: 0 20px 40px;
    min-height: auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icons .social-icon {
    list-style: none;
}

.social-icons .social-icon a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--black);
    font-size: 1.2em;
    opacity: 0.5;
}

.social-icons .social-icon a:hover {
    opacity: 1;
}

.whatwedo .title {
    text-align: center;
    margin-top: 55px;
}

.whatwedo .content {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 20px;
    margin: 10px 0;
}

.whatwedo .content .whatwedo-box {
    border: 1px solid rgba(0,0,0,0.05);
    padding: 50px 20px;
    display: flex;
    background: var(--white2);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.whatwedo .content .whatwedo-box .icon-wrapper {
    font-size: 3em;
}

.whatwedo .content .whatwedo-box h2 {
    font-size: 1.1em;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    white-space: nowrap;
}

.whatwedo .content .whatwedo-box p {
    text-align: center;
}

.projects .content {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 20px;
    margin: 0;
}

.projects .content .project-box {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.projects .content .project-box .project-img {
    position: relative;
    width: 100%;
    height: 100%;
    transform: translateY(0);
    transition: 0.5s ease-in-out;
}

.projects .content .project-box .project-img svg {
    position: absolute;
    left: 50%;
    top: 50%;
    color: var(--white);
    z-index: 1;
    font-size: 5em;
    transform: translate(-50%, -50%);
    opacity: .5;
}

.projects .content .project-box:hover .project-img {
    transform: translateY(-100%)
}

.projects .content .project-box .project-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projects .content .project-box .project-txt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    transition: 0.5s ease-in-out;
    flex-direction: column;
}

.projects .content .project-box .project-txt .project-grid {
    margin: 20px;
    font-size: .8em;
}

.projects .content .project-box .project-txt .project-grid .row {
    color: var(--white);
    display: grid;
    grid-template-columns: repeat(2,1fr);
    background: rgba(255,255,255,0.05);
    padding: 10px;
}

.projects .content .project-box .project-txt .project-grid .row.row2 {
    grid-template-columns: repeat(1,1fr);
}

.projects .content .project-box .project-txt .project-grid .row:nth-child(2n+1) {
    background: rgba(255,255,255,0.15);
}

.projects .content .project-box:hover .project-txt {
    transform: translateY(0);
}

.projects .content .project-box .project-txt h2 {
    color: var(--white);
    font-size: 1em;
    text-transform: uppercase;
}

.swag .content .swag-wrapper {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 20px;
    margin: 10px 0;
}

.swag .content .swag-wrapper .swag-box {
    background: var(--black);
    display: flex;
    flex-direction: column;
    padding: 5px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.swag-box__img {
    width: 100%;
    overflow: hidden;
}

.swag-box__img img {
    max-width: 100%;
    transition: transform 0.5s ease-in-out;
}

.swag .content .swag-wrapper .swag-box .swag-box__details {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    transition: 0.5s ease-in-out;
    flex-direction: column;
}

.swag .content .swag-wrapper .swag-box:hover img {
    transform: scale(2);
}

.swag .content .swag-wrapper .swag-box:hover .swag-box__details {
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.swag .content .swag-wrapper .swag-box:hover .swag-box__details > * {
    margin: 5px 0;
}

.swag .content .swag-wrapper .swag-box h3 {
    font-size: 1rem;
    color: var(--white);
    text-shadow: 1px 1px rgba(0,0,0,0.5);
}

.swag .content .swag-wrapper .swag-box .swag-box__price {
    color: var(--white);
    font-size: .8rem;
}

.swag .content .swag-wrapper .swag-box .swag-box__btn {
    padding: 5px 10px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    border: solid 1px var(--white);
}

.contact {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}

.contact .contact-form {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 20px auto;
}

.contact .contact-form .row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 20px;
    margin-top: 20px;
}

.contact .contact-form .row2 {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact .contact-form .row input,
.contact .contact-form .row2 textarea {
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    color: var(--black);
    background: var(--white2);
    font-size: 16px;
    border: 1px solid rgba(0,0,0,0.1);
}

.contact .contact-form .row2 textarea {
    resize: none;
    height: 200px;
}

.contact .contact-form .form-group {
    position: relative;
    width: 100%;
}

.contact .contact-form label.error {
    position: absolute;
    color: var(--red);
    width: 100%;
    left: 10px;
    bottom: -1.25rem;
}

.contact .form--error {
    color: var(--red);
}

.contact .contact-form .row2 button {
    background: var(--black2);
    color: var(--white);
    padding: 10px 30px;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    max-width: 150px;
    border: none;
}

@media(min-width: 1300px) {
    .projects .content,
    .swag .content .swag-wrapper{
        grid-template-columns: repeat(4,1fr);
    }
}

@media(max-width: 992px) {
    .navigation {
        left: -100%;
    }

    .navigation.active {
        left: 0;
    }

    .main .topbar {
        width: 100vw;
        left: 0;
        padding: 0 20px;
    }

    .content-wrapper.active {
        width: 100%;
    }

    .navigation ul {
        padding: 20px 20px;
    }

    .banner h3,
    .banner p {
        text-align: center;
    }

    .content-wrapper {
        padding:  20px;
    }

    .banner {
        padding-top: 0;
    }

    .whatwedo .content .whatwedo-box .icon-wrapper {
        font-size: 2em;
    }

    .whatwedo .content .whatwedo-box h2 {
        font-size: 1em;
    }
    .swag .content .swag-wrapper,
    .projects .content {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width: 767px) {
    .whatwedo .content .whatwedo-box .icon-wrapper {
        font-size: 3em;
    }

    .whatwedo .content .whatwedo-box h2 {
        font-size: 1.1em;
    }

    .contact .contact-form .row,
    .swag .content .swag-wrapper,
    .whatwedo .content,
    .projects .content {
        grid-template-columns: repeat(1,1fr);
    }
}