/*
┏━━━━━━━━━━━━━━━━━━━━━━━━━┓
|  Light color: #96c0ff   |
|  Dark color: #128dff    |
|  Grey: #999             |
|  Light grey: #f4f4f4    |
|  Dark grey: #777        |
┗━━━━━━━━━━━━━━━━━━━━━━━━━┛

┏━━━━━━━━━━━━━┓
|    BASIC    |
┗━━━━━━━━━━━━━┛
*/
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,700&display=swap");

@font-face {
    font-family: Photon;
    src: url('../fonts/photon.woff');
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

html,
body {
    background-color: #000;
    color: #999;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
}

/*  ━━━━━ HEADINGS ━━━━━  */
h1,
h2,
h3 {
    font-weight: 300;
    text-transform: uppercase;
}

h2 {
    font-size: 180%;
    font-weight: 400;
}

h2::after {
    display: block;
    width: 60px;
    height: 2px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    background-color: #96c0ff;
    content: " ";
}

h3 {
    font-size: 85%;
}

h4 {
    font-size: 100%;
    font-weight: 400;
    color: #999;
    text-align: center;
}

h1,
h2,
h3 {
    color: #fff;
}

p {
    font-size: 90%;
    color: #fff;
}

figure {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    /* background: #fff; */
    background: transparent;
    overflow: hidden;
}

figure img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

figure:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

/*  ━━━━━ REUSABLE ━━━━━  */
a:hover,
a:visited,
a:link,
a:active {
    text-decoration: none;
}

.row {
    max-width: 1140px;
    margin: 0 auto;
}

.main-color {
    color: #96c0ff;
}

.sec-color {
    color: #128dff;
}

.white {
    color: #fff;
}

.grey {
    color: #777;
}

.center {
    text-align: center;
}

.clear {
    clear: both;
}

.fixed {
    position: fixed;
}

.hide {
    display: none;
}

.mrg-bt-50 {
    margin-bottom: 50px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.my-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.my-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.mx-10 {
    margin: 0 10px;
}

.mx-20 {
    margin: 0 20px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 10px;
}

.py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.px-10 {
    padding: 0 10px;
}

.px-20 {
    padding: 0 20px;
}

.prewrap {
    white-space: pre-wrap;
}

.d-inline-block {
    display: inline-block;
}

/*  ━━━━━ BUTTON ━━━━━  */
button {
    font-size: 20px;
    background: rgba(0, 0, 0, 0);
    color: #fff;
    border: 2px solid #128dff;
    padding: 10px 45px;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

button::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 0%;
    top: 0;
    left: 0;
    background: #128dff;
    transition: all 0.5s ease-out;
    z-index: -5;
}

button:hover::before {
    width: 100%;
}

#backtotop {
    display: inline-block;
    background-color: #128dff;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#backtotop::after {
    content: url("../images/up.webp");
    line-height: 62px;
}

#backtotop:hover {
    cursor: pointer;
    background-color: #333;
}

#backtotop.show {
    opacity: 1;
    visibility: visible;
}

/*  ━━━━━ ICON ━━━━━  */
i {
    border: solid #fff;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    margin: 0 0 3px 3px;
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

/*  ━━━━━ CONTENT BODY ━━━━━  */
#content {
    height: 100%;
    width: 100%;
    background-size: 100% 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 1)),
        url("../images/background.webp");
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Cookie -- */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    padding: 20px;
    width: 100%;
    background-color: #141414;
    color: #ccc;
    text-align: center;
}

.cookie-ok {
    margin-left: 3%;
}

/*
┏━━━━━━━━━━━━━━┓
|    HEADER    |
┗━━━━━━━━━━━━━━┛
*/
nav {
    position: relative;
}

#slides {
    position: absolute;
    height: 100vh;
    width: 100%;
    background-size: 100% 100%;
    background-image: linear-gradient(to top,
            rgba(0, 0, 0, 1),
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.7)),
        url("../images/home/1.webp");
    background-size: cover;
    /* background-position: center; */
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 0;
}

#img-1 {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6)), url("../images/home/1.webp");
}

#img-2 {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6)), url("../images/home/2.webp");
}

