/* =========================================================
   CODINGWORX MAIN CSS
   ========================================================= */

/* =========================================================
   FONTS
   ========================================================= */

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Black.eot');
    src: local('☺'),
         url('fonts/Montserrat-Black.woff') format('woff'),
         url('fonts/Montserrat-Black.ttf') format('truetype'),
         url('fonts/Montserrat-Black.svg') format('svg');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Bold.eot');
    src: local('☺'),
         url('fonts/Montserrat-Bold.woff') format('woff'),
         url('fonts/Montserrat-Bold.ttf') format('truetype'),
         url('fonts/Montserrat-Bold.svg') format('svg');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.eot');
    src: local('☺'),
         url('fonts/Montserrat-Regular.woff') format('woff'),
         url('fonts/Montserrat-Regular.ttf') format('truetype'),
         url('fonts/Montserrat-Regular.svg') format('svg');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Light.eot');
    src: local('☺'),
         url('fonts/Montserrat-Light.woff') format('woff'),
         url('fonts/Montserrat-Light.ttf') format('truetype'),
         url('fonts/Montserrat-Light.svg') format('svg');
    font-weight: 300;
    font-style: normal;
}


/* =========================================================
   VARIABLES
   ========================================================= */

:root {
    --gold: #d2a40f;
    --gold-light: #e4c012;
    --black: #0c0c0c;
    --dark: #161616;
    --gray: #282828;
    --light-gray: #858585;
    --white: #ffffff;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    background-color: transparent;
}

a,
button,
input,
textarea {
    font-family: inherit;
}

a:active,
a:hover {
    outline: 0;
}

img {
    max-width: 100%;
    border: 0;
}

button,
input,
textarea {
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

textarea {
    overflow: auto;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

ul {
    margin: 0;
    padding: 0;
}

::-moz-selection {
    background: var(--gold-light);
    color: #000;
}

::selection {
    background: var(--gold-light);
    color: #000;
}


/* =========================================================
   MAIN LAYOUT
   ========================================================= */

.l-viewport {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    box-shadow: 0 0 45px 5px rgba(0,0,0,.85);
}

.l-wrapper {
    position: relative;
    width: 1440px;
    max-width: 90%;
    height: 100%;
    margin: 0 auto;
}

.l-main-content {
    position: relative;
    width: 100%;
    height: 100%;
    list-style: none;
}

.l-section {
    position: absolute;
    width: 100%;
    height: 100%;
}


/* =========================================================
   SECTION
   ========================================================= */

.section {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity .4s ease-in-out,
        visibility 0s .4s;
}

.section--is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    transition:
        opacity .4s ease-in-out .4s;
}

.section--next {
    transform: translateY(-45px);
    transition: transform .4s ease-in-out;
}

.section--prev {
    transform: translateY(45px);
    transition: transform .4s ease-in-out;
}


/* =========================================================
   DEVICE NOTIFICATION
   ========================================================= */

.device-notification {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--black);
    z-index: 100;
}

.device-notification--logo {
    display: flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
}

.device-notification--logo img {
    width: 45px;
    height: auto;
}

