@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

/* BODY TXT */

* {
    outline: none;
}

body {
    margin: 0;
    padding: 0;
    color: #101010;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
}

body,
html {
    height: 100%;
    overflow-x: hidden;
}

.wrap {
    min-height: 100vh;
    flex-grow: 1;
}

.row {
    display: flex;
    width: 100%;
    /* max-width: 1080px; */
    flex-direction: column;
    flex-wrap: nowrap;
}

p,
span,
li,
ol,
ul,
blockquote {
    font-family: 'Roboto Condensed', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    letter-spacing: normal;
    margin: 1rem 0rem;
}

h1 {
    font-size: 6rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 4rem;
}

h4 {
    font-size: 3rem;
    width: fit-content;
}

h5 {
    font-size: 2rem;
}


/* LINKS */

main a {
    color: #101010;
    text-decoration: none;
    box-shadow: 0 0px transparent, 0 0px transparent, 0 0px #101010, 0px 0 transparent;
}

.about a {
    color: #101010;
    text-decoration: none;
    box-shadow: 0 0px transparent, 0 0px transparent, 0 1px #101010, 0px 0 transparent;
    transition: box-shadow 0.2s ease-in;
}

.about a:hover {
    color: #101010;
    box-shadow: 0 0px transparent, 0 0px transparent, 0 4px #101010, 0px 0 transparent;
}

.project-detail p>a {
    background: beige;
    border: solid 2px transparent;
    line-height: 0;
    padding: 0.25rem;
}

.project-detail p>a:hover {
    background: beige;
    border: solid 2px black;
    line-height: 0;
    padding: 0.25rem;
}