#img-3 {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6)), url("../images/home/3.webp");
}

#img-4 {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6)), url("../images/home/4.webp");
}

#img-5 {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6)), url("../images/home/5.webp");
}

.header-content {
    height: 185px;
}

/*  ━━━━━ MAIN NAV ━━━━━   */
.main-nav {
    position: absolute;
    list-style: none;
    margin-top: 145px;
    z-index: 10;
}

.main-nav li {
    display: inline-block;
    margin-left: 50px;
    position: relative;
}

.main-nav li:first-child {
    margin-left: 0px;
}

.main-nav li a:link,
.main-nav li a:visited {
    font-weight: 400;
    padding: 8px 0;
    margin: 0;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
}

.main-nav>li a:hover,
.main-nav>li a:active,
#films h3:hover,
#photos h3:hover,
#graphics h3:hover,
#services h2.title:hover,
#info .contact p:nth-of-type(2):hover {
    cursor: pointer;
    color: #96c0ff;
}

.nav-center {
    width: 750px;
    margin: 0 auto;
}

.full-line {
    position: absolute;
    top: 185px;
    width: 100%;
    height: 1px;
    background: #ccc;
    opacity: 30%;
}

.logo-container {
    width: 100%;
    top: 20px;
    position: absolute;
    text-align: center;
}

.logo {
    font-family: 'Photon';
    font-size: 43px;
    font-weight: 900;
    color: #e2eef9;
    text-shadow: 0 0 0.05em #fff, 0 0px 5px #0460D9, 0 0 0.07em #0460D9, 0 0 0.2em #0460D9;
}

.logo:hover {
    text-shadow: 0 0 0.06em #fff, 0 0px 10px #0460D9, 0 0 0.15em #0460D9, 0 0 0.5em #0460D9;
}

.font-effect {
    margin-left: -38px;
}

.logo-link {
    color: inherit;
}

.logo-P:before {
    content: "\e900";
    letter-spacing: -25px;
}

.logo-H:before {
    content: "\e901";
    letter-spacing: -25px;
}

.logo-O:before {
    content: "\e902";
    letter-spacing: -28px;
}

.logo-T:before {
    content: "\e903";
    letter-spacing: -28px;
}

.logo-O-2:before {
    content: "\e902";
    letter-spacing: -35px;
}

.logo-semi:before {
    content: "\e904";
    letter-spacing: -35px;
}

.logo-N:before {
    content: "\e905";
    letter-spacing: -25px;
}

.logo span.font-effect {
    animation: flicker 3s infinite;
}

.logo span.font-effect:hover {
    cursor: pointer;
    opacity: 1;
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

.logo span.blink {
    animation: blink linear infinite 7s;
}

.logo span.blink:nth-child(3) {
    animation: blink linear infinite 4s;
}

@keyframes blink {
    78% {
        color: inherit;
        text-shadow: inherit;
    }

    79% {
        color: #333;
    }

    80% {

        text-shadow: none;
    }

    81% {
        color: inherit;
        text-shadow: inherit;
    }

    82% {
        color: #333;
        text-shadow: none;
    }

    83% {
        color: inherit;
        text-shadow: inherit;
    }

    92% {
        color: #333;
        text-shadow: none;
    }

    92.5% {
        color: inherit;
        text-shadow: inherit;
    }
}

@keyframes flicker {
    from {
        opacity: 1;
    }

    4% {
        opacity: 0.9;
    }

    8% {
        opacity: 1;
    }

    11% {
        opacity: 0.95;
    }

    31% {
        opacity: 0.8;
    }

    35% {
        opacity: 0.95;
    }

    39% {
        opacity: 0.8;
    }

    40% {
        opacity: 1;
    }

    51% {
        opacity: 0.85;
    }

    55% {
        opacity: 0.95;
    }

    59% {
        opacity: 0.85;
    }

    71% {
        opacity: 0.9;
    }

    74% {
        opacity: 0.9;
    }

    79% {
        opacity: 0.99;
    }

    to {
        opacity: 1;
    }
}

.nav-quote {
    width: 100%;
    top: 10px;
    position: absolute;
}

.nav-quote {
    top: 80px;
}

.nav-quote img {
    width: 231px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*  ━━━━━ MOBILE NAV ━━━━━   */
.mobile-nav-icon {
    position: absolute;
    top: 21px;
    right: 5%;
    cursor: pointer;
    display: none;
    z-index: 3;
}

.mobile-nav-icon img {
    width: 30px;
}

/*
┏━━━━━━━━━━━━━━┓
|    SOCIAL    |
┗━━━━━━━━━━━━━━┛
*/
.social {
    position: absolute;
    width: 100%;
    bottom: 40px;
    text-align: center;
}

.social img,
.social .img {
    display: inline-block;
    cursor: pointer;
}

.social a {
    margin-right: 30px;
}

#behance {
    margin-bottom: -5px;
}

/*
┏━━━━━━━━━━━━━━━━━━━━━┓
|    SECTION GLOBAL   |
┗━━━━━━━━━━━━━━━━━━━━━┛
*/
section h2 {
    margin: 50px 0 25px 0;
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

/*
┏━━━━━━━━━━━━━━━━┓
|    ABOUT ME    |
┗━━━━━━━━━━━━━━━━┛
*/
#about-me {
    position: relative;
}

#about-me h2 {
    margin-bottom: 20px;
}