.device-notification--logo p {
    margin: 0 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.device-notification--message {
    width: 70%;
    margin: 30px 0 0;
    font-weight: 700;
    text-align: center;
}


/* =========================================================
   HEADER
   ========================================================= */

.header {
    position: absolute;
    top: 0;
    left: 0;

    display: flex;

    width: 100%;
    height: 70px;

    align-items: center;
    justify-content: space-between;

    z-index: 10;
}


/* LOGO */

.header--logo {
    display: flex;
    align-items: center;

    color: var(--white);
    text-decoration: none;
}

.header--logo img {
    width: auto;
    max-width: 48px;
    max-height: 48px;
}

.header--logo p {
    margin: 0 0 0 10px;

    font-size: 16px;
    font-weight: 700;

    text-transform: uppercase;
}


/* =========================================================
   HAMBURGER
   ========================================================= */

/*
   IMPORTANT:
   These properties remove the browser's default
   white button background/border.
*/

.header--nav-toggle {
    display: flex;

    width: 50px;
    height: 50px;

    padding: 0;
    margin: 0;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: transparent;
    border: 0;
    border-radius: 0;

    color: var(--white);

    cursor: pointer;

    -webkit-appearance: none;
    appearance: none;

    outline: none;
}


/* Middle line + top/bottom lines */

.header--nav-toggle span,
.header--nav-toggle::before,
.header--nav-toggle::after {
    content: "";

    position: relative;

    display: block;

    width: 16px;
    height: 2px;

    padding: 0;
    margin: 0;

    background-color: var(--white);

    border: 0;

    transition:
        width .2s ease-in-out,
        background-color .2s ease-in-out,
        transform .2s ease-in-out;
}


/* Top line */

.header--nav-toggle::before {
    bottom: 5px;
    width: 23px;
}


/* Bottom line */

.header--nav-toggle::after {
    top: 5px;
    width: 23px;
}


/* Hover */

.header--nav-toggle:hover span {
    width: 23px;
}

.header--nav-toggle:hover::before,
.header--nav-toggle:hover::after {
    width: 16px;
}


/* Keyboard focus */

.header--nav-toggle:focus {
    outline: none;
}


/* =========================================================
   HEADER CTA
   ========================================================= */

.header--cta {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    padding: 0 20px;

    line-height: 30px;

    color: var(--white);
    text-decoration: none;

    font-weight: 700;
    text-transform: uppercase;

    background: var(--gold);

    border: 0;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .4s ease-in-out,
        visibility 0s .4s;
}

.header--cta.is-active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   SIDE NAV
   ========================================================= */

.l-side-nav {
    position: absolute;
    left: 0;

    display: flex;

    height: 100%;

    align-items: center;
}

.l-side-nav::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 0;

    transform: translateY(-50%);

    width: 2px;
    height: 70%;

    max-height: 750px;

    background: #555;

    opacity: .35;

    z-index: 10;
}

.side-nav {
    position: relative;

    display: flex;

    width: 100px;
    height: 70%;

    max-height: 750px;

    flex-direction: column;
    justify-content: space-around;

    list-style-position: inside;

    z-index: 10;
}

.side-nav > li {
    position: relative;

    top: -5px;

    color: var(--white);

    font-size: 6px;

    cursor: pointer;
}

.side-nav > li span {
    position: relative;

    top: 3px;
    left: 10px;

    color: var(--white);

    font-size: 14px;
    font-weight: 300;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .4s ease-in-out;
}

.side-nav > li::before {
    position: absolute;

    top: 3px;
    left: 10px;

    color: #555;

    font-size: 14px;
    font-weight: 300;
}

.side-nav li:nth-child(1)::before {
    content: "01";
}

.side-nav li:nth-child(2)::before {
    content: "02";
}

.side-nav li:nth-child(3)::before {
    content: "03";
}

.side-nav li:nth-child(4)::before {
    content: "04";
}

.side-nav li:nth-child(5)::before {
    content: "05";
}

.side-nav li.is-active {
    color: var(--gold);
}

.side-nav li.is-active span {
    opacity: 1;
    visibility: visible;
}

.side-nav li.is-active::before {
    left: -33px;
    color: var(--white);
}


/* =========================================================
   COMMON SECTION WIDTH
   ========================================================= */

.intro,
.work,
.about,
.hire {
    position: relative;

    display: flex;

    width: 900px;
    max-width: 75%;
    height: 100%;

    flex-direction: column;
    justify-content: center;

    margin: 0 auto;
}


/* =========================================================
   HOME
   ========================================================= */

.intro--banner {
    position: relative;
    height: 475px;
}

.intro--banner::before {
    content: "";

    position: absolute;

    bottom: 20px;
    left: -15px;
    right: 0;

    height: 2px;

    background: var(--gray);
}

.intro--banner::after {
    content: "";

    position: absolute;

    bottom: 18px;
    left: 0;

    width: 30px;
    height: 4px;

    background: var(--gold);
}