a:focus {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.column {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 50%;
}

.tiles {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tile {
    display: flex;
    height: fit-content;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 1.5rem;
    flex-grow: 1;
    align-content: space-between;
}

.tile p {
    margin: 5px 0px;
}


/* CUSTOMIZED HTML ELEMENTS */

ul {
    margin: 0;
    padding: 0;
}

ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    line-height: 22px;
    margin-bottom: 15px;
}

b {
    font-weight: 800;
}

u {
    text-decoration: underline;
}

section {
    margin-bottom: 3rem;
    padding: 1rem;
}

section.work, section.services-list, section.project-detail {
    flex-grow: 1;
}


/* FORM ELEMENTS */

.form-group input[type="text"],
textarea {
    width: 100%;
    width: -webkit-fill-available;
    height: 40px;
    display: inline-block;
    border: 1px solid #ccc;
    padding: 0 15px;
}

.form-group input[type="email"] {
    width: 220px;
    height: 40px;
    display: inline-block;
    border: 1px solid #ccc;
    padding: 0 15px;
}

button[type="submit"],
button[type="button"] {
    display: inline-block;
    background: #1a3b90;
    color: #ffffff;
    line-height: normal;
    height: auto;
    padding: 2rem 7rem;
    box-shadow: 9px 5px #101010;
    margin: 3rem;
    border: 0px;
    font-size: 1.75rem;
    letter-spacing: normal;
}

button[type="submit"]:hover,
button[type="button"]:hover {
    color: #ffffff;
    box-shadow: 10px 6px #101010;
}

label {
    font-weight: normal;
}

textarea {
    width: 320px;
    height: 110px;
    display: inline-block;
    border: 1px solid #ccc;
    padding: 15px;
}

.form-group {
    width: 100%;
    float: left;
}


/* TABLE MIDDLE */

.table {
    width: 100%;
    height: 100%;
    display: table;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 3;
}

.table .inner {
    display: table-cell;
    vertical-align: middle;
}

.errorpage h1 {
    font-size: 3rem;
    float: none;
    text-align: center;
}

main {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-self: center;
    z-index: 3;
    background: #fff;
    flex: 1 0 auto;
    flex-grow: 1;
}

.cv h4 {
    width: 100%;
    font-size: 2.5rem;
}

.cv h2 {
    color: #cbcbc9;
    font-size: 90px;
    font-family: 'Oswald', sans-serif;
    margin: 0;
}

.posts .post {
    width: 225px;
    height: 317px;
    -webkit-animation: scale-in-center 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards;
    animation: scale-in-center 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards;
}

@-webkit-keyframes scale-in-center {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes scale-in-center {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.work figure {
    width: 100%;
    float: left;
    position: relative;
    margin: 0px;
}

.work figure a {
    font-weight: 700;
    color: #fff;
}

.work figure a:hover {
    text-decoration: none;
}

figure img {
    width: 225px;
    height: 317px;
}

.posts .post-title a {
    text-decoration: none;
}

.posts .post-categories li {
    background-color: #101010;
    padding: 0.5rem 2rem;
    margin-bottom: 0.5rem;
    justify-content: right;
    display: block;
}

.posts .post-categories {
    font-size: 1rem;
    position: relative;
    left: -4rem;
    top: -20rem;
    width: 12rem;
}

.posts .post-categories li a:hover {
    border-bottom: 0px;
    color: #ffffff;
}

.posts .post-title {
    background: #101010;
    padding: 1rem;
    position: absolute;
    margin: -8px;
    bottom: 1rem;
    letter-spacing: 1.25px;
    max-width: min-content;
    font-size: 1.75rem;
    line-height: 2rem;
}

h2.post-title a:hover {
    border: 0px;
}

.work figure:hover figcaption {
    opacity: 1;
}

.work figure figcaption {
    position: absolute;
    left: 0;
    opacity: 0;
}

.work figure figcaption span {
    display: block;
    margin: auto;
}

.bg-color {
    background: rgba(0, 0, 0, 0.8);
}

figure:hover {
    color: rgba(0, 0, 0, 0.8);
}

.back a {
    text-decoration: none;
}

.back a:hover {
    text-decoration: none;
    color: #000;
}

.carousel-control {
    -webkit-tap-highlight-color: transparent
}

.int-header img {
    margin: 0 auto;
    display: block;
}

.logo img {
    height: 2.5rem;
}


/* LITEBOX NAVIGATION */

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
    position: absolute;
    height: auto;
    width: auto;
}

.video-bg {
    width: -webkit-fill-available;
    height: 100%;
    float: left;
    position: relative;
    overflow: hidden;
    background: #101010;
    display: grid;
}

ul.nav {
    line-height: 2;
}

.navigation nav {
    display: inline-block;
    position: relative;
    z-index: 2;
}

.navigation nav ul {
    width: 100%;
    float: left;
    text-align: center;
}

.navigation nav ul li {
    width: 100%;
    float: left;
    margin: 10px 0;
    opacity: 0;
    transform: translateY(-25px);
}

.navigation nav ul li a {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
}

.navigation nav ul li a:hover {
    text-decoration: none;
    letter-spacing: -1px;
    background: none;
}

.navigation nav img {
    margin-left: 10px;
}

.navigation nav ul li ul.dropdown-menu {
    position: static;
    background: none;
    text-align: center;
    border: none;
    box-shadow: none;
}

.navigation nav ul li ul.dropdown-menu li {
    display: inline-block;
}

.navigation .copyright {
    width: 100%;
    float: left;
    text-align: center;
    margin-top: 40px;
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
}


/* SLIDER */

.slider {
    width: 100%;
    height: 100%;
    background: #101010;
    float: left;
    position: relative;
    overflow: hidden;
    z-index: 3;
    margin-top: 400px;
}

.slider .slider-inner {
    width: 100%;
    height: 100%;
    float: left;
    position: fixed;
}

.slider .banner {
    width: 100%;
    height: 100%;
    float: left;
}

.slider h5 {
    font-size: 15px;
    color: #ffffff;
}

.tp-caption .start {
    position: relative;
    top: -240px;
    margin-top: 0px;
    vertical-align: top;
}

.video-bg {
    position: relative;
    overflow: hidden;
    background: #101010;
}

.video-bg:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(11, 11, 11, 0.3);
    z-index: 2;
}


/* INT HEADER */

.int-header {
    height: 850px;
    position: relative;
    z-index: 3;
    margin-bottom: 0px;
    background-image: -ms-radial-gradient(center bottom, ellipse farthest-corner, #4D4D4D 0%, #101010 100%);
    background-image: -moz-radial-gradient(center bottom, ellipse farthest-corner, #4D4D4D 0%, #101010 100%);
    background-image: -o-radial-gradient(center bottom, ellipse farthest-corner, #4D4D4D 0%, #101010 100%);
    background-image: -webkit-gradient(radial, center bottom, 0, center bottom, 359, color-stop(0, #4D4D4D), color-stop(100, #101010));
    background-image: -webkit-radial-gradient(center bottom, ellipse farthest-corner, #4D4D4D 0%, #101010 100%);
    background-image: radial-gradient(ellipse farthest-corner at center bottom, #4D4D4D 0%, #101010 100%);
}

.int-header-hero {
    display: flex;
    justify-content: center;
    z-index: 3;
    margin-bottom: 0px;
    padding-bottom: 0px;
    background-color: #000;
}

canvas {
    display: block;
    margin: 0 auto;
    height: 100%;
    width: 100%;
    height: 100vh;
    width: 100vw;
}


/* Chrome, Safari, Opera */

@-webkit-keyframes myfirst {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Standard syntax */

@keyframes myfirst {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#portrait {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 3;
    margin-bottom: 0px;
    justify-content: center;
    align-items: center;
    top: 0px;
    left: 0px;
    object-fit: cover;
}

.photo {
    height: auto !important;
    position: relative !important;
    padding: 0px;
}

.int-header h3 {
    color: #fff;
    font-size: 70px;
    font-family: 'Oswald', sans-serif;
    margin: 40px 0;
}

.int-header p {
    font-size: 18px;
    color: #ffffff;
    padding: 0 30%;
    margin-bottom: 50px;
}

.int-header img {
    display: inline-block;
}

.embedded-site {
    display: block;
    position: relative;
    width: 85%;
    height: 750px;
    overflow: scroll;
    border: none;
    margin: 0 auto;
    background-color: #ffffff;
}


/* QUOTE */

.quote {
    text-align: right;
    text-align-last: right;
    display: flex;
    flex-direction: column;
}

.quote span {
    font-size: 1.25rem;
    line-height: 1.25;
    font-style: italic;
}

.quote a {
    line-height: 60px;
    display: inline-block;
    font-size: 40px;
    border: 2px solid #ffffff;
    color: #fff;
    font-weight: 100;
}

.quote .columms a:hover {
    background: #ffffff;
    color: #101010;
    text-decoration: ffffff;
}

.quote blockquote {
    align-self: flex-end;
    max-width: 800px;
    display: flex;
    flex-direction: column;
}

blockquote {
    color: #fff;
    border: none;
    font-weight: 100;
    font-size: 1rem;
    margin: 4rem;
}

.title-box {
    width: 100%;
    text-align: center;
}

.title-box h1 {
    font-size: 180px;
    font-family: 'Oswald', sans-serif;
    margin: 0;
}

.title-box h2 {
    font-size: 12rem;
    font-family: 'Oswald', sans-serif;
    margin: 0;
}

.title-box h5 {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}


/* CONTACT FORM */

.contact-form {
    width: 100%;
    float: left;
    padding: 0 0;
    text-align: center;
    margin-bottom: 80px;
}

.contact-form .form-group {
    width: 100%;
    float: left;
}

.contact-form label {
    float: left;
    font-weight: normal;
}

.contact-form input[type="text"] {
    max-width: 100%;
}

.contact-form textarea {
    width: -webkit-fill-available;
    display: block;
    height: 20rem;
    ;
}

.contact-form .alert {
    width: 100%;
    float: left;
}

.contact-form #success,
#error {
    display: none
}

.contact-form #success p,
#error p {
    float: left;
}

.contact-form #contact .error {
    width: 100%;
    color: red;
}

.contact-form #error p {
    color: #c0392b
}


/* BRAND LOGOS */

.brands {
    margin-bottom: 3rem;
}

.brands-logos img {
    max-width: 100%;
    max-height: 2.25rem;
    margin: 1.5rem 1rem 0rem 0rem;
}

.brands-logos p {
    font-weight: 400;
    margin: 0;
}

ul.brands>li {
    display: inline-block;
    margin-right: 2rem;
}


/* FEATURES LIST */

.features-list {
    width: 100%;
    float: left;
    padding: 80px 0;
}

.features-list ul {
    width: 100%;
    float: left;
}

.features-list ul li {
    width: 100%;
    float: left;
    margin: 6px 0;
}

.features-list ul li:before {
    content: '';
    width: 6px;
    height: 1px;
    background: #3f742f;
    float: left;
    margin-top: 10px;
    margin-right: 10px;
}


/* SERVICES LIST */

.services-list p {
    font-weight: 400;
}

.services-list ul {
    width: 100%;
    float: left;
    margin: 10px 0;
    padding-bottom: 15px;
}

.services-list ul li {
    vertical-align: middle;
    line-height: 2rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.services-list ul li:before {
    content: '';
    width: 0.75rem;
    height: 1.5rem;
    background: #101010;
    float: left;
    margin-right: 10px;
}


/* PROJECT DETAIL */

.project-detail .full-width {
    width: 100%;
    float: left;
}

section.project-detail {
    margin: 6rem auto;
    width: 100%;
}

section.project-detail h5 {
    border-bottom: 5px solid #101010;
    flex-grow: 1;
    width: 100%;
}

section.project-detail h5:last-child {
    border-bottom: none;
    transition: transform 250ms;
}

section.project-detail h5:last-child:hover {
    transform: translateX(-2.5px);
}


/* LOGOS */

.logos {
    width: 100%;
    float: left;
    padding: 100px 0;
}

.logos h4 {
    font-size: 14px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 40px;
    position: relative;
}

.logos p {
    font-weight: 400;
    margin: 0;
}

.logos ul {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
}

.logos ul li {
    width: 33.33333%;
    float: left;
}

.logos ul li figure {
    width: 100%;
    float: left;
}

.logos ul li img {
    width: 100%;
}


/* FOOTER */

header>.container,
footer>.container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

header,
footer {
    background: #101010;
    color: #fff;
}

.logo,
header ul {
    display: flex;
    padding: 1rem;
}

header.logo {
    height: 1rem;
}

header nav {
    padding: 2rem 0rem;
    background: #101010;
    font-size: 2.5rem;
}

header a {
    padding: 1.5rem 0.5rem;
}

header a,
header a:active,
header a:visited {
    text-decoration: none;
    font-size: 1.25rem;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    -webkit-tap-highlight-color: transparent;
    transition: box-shadow 0.2s ease-in;
}

a.logo:hover {
    border-bottom: 0px;
}

header li a:hover {
    color: #101010;
    transition: box-shadow 0.1s ease-in;
    box-shadow: 0 60px white inset, 0 0px transparent inset, 0px 0 transparent inset, 0px 0 transparent inset;
    background: #ffffff;
}

ul.social,
ul.nav {
    display: flex;
}

.social li {
    width: 2.25rem;
    height: 2rem;
    display: flex;
    padding: 0.5rem;
}

object.social {
    width: 2rem;
}

object.social:hover {
    fill: white!important;
    overflow: hidden;
}

span.copyright {
    padding: 0.5rem;
    font-size: 1rem;
    font-weight: 400;
    color: #888;
    text-align: center;
}

.filters label {
    margin-right: 2rem;
    transition: box-shadow 0.2s ease-in;
    box-shadow: 0 0px transparent, 0 0px transparent, 0 0px #101010, 0px 0 transparent;
    line-height: 30px;
}

.filters label:hover {
    box-shadow: 0 0px transparent, 0 0px transparent, 0 4px #101010, 0px 0 transparent;
}

.invert {
    background: #000000;
    color: #ffffff;
}

iframe img {
    max-width: 100%;
}

@media screen and (max-width: 800px) {
    section {
        margin-bottom: 0rem;
    }
    .tile,
    .column {
        width: 100%;
    }
    footer>.container {
        flex-direction: column;
        justify-content: center;
    }
    object.social {
        width: 3rem;
    }
    .title-box h2 {
        font-size: 8rem;
        font-family: 'Oswald', sans-serif;
        margin: 0;
    }
    h3,
    .quote h3 {
        padding: 3rem 0rem;
    }
    .quote blockquote {
        margin: 1rem;
    }
    .int-header img {
        margin: 0 auto;
        display: block;
        width: -webkit-fill-available;
    }
    .brands-logos img {
        max-height: 1.5rem;
        margin: 0.5rem 0.25rem 0rem 0rem;
    }
    section.project-detail {
        margin: auto;
        width: auto;    
    }
}