#about-me h3 {
    font-size: 140%;
    text-align: center;
}

#about-me h4 {
    font-size: 120%;
    margin-bottom: 20px;
}

#photos h3,
#films h3,
#graphics h3 {
    font-size: 110%;
    text-align: center;
}

#about-me h3::after,
#graphics h3::after,
#photos h3::after,
#films h3::after {
    display: block;
    width: 125px;
    height: 2px;
    margin: 0 auto;
    margin-top: 10px;
    background-color: #96c0ff;
    content: " ";
}

.work h4 {
    color: #fff;
    text-align: left;
}

#about-me .work button {
    margin-bottom: 20px;
}

#about-me a:link,
#about-me a:visited {
    color: #96c0ff;
    word-wrap: break-word;
}

#about-me p {
    text-align: justify;
    margin: 20px 50px;
}

#about-me ul {
    list-style: none;
    text-align: left;
}

#about-me li {
    margin: 10px;
}

#about-me li:last-child {
    margin-bottom: 25px;
}

#about-me .span-2-of-3 {
    margin-top: 20px;
}

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

#David {
    display: block;
    margin: 0 auto;
    height: auto;
    max-width: 300px;
    width: 100%;
}

#about-me .work {
    margin: 30px 2% 2% 2%;
}

/*
┏━━━━━━━━━━━━━┓
|    PHOTO    |
┗━━━━━━━━━━━━━┛
*/
.photos {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

#photos h3 {
    padding-bottom: 20px;
}

/*
┏━━━━━━━━━━━━┓
|    FILM    |
┗━━━━━━━━━━━━┛
*/
.videos {
    width: 100%;
    height: 275px;
    display: block;
    object-fit: cover;
}

#films h3 {
    padding-bottom: 20px;
}

/*
┏━━━━━━━━━━━━━━━━┓
|    GRAPHICS    |
┗━━━━━━━━━━━━━━━━┛
*/
.graphics {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
}

#graphics h3 {
    padding-bottom: 20px;
}

/*
┏━━━━━━━━━━━━━━━━┓
|    SERVICES    |
┗━━━━━━━━━━━━━━━━┛
*/
.title {
    margin-bottom: 15px;
    font-size: 130%;
}

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

.attention {
    font-size: 110%;
    font-weight: bold;
    margin: 30px 0 60px 0;
    color: #fff;
}

.srvc:link,
.srvc:visited {
    font-weight: bold;
    color: #128dff;
}

.srvc:active,
.srvc:hover {
    color: #fff;
}

/*#services .services-links {
    margin: 20px 0 0 5%;
    font-size: 95%;
}*/

#services ul {
    /*margin: 45px 0 40px 0;*/
    list-style: none;
    text-align: left;
    font-weight: 500;
}

#services li>ul>li {
    list-style: circle;
    margin-bottom: 10px;
}