.intro--banner h1 {
    position: relative;

    margin-bottom: 25px;

    font-size: 68px;
    font-weight: 900;
    line-height: 1;

    z-index: 1;
}

.intro--banner p {
    max-width: 500px;
}

.intro--banner button {
    position: relative;

    padding: 5px 17px 5px 12px;

    color: var(--white);

    font-weight: 700;
    text-transform: uppercase;

    background: transparent;

    border: 0;
}

.intro--banner button .btn-background {
    position: absolute;

    top: 0;
    left: 23px;
    right: 0;

    height: 100%;

    background: var(--gold);

    z-index: -1;

    transition: left .2s ease-in-out;
}

.intro--banner button:hover .btn-background {
    left: 0;
}

.intro--banner button svg {
    position: relative;

    left: 5px;

    width: 15px;

    fill: var(--white);
}

.intro--banner img {
    position: absolute;

    right: -12px;
    bottom: 21px;

    max-width: none;
}

.intro--options {
    display: flex;

    justify-content: space-between;

    margin: 0;
    padding: 0;

    list-style: none;
}

.intro--options > a {
    max-width: 250px;

    color: var(--gray);
    text-decoration: none;

    transition: color .2s ease-in-out;
}

.intro--options > a:hover {
    color: var(--white);
}

.intro--options h2 {
    font-size: 16px;
    text-transform: uppercase;
}

.intro--options p {
    margin-bottom: 0;
}


/* =========================================================
   SERVICES
   ========================================================= */

.work {
    width: 900px;
}

.work h2 {
    margin-bottom: 20px;
    font-size: 30px;
    text-align: center;
}

.work--lockup {
    position: relative;
}

.work--lockup .slider {
    position: relative;

    display: flex;

    width: 80%;
    min-height: 390px;

    margin: 0 auto;

    list-style: none;
}

.work--lockup .slider--item {
    position: absolute;
    display: none;
    text-align: center;
}

.work--lockup .slider--item a {
    color: #858585;
    text-decoration: none;
}

.work--lockup .slider--item-title {
    margin-top: 10px;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
}

.work--lockup .slider--item-description {
    display: none;

    max-width: 250px;

    margin: 0 auto;
}

.work--lockup .slider--item-image {
    width: 150px;
    height: 150px;

    margin: 0 auto;

    border-radius: 50%;

    overflow: hidden;
}

.work--lockup .slider--item-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.work--lockup .slider--item-left {
    top: 50%;
    left: 0;

    transform: translateY(-50%);

    display: block;
}

.work--lockup .slider--item-right {
    top: 50%;
    right: 0;

    transform: translateY(-50%);

    display: block;
}

.work--lockup .slider--item-center {
    position: relative;

    top: 30px;
    left: 50%;

    transform: translateX(-50%);

    display: block;
}

.work--lockup .slider--item-center a {
    color: var(--white);
}

.work--lockup .slider--item-center .slider--item-title {
    margin-top: 25px;
    font-size: 16px;
}

.work--lockup .slider--item-center .slider--item-description {
    display: block;
}

.work--lockup .slider--item-center .slider--item-image {
    width: 300px;
    height: 300px;
}

.work--lockup .slider--next,
.work--lockup .slider--prev {
    position: absolute;

    top: 160px;

    display: flex;

    width: 50px;
    height: 50px;

    align-items: center;
    justify-content: center;

    padding: 0;

    background: var(--gray);

    border: 0;
    border-radius: 50%;
}

.work--lockup .slider--next {
    right: 0;
}

.work--lockup .slider--prev {
    left: 0;
}

.work--lockup .slider--next svg,
.work--lockup .slider--prev svg {
    width: 20px;
    fill: var(--white);
}


/* =========================================================
   ABOUT
   ========================================================= */

.about--banner {
    position: relative;
    height: 475px;
}