#services li {
    list-style-image: url('../images/icons/check.png');
    color: white;
    margin-bottom: 25px;
    margin-left: 25px;
    text-align: left;
}

#services img {
    width: 18px;
    padding-right: 5px;
}

#services span,
#services strong {
    font-weight: bold;
    color: #128dff;
}

#services p {
    font-size: 85%;
    color: #777;
    font-weight: 500;
    margin-top: 5px;
}

.secondary,
#services ul>li>ul {
    margin-left: 50px;
    font-size: 85%;
}

ul.secondary>li:first-child,
#services ul>li>ul>li:first-child {
    margin-top: 10px;
}

/*
┏━━━━━━━━━━━━━━━┓
|    CONTACT    |
┗━━━━━━━━━━━━━━━┛
*/

#contact h2 {
    margin-bottom: 25px;
}

#contact h3 {
    font-weight: 500;
    font-size: 125%;
}

#contact h4 {
    margin: 20px 0;
}

#contact .span-1-of-3 {
    padding-left: 20px;
}

#contact .span-1-of-3 .row {
    margin: 25px 0;
}

#contact .span-1-of-3 .row h3 {
    margin-bottom: 10px;
}

.contact-info {
    text-transform: uppercase;
    color: #fff;
    font-size: 80%;
}

.input {
    position: relative;
    margin: auto;
    width: 100%;
    /* max-width: 90%; */
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="password"] {
    -webkit-appearance: none;
    width: 100%;
    border: 0;
    font-family: inherit;
    padding: 12px 0;
    height: 48px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 2px solid #96c0ff;
    background: none;
    border-radius: 0;
    color: #fff;
    transition: all 0.15s ease;
}

.label {
    position: absolute;
    top: 3px;
    left: 0;
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    transform-origin: 0 0;
    transition: all 0.2s ease;
}

#contact input:focus+.label,
#contact input:not(:placeholder-shown)+.label {
    transform: translateY(-26px) scale(0.75);
}

#message {
    color: white;
    display: block;
    font-size: 16px;
    font-weight: 300;
    border-radius: 2px;
    margin: 0;
    border: none;
    height: 150px;
    width: 95%;
    background: rgba(0, 0, 0, 0);
    transition: padding-top 0.2s ease, margin-top 0.2s ease;
    overflow-x: hidden;
    border-bottom: 2px solid #96c0ff;
    padding-top: 10px;
}

.message {
    font-weight: 500;
    color: white;
    margin-bottom: 20px;
}

.contact-form .row:first-of-type {
    padding-bottom: 30px;
}

#contact .span-2-of-3 .row:last-of-type {
    padding-top: 50px;
}

.btn {
    float: right;
    padding-right: 29px;
}

.form-messages {
    margin: 0 auto;
    width: 35%;
    padding: 10px;
    color: #e8e8e8;
    margin-bottom: 20px;
    text-align: center;
}

.success {
    border: solid 3px rgba(38, 191, 68, 0.8)
}

.error {
    border: solid 3px rgba(209, 46, 46, 0.8)
}

/*
┏━━━━━━━━━━━━━━━━━━━━━━━━━┓
|    IMPRESSUM SECTION    |
┗━━━━━━━━━━━━━━━━━━━━━━━━━┛
*/
#impressum h3 {
    margin: 0 50px;
    font-size: 140%;
}

#impressum h3::after {
    display: block;
    width: 280px;
    height: 2px;
    margin-top: 10px;
    background-color: #96c0ff;
    content: " ";
}

#impressum p {
    text-align: justify;
    margin: 20px 50px;
}

#impressum a:link,
#impressum a:visited {
    color: #128dff;
}

#impressum a:hover,
#impressum a:active {
    font-weight: bold;
    color: #96c0ff;
}

/*
┏━━━━━━━━━━━━━━━━━━━━━━━━━┓
|    GALLERIES SECTION    |
┗━━━━━━━━━━━━━━━━━━━━━━━━━┛
*/

.webshop-logos {
    max-width: 150px;
    max-height: 50px;
    padding-right: 25px;
    text-align: center;
}

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

#abstract-gallery .col:nth-child(3n + 4),
#business-gallery .col:nth-child(3n + 4),
#event-gallery .col:nth-child(3n + 4),
#nature-gallery .col:nth-child(3n + 4),
#portrait-gallery .col:nth-child(3n + 4),
#online-gallery .col:nth-child(3n + 4),
#branding-gallery .col:nth-child(3n + 4),
#product-gallery .col:nth-child(3n + 4) {
    margin-left: 0;
}

/*
┏━━━━━━━━━━━━━━━━━━━━━┓
|    ADMIN SECTION    |
┗━━━━━━━━━━━━━━━━━━━━━┛
*/

.admin-line {
    top: 130px;
}

.admin-button {
    font-size: 20px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0);
    color: #fff;
    border: 2px solid white;
    padding: 11px 45px 9px 45px;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.admin-back:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 0%;
    top: 0;
    left: 0;
    background: #777;
    transition: all 0.5s ease-out;
    z-index: -5;
}

.admin-button:hover::before,
.admin-button:active::before {
    width: 100%;
}

.admin-back:link,
.admin-back:visited {
    border: 2px solid #777;
}

.admin-delete:link,
.admin-delete:visited {
    border: 2px solid rgb(214, 24, 24);
}

.admin-delete:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 0%;
    top: 0;
    left: 0;
    background: rgb(214, 24, 24);
    transition: all 0.5s ease-out;
    z-index: -5;
}



/*
┏━━━━━━━━━━━━━━━━━━━━━━┓
|    FOOTER SECTION    |
┗━━━━━━━━━━━━━━━━━━━━━━┛
*/
#info {
    text-align: center;
    padding-top: 116px;
}

#info .contact p {
    font-size: 85%;
    margin-bottom: 15px;
}

#info .contact p:first-of-type {
    font-weight: 700;
}

#f-David {
    margin-bottom: 20px;
    max-width: 150px;
    border-radius: 50%;
    border: 2px solid #128dff;
}

.info h3::after {
    display: block;
    width: 60%;
    height: 1px;
    margin-left: auto;
    margin-right: auto;
    background-color: #128dff;
    content: " ";
}

.services-links {
    margin: 45px 0 40px 0;
    list-style: none;
    text-align: left;
    margin-left: 28%;
    font-weight: 500;
}

.services-links li {
    margin-bottom: 20px;
}

.services-links li a:link,
.services-links li a:visited {
    color: #fff;
}

.services-links li a:hover,
.services-links li a:active {
    cursor: pointer;
    color: #96c0ff;
}

.info .img {
    width: 25px;
    height: 25px;
    display: inline-block;
    cursor: pointer;
    transition-duration: 0.2s;
}

.info a {
    margin-right: 30px;
}

.info .img.behance {
    background: url("../images/icons/social/behance-white.png") no-repeat;
    background-size: 33px;
    height: 33px;
    width: 33px;
    margin-bottom: -5px;
}

.info .img.youtube {
    background: url("../images/icons/social/youtube-white.png") no-repeat;
    background-size: 31px;
    height: 31px;
    width: 31px;
    margin-bottom: -8px;
}

/*
┏━━━━━━━━━━━━━━┓
|    FOOTER    |
┗━━━━━━━━━━━━━━┛
*/
footer {
    font-size: 90%;
    width: 100%;
    padding: 15px;
    background-color: #000;
    color: #ccc;
    /* position: fixed; */
    bottom: 0;
}

footer p {
    font-size: 80%;
    color: #777;
}

/* WIDGET */
.eapps-instagram-feed-title {
    color: #fff;
    padding: 24px 0 !important;
}

/*
┏━━━━━━━━━━━━━━━┓
|    QUERIES    |
┗━━━━━━━━━━━━━━━┛
*/
/* Smaller than the 1140px rows: 1024px - 1200px */
@media only screen and (max-width: 1200px) {

    .col:first-child.facebook-responsive {
        margin: 1% 0 1% 1.6%;
    }

    .span-1-of-2.facebook-responsive {
        width: 100%;
    }

    #film-event .span-1-of-2:first-child,
    #film-business .span-1-of-2:first-child,
    #fiction .span-1-of-2:first-child,
    #documentary .span-1-of-2:first-child {
        margin-left: 0;
    }

    #film-event .span-1-of-2,
    #film-business .span-1-of-2,
    #fiction .span-1-of-2,
    #documentary .span-1-of-2 {
        width: 100%;
        margin: 3% 0;
    }

    .cookie-ok {
        margin-top: 10px;
    }
}