.about--banner::before {
    content: "";

    position: absolute;

    top: 20px;
    left: 200px;

    transform: rotate(-25deg);

    border: 5px solid var(--gold);
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.about--banner::after {
    content: "";

    position: absolute;

    top: 75px;
    left: 400px;

    transform: rotate(45deg);

    width: 10px;
    height: 10px;

    background: var(--gold);
}

.about--banner h2 {
    position: relative;

    margin-top: 35px;

    font-size: 68px;
    font-weight: 900;
    line-height: 1;

    z-index: 1;
}

.about--banner h2::before {
    content: "";

    position: absolute;

    top: 60px;
    left: 268px;

    width: 30px;
    height: 30px;

    background: var(--gold);
    border-radius: 50%;
}

.about--banner h2::after {
    content: "";

    position: absolute;

    top: 255px;
    left: 255px;

    width: 10px;
    height: 10px;

    background: var(--gold);
}

.about--banner p {
    max-width: 500px;
}

.about--banner a {
    padding: 5px 17px 5px 0;

    color: var(--white);
    text-decoration: none;

    font-weight: 700;
    text-transform: uppercase;
}

.about--banner a svg {
    position: relative;

    left: 5px;

    width: 15px;

    fill: var(--white);

    transition: left .2s ease-in-out;
}

.about--banner a:hover svg {
    left: 10px;
}

.about--banner img {
    position: absolute;

    right: -12px;
    bottom: -90px;

    max-width: none;
}

.about--options {
    display: flex;

    max-width: 600px;

    justify-content: space-between;

    list-style: none;
}

.about--options > a {
    position: relative;

    width: 150px;
    height: 75px;

    color: var(--white);
    text-decoration: none;

    border: 10px solid var(--gold);

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about--options > a:nth-child(1) {
    background-image: url("../img/about-winners.jpg");
}

.about--options > a:nth-child(2) {
    background-image: url("../img/about-philosophy.jpg");
}

.about--options > a:nth-child(3) {
    background-image: url("../img/about-history.jpg");
}

.about--options h3 {
    position: absolute;

    bottom: -38px;
    left: 10px;

    font-size: 16px;
    text-transform: uppercase;

    transition: bottom .2s ease-in-out;
}

.about--options > a:hover h3 {
    bottom: -50px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-image: url("../img/contact-visual.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contact--lockup {
    position: relative;

    display: flex;

    width: 900px;
    max-width: 75%;
    height: 100%;

    align-items: center;
    justify-content: flex-end;

    margin: 0 auto;
}

.contact--lockup .modal {
    padding: 45px;

    text-align: center;

    background: var(--black);

    box-shadow: 0 0 30px 0 rgba(0,0,0,.75);
}

.contact--lockup .modal--information p,
.contact--lockup .modal--information a {
    display: block;

    margin: 14px 0;

    color: var(--white);
    text-decoration: none;

    font-weight: 700;
}

.contact--lockup .modal--information p {
    margin-top: 0;
}

.contact--lockup .modal--options {
    margin: 0;
    padding: 0;

    list-style: none;
}

.contact--lockup .modal--options > li {
    width: 130px;

    margin: 0 auto 25px;

    background: var(--gold);
}

.contact--lockup .modal--options > li:last-child {
    margin-bottom: 0;
}

.contact--lockup .modal--options a {
    display: block;

    width: 100%;

    padding: 8px 0;

    color: var(--white);
    text-decoration: none;

    font-weight: 700;
}


/* =========================================================
   PROJECT REQUEST
   ========================================================= */

.hire {
    width: 900px;
}

.hire h2 {
    margin-bottom: 20px;

    font-size: 30px;

    text-align: center;
}

.work-request {
    display: flex;

    width: 100%;

    flex-direction: column;
    align-items: center;

    color: var(--white);
}

.work-request--options {
    display: flex;

    width: 100%;

    flex-direction: column;
    align-items: center;

    margin: 30px 0;
}

.work-request--options .options-a {
    display: flex;

    width: 100%;

    justify-content: space-between;
}

.work-request--options .options-b {
    display: flex;

    width: 72%;

    flex-wrap: wrap;
    justify-content: space-around;
}

.work-request--options label {
    display: block;

    width: 200px;

    margin-bottom: 30px;

    line-height: 50px;

    font-size: 16px;
    font-weight: 700;

    text-align: center;

    border: 2px solid var(--white);

    cursor: pointer;

    transition:
        background .2s ease-in-out,
        border-color .2s ease-in-out;
}

.work-request--options input[type="checkbox"] {
    display: none;
}

.work-request--options input[type="checkbox"]:checked + label {
    background: var(--gold);
    border-color: var(--gold);
}

.work-request--information {
    display: flex;

    width: 100%;

    justify-content: space-between;

    margin-bottom: 60px;
}

.work-request--information .information-name,
.work-request--information .information-email {
    position: relative;

    width: 45%;
    height: 50px;

    font-size: 30px;
    font-weight: 300;
}

.work-request--information input[type="text"],
.work-request--information input[type="email"] {
    width: 100%;

    padding: 0 0 5px;

    color: var(--white);

    background: transparent;

    border: 0;
    border-bottom: 1px solid var(--white);

    border-radius: 0;
}

.work-request--information input:focus {
    outline: none;
}

.work-request--information label {
    position: absolute;

    top: 0;
    left: 0;

    pointer-events: none;

    transition:
        top .2s ease-in-out,
        font-size .2s ease-in-out;
}

.work-request--information input:focus + label,
.work-request--information input.has-value + label {
    top: -15px;

    font-size: 14px;
}

.work-request input[type="submit"] {
    width: 400px;
    max-width: 100%;

    line-height: 50px;

    color: var(--white);

    font-size: 16px;
    font-weight: 700;

    text-transform: uppercase;

    background: var(--gold);

    border: 0;
}

.work-request input[type="submit"]:focus {
    outline: none;
}


/* =========================================================
   PERSPECTIVE / MENU
   ========================================================= */

.perspective {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;
}

.perspective--modalview {
    position: fixed;
    perspective: 1500px;
}

.container {
    position: relative;

    min-height: 100%;

    transform:
        translateZ(0)
        translateX(0)
        rotateY(0deg);

    outline: 30px solid var(--gold);

    transition: transform .4s;
}

.modalview .container {
    position: absolute;

    width: 100%;
    height: 100%;

    overflow: hidden;

    backface-visibility: hidden;
}

.effect-rotate-left .container {
    transform-origin: 0% 50%;
}

.effect-rotate-left--animate .container {
    transform:
        translateZ(-1800px)
        translateX(-50%)
        rotateY(45deg);

    outline: 30px solid var(--gold);
}


/* =========================================================
   OUTER NAV
   ========================================================= */

.outer-nav {
    position: absolute;

    top: 50%;
    left: 55%;

    transform: translateY(-50%);

    transform-style: preserve-3d;

    margin: 0;
    padding: 0;

    list-style: none;

    text-align: center;

    visibility: hidden;

    transition: visibility 0s .2s;

    z-index: 12;
}

.outer-nav.is-vis {
    visibility: visible;
}

.outer-nav--return {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: none;

    cursor: pointer;

    z-index: 11;
}

.outer-nav--return.is-vis {
    display: block;
}

.outer-nav > li {
    position: relative;

    transform:
        translateX(350px)
        translateZ(-1000px);

    font-size: 55px;
    font-weight: 900;

    opacity: 0;

    cursor: pointer;

    transition:
        opacity .2s,
        transform .2s;
}

.outer-nav > li.is-vis {
    transform:
        translateX(0)
        translateZ(0);

    opacity: 1;

    transition:
        opacity .4s,
        transform .4s;
}

.outer-nav > li::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -25%);

    width: 110%;
    height: 15px;

    background: var(--gold);

    opacity: 0;
}

.outer-nav > li.is-active::before {
    opacity: 1;
}

.outer-nav li.is-vis:nth-child(2) {
    transition-delay: .04s;
}

.outer-nav li.is-vis:nth-child(3) {
    transition-delay: .08s;
}

.outer-nav li.is-vis:nth-child(4) {
    transition-delay: .12s;
}

.outer-nav li.is-vis:nth-child(5) {
    transition-delay: .16s;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1180px) {

    .l-side-nav {
        display: none;
    }

    .intro,
    .work,
    .about,
    .hire {
        max-width: 100%;
    }

    .contact--lockup {
        max-width: 90%;
    }
}


@media (max-width: 900px) {

    .intro--banner {
        height: 380px;
    }

    .intro--banner h1 {
        font-size: 55px;
    }

    .intro--banner img {
        width: 430px;
    }

    .intro--options > a {
        margin-right: 30px;
    }

    .intro--options > a:last-child {
        margin-right: 0;
    }

    .work--lockup .slider--item-image {
        width: 120px;
        height: 120px;
    }

    .work--lockup .slider--item-center .slider--item-image {
        width: 240px;
        height: 240px;
    }

    .work--lockup .slider--next,
    .work--lockup .slider--prev {
        top: 130px;
    }
}


@media (max-width: 767px) {

    .header--cta {
        display: none;
    }

    .intro--banner {
        height: 305px;
    }

    .intro--banner h1 {
        font-size: 44px;
    }

    .intro--banner img {
        width: 330px;
    }

    .intro--options {
        display: block;
    }

    .intro--options > a {
        display: block;
        max-width: 100%;
        margin: 0 0 30px;
    }

    .intro--options > a:last-child {
        margin-bottom: 0;
    }

    .about--banner {
        height: 305px;
    }

    .about--banner h2 {
        margin-top: 10px;
        font-size: 44px;
    }

    .about--banner img {
        width: 315px;
    }

    .contact--lockup {
        justify-content: center;
    }

    .work--lockup .slider {
        width: 75%;
    }

    .work--lockup .slider--item-image {
        width: 90px;
        height: 90px;
    }

    .work--lockup .slider--item-center .slider--item-image {
        width: 190px;
        height: 190px;
    }

    .work--lockup .slider--next,
    .work--lockup .slider--prev {
        top: 105px;
    }

    .work-request--options {
        flex-direction: row;
        justify-content: space-around;
    }

    .work-request--options .options-a,
    .work-request--options .options-b {
        display: block;
        width: auto;
    }

    .outer-nav > li {
        font-size: 44px;
    }
}


@media (max-width: 600px) {

    .intro--banner {
        height: 360px;
    }

    .intro--banner h1 {
        font-size: 55px;
    }

    .intro--banner img {
        display: none;
    }

    .about--banner {
        height: auto;
    }

    .about--banner img {
        display: none;
    }

    .about--options {
        display: none;
    }

    .work--lockup .slider {
        width: auto;
    }

    .work--lockup .slider--item-left,
    .work--lockup .slider--item-right {
        display: none;
    }

    .work-request--options {
        margin: 20px 0;
    }

    .work-request--options label {
        width: 150px;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .work-request--information {
        margin-bottom: 30px;
    }

    .work-request--information .information-name,
    .work-request--information .information-email {
        height: 40px;
        font-size: 24px;
    }

    .outer-nav > li {
        font-size: 34px;
    }
}


@media (max-width: 600px) and (max-height: 750px) {

    .intro--banner {
        height: auto;
    }

    .intro--banner::before,
    .intro--banner::after {
        display: none;
    }

    .intro--banner h1 {
        margin-top: 0;
    }

    .intro--options {
        display: none;
    }
}


@media (max-width: 359px) {

    .device-notification {
        display: flex;
    }
}


@media (max-width: 736px) and (min-width: 360px) and (orientation: landscape) {

    .device-notification {
        display: flex;
    }
}


@media (max-width: 767px) and (min-width: 601px) and (max-height: 680px) {

    .device-notification {
        display: flex;
    }
}


@media (max-width: 600px) and (min-width: 480px) and (max-height: 580px) {

    .device-notification {
        display: flex;
    }
}