/* Big tablets: 768px - 1023px */
@media only screen and (max-width: 920px) {
    .row {
        width: 700px;
    }

    .span-1-of-3,
    .span-2-of-3 {
        width: 100%;
        margin: 20px 0;
    }

    .information {
        display: block;
    }

    #services .services-links {
        text-align: center;
        margin: 20px 0;
    }

    #services .secondary {
        margin-left: 0;
        list-style: none;
    }

    #info {
        padding-top: 50px;
    }

    #about-me p {
        margin: 20px;
    }

    #films .span-2-of-4:first-child {
        margin-left: 0;
    }

    #films .span-2-of-4 {
        width: 100%;
        margin: 3% 0;
    }

    #photos .span-1-of-5:first-child,
    #branding-gallery .span-1-of-5:first-child {
        margin-left: 0;
    }

    #photos .span-1-of-5,
    #branding-gallery .span-1-of-5 {
        width: 100%;
        margin: 3% 0;
    }

    .photos {
        height: 100%;
    }

    #graphics .span-1-of-4:first-child,
    #print .span-1-of-4:first-child,
    #product .span-1-of-4:first-child {
        margin-left: 0;
    }

    #graphics .span-1-of-4,
    #print .span-1-of-4,
    #product .span-1-of-4 {
        width: 100%;
        margin: 3% 0;
    }

    #contact .span-2-of-3 {
        padding-left: 20px;
    }

    #contact .btn {
        text-align: center;
    }
}

/* Small tablets: 481px - 767px */
@media only screen and (max-width: 767px) {
    .home {
        padding-right: 0;
    }

    .row {
        width: 550px;
    }

    h4 {
        margin-left: 10px;
        margin-right: 10px;
    }

    /*  ━━━━━ NAVIGATION ━━━━━   */
    .mobile-nav-icon {
        display: block;
    }

    .main-nav {
        display: none;
        float: left;
        margin: 60px 0 0 0;
        width: 100%;
        background: #00132c;
    }

    .main-nav li {
        display: block;
        margin-left: 30px;
        padding: 10px 0;
        border-bottom: 1px solid #808080;
        width: 85%;
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav li:first-child {
        margin-left: 30px;
    }

    .main-nav li a:link,
    .main-nav li a:visited {
        display: block;
        color: #fff;
        font-size: 100%;
    }

    .main-nav li a:hover,
    .main-nav li a:active {
        text-shadow: none;
        animation: none;
        font-weight: bold;
        color: #128dff;
    }

    .nav-center {
        width: auto;
    }

    .nav-quote {
        display: none;
    }

    .logo-container {
        z-index: 2;
        top: 0px !important;
        background: #0f2c56 !important;
        padding: 15px 0px;
    }

    .logo {
        font-size: 35px !important;
        text-shadow: 0 0 0.05em #fff, 0 0px 15px #0460D9 !important;
        letter-spacing: 5px;
    }

    .full-line,
    .admin-line {
        display: none;
    }

    .header-content {
        height: 75px;
    }

    #content {
        height: 100%;
    }

    .webshop-logos {
        display: block;
        margin: 0 auto;
        margin-top: 50px;
    }

    figure {
        width: 94%;
        margin: 0px 15px;
    }

}

/* Small phones: 0 - 480px */
@media only screen and (max-width: 581px) {
    .logo span.font-effect {
        animation: none;
    }

    .logo span.blink {
        animation: none;
    }

    .row {
        width: 100%;
    }

    #slides {
        height: 100%;
    }

    #slideshow .slide span#img-4 {
        background-position: unset;
    }

    .contact-form>.row>.span-2-of-4 {
        padding-bottom: 25px;
    }

    .col.facebook-responsive {
        margin: 1% 0 1% 1.6%;
        padding: 8px;
        width: 96%;
    }
}