/*
 * FONTS
 */
@font-face {
    font-family: 'Avant Garde';
    src: url('../fonts/avantgarde/avantgarde-extra-light.woff') format('woff'),
         url('../fonts/avantgarde/avantgarde-extra-light.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Avant Garde';
    src: url('../fonts/avantgarde/avantgarde-book.woff') format('woff'),
         url('../fonts/avantgarde/avantgarde-book.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Avant Garde';
    src: url('../fonts/avantgarde/avantgarde-medium.woff') format('woff'),
         url('../fonts/avantgarde/avantgarde-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Avant Garde';
    src: url('../fonts/avantgarde/avantgarde-demi.woff') format('woff'),
         url('../fonts/avantgarde/avantgarde-demi.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}


/*
 * ANIMATION
 */
@keyframes progress-bar-animation {
  0% { width: 0; }
  100% { width: 100%; }
}


/*
 * GENERAL
 */
html {
    box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    height: auto;
    min-height: 100%;
    font-size: 20px;
    font-weight: 400;
    font-family: "Avant Garde", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/*
 * HOMEPAGE NAV
 */
.homepage header.header-nav {
    width: 100%;
    z-index: 100;
    position: fixed;
    transition: background-color 0.2s ease-in-out;
}

.homepage header.header-nav.scrolled {
    background-color: #131313;
}

.homepage header.header-nav .mobile-nav {
    z-index: 100;
    height: 80px;
    text-align: left;
    position: relative;
}

.homepage header.header-nav .mobile-nav .brand {
    margin: 22px 20px;
    vertical-align: top;
    display: inline-block;
}

.homepage header.header-nav .mobile-nav .brand:before {
    content: "\e600";
    font-family: 'icomoon';
    font-size: 84px;
    line-height: 36px;
    display: block;
    color: #fff;
}

.homepage header.header-nav .mobile-nav .mobile-nav-toggle {
    float: right;
    width: 41px;
    height: 39px;
    padding: 9px 3px;
    position: relative;
    margin: 21px 17px 20px 10px;
}

.homepage header.header-nav .mobile-nav .mobile-nav-toggle .bar {
    right: 3px;
    width: 25px;
    height: 2px;
    display: block;
    position: absolute;
    margin-bottom: 8px;
    background-color: #fff;
    transition: transform 0.25s ease-in-out, top 0.1s, opacity 0.1s;
}

.homepage header.header-nav .mobile-nav .mobile-nav-toggle .bar:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.homepage header.header-nav .mobile-nav .mobile-nav-toggle .bar:nth-child(2) {
    top: 18px;
    opacity: 0;
}

.homepage header.header-nav .mobile-nav .mobile-nav-toggle .bar:last-child {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.homepage header.header-nav .mobile-nav .mobile-nav-toggle.collapsed .bar {
    transition: transform 0.15s ease-in-out, top 0.3s, opacity 0.1s;
}

.homepage header.header-nav .mobile-nav .mobile-nav-toggle.collapsed .bar:first-child,
.homepage header.header-nav .mobile-nav .mobile-nav-toggle.collapsed .bar:last-child {
    transform: translate(0) rotate(0);
}

.homepage header.header-nav .mobile-nav .mobile-nav-toggle.collapsed .bar:first-child {
    top: 8px;
    width: 35px;
}

.homepage header.header-nav .mobile-nav .mobile-nav-toggle.collapsed .bar:nth-child(2) {
    opacity: 1;
    width: 20px;
    margin-left: 15px;
}

.homepage header.header-nav .mobile-nav .mobile-nav-toggle.collapsed .bar:last-child {
    top: 28px;
    width: 30px;
    margin-left: 5px;
    margin-bottom: 0;
}

.homepage header.header-nav #nav-wrapper {
    position: fixed;
    transition: all 0s;
}

.homepage header.header-nav #nav-wrapper #nav .nav > li > a {
    font-weight: 400;
    letter-spacing: -0.33px;
    font-family: "Avant Garde", Helvetica, Arial, sans-serif;
}

.homepage header.header-nav #nav-wrapper #nav .nav > li > a.active {
    text-decoration: underline;
}

/*
 * CAROUSELS
 */
.homepage .main-carousel,
.homepage .description-carousel {
    height: auto;
    position: relative;
}

.homepage .main-carousel .carousel-items,
.homepage .description-carousel .carousel-items {
    position: relative;
}

.homepage .main-carousel .carousel-items .carousel-item,
.homepage .description-carousel .carousel-items .carousel-item {
    top: 0;
    opacity: 0;
    z-index: 5;
    width: 100%;
    position: absolute;
    background-size: cover;
    background-position: center;
    transition: opacity 0.8s ease-in-out;
}

.homepage .main-carousel .carousel-items .carousel-item.fade-out,
.homepage .description-carousel .carousel-items .carousel-item.fade-out {
    z-index: 10;
}

.homepage .main-carousel .carousel-items .carousel-item.active,
.homepage .description-carousel .carousel-items .carousel-item.active {
    opacity: 1;
    z-index: 15;
    position: relative;
}

.homepage .main-carousel .carousel-controls,
.homepage .description-carousel .carousel-controls {
    bottom: 0;
    width: 100%;
    z-index: 30;
}

.homepage .main-carousel .carousel-controls .carousel-control,
.homepage .description-carousel .carousel-controls .carousel-control {
    display: inline-block;
    vertical-align: middle;
}

.homepage .main-carousel .carousel-controls .carousel-control a,
.homepage .description-carousel .carousel-controls .carousel-control a {
    color: #fff;
    padding: 10px;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    vertical-align: middle;
    transition: color 0.2s ease-in-out;
}

.homepage .main-carousel .carousel-controls .carousel-control a:hover,
.homepage .main-carousel .carousel-controls .carousel-control a:focus,
.homepage .main-carousel .carousel-controls .carousel-control a:active,
.homepage .description-carousel .carousel-controls .carousel-control a:hover,
.homepage .description-carousel .carousel-controls .carousel-control a:focus,
.homepage .description-carousel .carousel-controls .carousel-control a:active {
    color: #ccc;
}

.homepage .main-carousel .carousel-controls .carousel-control .loading-bar,
.homepage .description-carousel .carousel-controls .carousel-control .loading-bar {
    width: 0;
    display: inline-block;
    vertical-align: middle;
    transition: width 0.6s;
}

.homepage .main-carousel .carousel-controls .carousel-control.active .loading-bar,
.homepage .description-carousel .carousel-controls .carousel-control.active .loading-bar {
    width: 70px;
    height: 1px;
    margin-right: 10px;
}

.homepage .main-carousel .carousel-controls .carousel-control.active .loading-bar:before,
.homepage .description-carousel .carousel-controls .carousel-control.active .loading-bar:before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background-color: #fff;
    animation: progress-bar-animation 7s linear;
    animation-fill-mode:both;
}


/*
 * HOMEPAGE CAROUSEL
 */
.homepage #hero-carousel #peter-gilmore-slide {background-image: url("../images/projects/work-hero-peter-gilmore.jpg");}
.homepage #hero-carousel #simon-johnson-slide {background-image: url("../images/projects/work-hero-simon-johnson.jpg");}
.homepage #hero-carousel #gumtree-slide {background-image: url("../images/projects/work-hero-gumtree-redesign.jpg");}

.homepage .main-carousel .carousel-items .carousel-item {
    height: 85vh;
}

.homepage .main-carousel .carousel-items .carousel-item .details {
    top: 50%;
    left: 50%;
    width: 90%;
    color: #fff;
    position: absolute;
    transform: translate(-50%, -50%);
}

.homepage .main-carousel .carousel-items .carousel-item .details .link,
.homepage .main-carousel .carousel-items .carousel-item .details .company {
    font-size: 20px;
    font-weight: 400;
    font-family: "Avant Garde", Helvetica, Arial, sans-serif;
}

.homepage .main-carousel .carousel-items .carousel-item .details .company {
    margin-bottom: 30px;
}

.homepage .main-carousel .carousel-items .carousel-item .details .description {
    font-size: 40px;
    font-weight: 200;
    margin-bottom: 30px;
    letter-spacing: -1.8px;
    font-family: "Avant Garde", Helvetica, Arial, sans-serif;
}

.homepage .main-carousel .carousel-items .carousel-item .details .link {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s ease-in-out;
}

.homepage .main-carousel .carousel-items .carousel-item .details .link:focus,
.homepage .main-carousel .carousel-items .carousel-item .details .link:hover,
.homepage .main-carousel .carousel-items .carousel-item .details .link:active {
    color: #ccc;
}

.homepage .main-carousel .carousel-controls {
    padding: 10px 20px;
    position: absolute;
}


/*
 * DESCRIPTION CAROUSEL
 */
.homepage #footer-carousel #first-slide {background-image: url("../images/homepage/gallery-1.jpg");}
.homepage #footer-carousel #second-slide {background-image: url("../images/homepage/gallery-2.jpg");}
.homepage #footer-carousel #third-slide {background-image: url("../images/homepage/gallery-3.jpg");}
.homepage #footer-carousel #fourth-slide {background-image: url("../images/homepage/gallery-4.jpg");}

.homepage .description-carousel .carousel-items .carousel-item {
    height: 200px;
}

.homepage .description-carousel .carousel-descriptions {
    bottom: 49px;
    width: 100%;
    z-index: 20;
    text-align: left;
    padding: 20px 20px 10px;
    background-color: #131313;
}

.homepage .description-carousel .carousel-descriptions .carousel-description {
    top: 20px;
    opacity: 0;
    position: absolute;
    transition: opacity 0.8s ease-in-out;
}

.homepage .description-carousel .carousel-descriptions .carousel-description.active {
    top: initial;
    opacity: 1;
    position: relative;
}

.homepage .description-carousel .carousel-descriptions .carousel-description .description {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    height: 38px;
    overflow: hidden;
    font-family: "Avant Garde", Helvetica, Arial, sans-serif;
}

.homepage .description-carousel .carousel-controls {
    text-align: left;
    padding: 0 10px 10px;
    background-color: #131313;
}


/*
 * SECTIONS
 */
.section {
    padding: 25% 8%;
}

.section .title {
    font-size: 36px;
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
    font-weight: 200;
    font-family: "Avant Garde", Helvetica, Arial, sans-serif;
}

.section .text,
.section .link,
.section .text p,
.section .subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0;
    font-family: "Avant Garde", Helvetica, Arial, sans-serif;
}

.section .text {
    margin-bottom: 30px;
}

.section .text p + p {
    margin-top: 20px;
}

.section .text p > a {
    transition: color 0.2s ease-in-out;
}

.section .link {
    color: #131313;
    display: block;
    font-weight: 400;
    text-decoration: underline;
    transition: color 0.2s ease-in-out;
}

.section .link + .link {
    margin-top: 15px;
}

.section .link:focus,
.section .link:hover,
.section .link:active {
    text-decoration: none;
}

.section.products,
.section.helping-businesses {
    overflow: hidden;
    position: relative;
}

.section.products .businesses,
.section.helping-businesses .businesses {
    font-size: 16px;
    line-height: 24px;
    padding-top: 60px;
    height: 428px;
}

.section.products .businesses .scroller,
.section.helping-businesses .businesses .scroller {
    left: 0;
    position: absolute;
    white-space: nowrap;
    transition: left 0.5s ease-in-out;
}

.section.products .businesses .business,
.section.helping-businesses .businesses .business {
    width: 75vw;
    min-width: 270px;
    max-width: 280px;
    vertical-align: top;
    display: inline-block;
}

.section.products .businesses .business a,
.section.helping-businesses .businesses .business a {
    display: inline-block;
}

.section.products .businesses .business .image-container,
.section.helping-businesses .businesses .business .image-container {
    margin-bottom: 20px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.4s ease-out;
}

.section.products .businesses .business .image-container img,
.section.helping-businesses .businesses .business .image-container img {
    width: 240px;
    height: 240px;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    transition: transform 0.4s ease-out;
}

.section.helping-businesses {
    background: url('../images/homepage/bg-texture-dark.jpg') top left repeat #242424;
    background-size: 320px auto;
}

.section.helping-businesses .title {
    color: #fff;
}

.section.helping-businesses .text {
    color: #a1a0a0;
}

.section.helping-businesses .text p {
    color: inherit;
}

.section.helping-businesses .text p > a {
    color: #a1a0a0;
    text-decoration: underline;
}

.section.helping-businesses .text p > a:hover,
.section.helping-businesses .text p > a:focus,
.section.helping-businesses .text p > a:active {
    color: #ccc;
}

.section.helping-businesses .links .link {
    color: #fff;
}

.section.helping-businesses .links .link:hover,
.section.helping-businesses .links .link:focus,
.section.helping-businesses .links .link:active {
    color: #ccc;
    text-decoration: underline;
}

.section.helping-businesses .businesses .business .business-name {
    color: #fff;
}

.section.helping-businesses .businesses .business .description {
    color: #A1A0A0;
}

.section.products {
    background: url('../images/homepage/bg-texture-light.jpg') top left repeat #f3f4ef;
    background-size: 320px auto;
}

.section.products .text {
    color: #626161;
}

.section.products .links .link:hover,
.section.products .links .link:focus,
.section.products .links .link:active {
    color: #626161;
    text-decoration: underline;
}

.section.products .businesses .business .business-name {
    color: #131313;
}

.section.products .businesses .business .description {
    color: #626161;
}

.section.joining-dots {
    background: url('../images/homepage/joining-the-dots.jpg') top center no-repeat #666;
    background-size: cover;
}

.section.joining-dots .link,
.section.joining-dots .title,
.section.joining-dots .text p {
    color: #fff;
}

.section.joining-dots .links .link:hover,
.section.joining-dots .links .link:focus,
.section.joining-dots .links .link:active {
    color: #ccc;
    text-decoration: underline;
}

.section.clients {
    background: #242424;
}

.section.clients .client {
    width: 50%;
    padding: 20px 10px;
    display: inline-block;
    vertical-align: middle;
}

.section.clients .client .client-logo {
    height: auto;
    width: 75%;
    margin: 0 auto;
}

.section.clients .client .client-logo.tal,
.section.clients .client .client-logo.sbs,
.section.clients .client .client-logo.sonoma {
    width: 55%;
}

.section.clients .client .client-logo.bresic-whitney {
    width: 90%;
}

.section.clients .client .client-logo.simon-johnson {
    width: 110%;
}

.section.clients .client .client-logo.pernod-ricard {
    width: 90%;
}

.section.clients .client .client-logo.guardian {
    width: 85%;
}

.section.clients .client .client-logo.aesop {
    padding-top: 10px;
}



/*
 * CONTACT FORM
 */
#footer-contact-form {
    color: #fff;
    background-color: #212121;
}

#footer-contact-form form,
#footer-contact-form .thank-you {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    padding: 50px 20px;
    position: relative;
    letter-spacing: -0.5px;
    font-family: "Avant Garde", Helvetica, Arial, sans-serif;
}

#footer-contact-form .thank-you {
    display: none;
}

#footer-contact-form .thank-you .top-message {
    margin-bottom: 20px;
}

#footer-contact-form form .subject {
    margin-bottom: 20px;
}

#footer-contact-form form .details {
    margin-bottom: 20px;
}

#footer-contact-form form .details .mobile-break {
    display: block;
}

#footer-contact-form form .details .name-input,
#footer-contact-form form .details .email-input,
#footer-contact-form form .subject .subject-input {
    outline: none;
    min-width: 70px;
    border-bottom: 1px solid #fff;
}

#footer-contact-form form .details .name-input.error,
#footer-contact-form form .details .email-input.error,
#footer-contact-form form .subject .subject-input.error {
    border-bottom-color: #ec480a;
}

#footer-contact-form form .details .name-input.empty,
#footer-contact-form form .details .email-input.empty {
    color: rgba(255, 255, 255, 0.5);
}

#footer-contact-form form .subject-choices {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: 90;
    visibility: hidden;
    padding: 50px 20px;
    position: absolute;
    transition: opacity 0.2s ease-in, visibility 0.4s;
}

#footer-contact-form form .subject-choices.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s ease-in, visibility 0.3s;
}

#footer-contact-form form .subject-choices .choices {
    color: #1a1a1a;
    padding: 20px 0;
    background-color: #fff;
    transform: scale(0.85);
    transition: transform 0.25s ease-in-out
}

#footer-contact-form form .subject-choices.active .choices {
    transform: scale(1);
    transition: transform 0.3s ease-in-out
}

#footer-contact-form form .subject-choices .choices .choice {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    padding: 15px 20px;
    background-color: #fff;
    cursor: pointer;
    letter-spacing: 0;
}

#footer-contact-form form .subject-choices .choices .choice:hover {
    background-color: rgba(0, 0, 0, 0.07);
}

#footer-contact-form form .submit-button {
    color: #fff;
    border: none;
    outline: none;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: underline;
    background-color: transparent;
    font-family: "Avant Garde", Helvetica, Arial, sans-serif;
    transition: color 0.2s ease-in-out;
}

#footer-contact-form form .submit-button:hover,
#footer-contact-form form .submit-button:focus,
#footer-contact-form form .submit-button:active {
    color: #ccc;
}


/*
 * FOOTER
 */
#footer {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    padding: 50px 20px;
    text-align: left;
    line-height: 28px;
    background-color: #212121;
    font-family: "Avant Garde", Helvetica, Arial, sans-serif;
}

#footer .work-with-us .contact {
    text-align: left;
    margin-top: 0;
}

#footer .work-with-us .contact .email {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0;
    text-decoration: underline;
    font-family: "Avant Garde", Helvetica, Arial, sans-serif;
    transition: color 0.2s ease-in-out;
}

#footer .work-with-us .contact .email:hover,
#footer .work-with-us .contact .email:focus,
#footer .work-with-us .contact .email:active {
    color: #ccc;
}

#footer .contact {
    float: none;
    text-align: left;
}

#footer .contact .info {
    margin-bottom: 40px;
}

#footer .contact .info .email,
#footer .contact .info .phone {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0;
    font-family: "Avant Garde", Helvetica, Arial, sans-serif;
    transition: color 0.2s ease-in-out;
}

#footer .contact .info .email {
    text-decoration: underline;
}

#footer .contact .info .email:hover,
#footer .contact .info .email:focus,
#footer .contact .info .email:active {
    color: #ccc;
}

#footer .contact .address {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    display: block;
    line-height: 28px;
    font-family: "Avant Garde", Helvetica, Arial, sans-serif;
}

#footer .social-media .links {
    padding: 0;
    margin: 0 0 40px 0;
    list-style: none;
}

#footer .social-media .links > li > a {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-decoration: underline;
    font-family: "Avant Garde", Helvetica, Arial, sans-serif;
    transition: color 0.2s ease-in-out;
}

#footer .social-media .links > li > a:hover,
#footer .social-media .links > li > a:focus,
#footer .social-media .links > li > a:active {
    color: #ccc;
}

#footer .social-media .copyright {
    color: #626161;
}


/* Small devices (tablets and up) */
@media (min-width: 768px) {
    /*
     * HOMEPAGE CAROUSEL
     */
    .homepage #hero-carousel .carousel-items .carousel-item {
        height: 840px;
    }

    .homepage .main-carousel .carousel-items .carousel-item .details {
        top: 45%;
        width: 75%;
    }

    .homepage .main-carousel .carousel-items .carousel-item .details .company {
        margin-bottom: 60px;
    }

    .homepage .main-carousel .carousel-items .carousel-item .details .description {
        font-size: 64px;
        margin-bottom: 40px;
    }

    .homepage .main-carousel .carousel-controls {
        padding: 20px 20px;
    }

    .homepage .main-carousel .carousel-controls .carousel-control.active .loading-bar {
        width: 80px;
    }


    /*
     * DESCRIPTION CAROUSEL
     */
    .homepage .description-carousel .carousel-items .carousel-item {
        height: 670px;
    }

    .homepage .description-carousel .carousel-descriptions {
        bottom: 0;
        padding: 25px 282px 25px 20px;
        position: absolute;
    }

    .homepage .description-carousel .carousel-descriptions .carousel-description {
        top: 20px;
    }

    .homepage .description-carousel .carousel-descriptions .carousel-description.active {
        top: initial;
    }

    .homepage .description-carousel .carousel-controls {
        right: 0;
        width: auto;
        text-align: right;
        padding-top: 15px;
        padding-bottom: 34px;
        position: absolute;
    }


    /*
     * SECTIONS
     */
    .section {
        padding: 16% 8%;
    }

    .section .title {
        width: 80%;
    }

    .section .link {
        display: inline-block;
    }

    .section .link + .link {
        margin-top: 0;
        margin-left: 40px;
    }

    .section.products .businesses,
    .section.helping-businesses .businesses {
        padding-top: 120px;
    }

    .section.clients .client {
        padding: 40px 10px;
    }

    .section.clients .client .client-logo {
        width: 55%;
    }

    .section.clients .client .client-logo.simon-johnson {
        width: 50%
    }

    .section.clients .client .client-logo.sbs,
    .section.clients .client .client-logo.sonoma {
        width: 25%
    }

    .section.clients .client .client-logo.ebay,
    .section.clients .client .client-logo.mca,
    .section.clients .client .client-logo.kincare,
    .section.clients .client .client-logo.gumtree,
    .section.clients .client .client-logo.aesop {
        width: 35%
    }

    .section.clients .client .client-logo.guardian {
        width: 45%
    }

    .section.clients .client .client-logo.tal {
        width: 25%
    }

    .section.clients .client .client-logo.pernod-ricard {
        width: 40%
    }

    .section.clients .client .client-logo.bresic-whitney {
        width: 45%
    }


    /*
     * CONTACT FORM
     */
    #footer-contact-form form,
    #footer-contact-form .thank-you {
        font-size: 36px;
        font-weight: 100;
        line-height: 44px;
        padding: 85px 20px;
    }

    #footer-contact-form .thank-you .top-message {
        margin-bottom: 0;
    }

    #footer-contact-form form {
        padding-right: 25%;
    }

    #footer-contact-form form .subject {
        margin-bottom: 0;
    }

    #footer-contact-form form .details .mobile-break {
        display: initial;
    }

    #footer-contact-form form .subject-choices {
        width: 40%;
        margin-left: 24%;
    }

    /*
     * FOOTER
     */
    #footer {
        padding: 85px 20px;
    }

    #footer .work-with-us {
        width: 55%;
    }

    #footer .work-with-us .contact {
        margin-top: 0;
        padding-bottom: 0;
        margin-bottom: 40px;
    }

    #footer .contact {
        margin-top: 0;
        padding-bottom: 0;
        margin-bottom: 40px;
    }
}

/* Fix for previous menu */
@media (min-width: 769px) {
    /*
     * HOMEPAGE NAV
     */
    .homepage header.header-nav .mobile-nav .mobile-nav-toggle {
        display: none;
    }

    .homepage header.header-nav #nav-wrapper {
        z-index: 110;
        height: 80px;
    }

    .homepage header.header-nav #nav-wrapper #nav {
        right: 0;
        transition: padding 0.4s;
        padding: 33px 20px 22px 20px;
    }

    .homepage header.header-nav #nav-wrapper #nav .nav > li > a.contact-link {
        margin-right: 0;
    }
}

/* Medium devices (laptops and up) */
@media (min-width: 992px) {
    /*
     * HOMEPAGE NAV
     */
    .homepage header.header-nav .mobile-nav {
        height: auto;
    }

    .homepage header.header-nav .mobile-nav .brand {
        margin: 35px 40px;
        transition: margin 0.4s;
    }

    .homepage header.header-nav.scrolled .mobile-nav .brand {
        margin-top: 22px;
        margin-bottom: 22px;
    }

    .homepage header.header-nav .mobile-nav .mobile-nav-toggle {
        display: none;
    }

    .homepage header.header-nav #nav-wrapper {
        z-index: 110;
        height: 106px;
        margin-left: 20%;
        width: 80%;
    }

    .homepage header.header-nav #nav-wrapper #nav {
        right: 0;
        transition: padding 0.4s;
        padding: 47px 40px 35px 20px;
    }

    .homepage header.header-nav.scrolled #nav-wrapper #nav {
        padding-top: 34px;
        padding-bottom: 22px;
    }

    .homepage header.header-nav #nav-wrapper #nav .nav > li:last-child > a {
        margin-right: 0;
    }

    .homepage header.header-nav #nav-wrapper #nav .nav > li > a {
        display: block;
        position: relative;
    }

    .homepage header.header-nav #nav-wrapper #nav .nav > li > a:after {
        content: '';
        left: 50%;
        width: 0;
        top: 18px;
        height: 1px;
        margin-left: 0;
        display: block;
        position: absolute;
        background-color: #fff;
        transition: all 0.3s ease-in-out;
    }

    .homepage header.header-nav #nav-wrapper #nav .nav > li > a:focus:after,
    .homepage header.header-nav #nav-wrapper #nav .nav > li > a:hover:after,
    .homepage header.header-nav #nav-wrapper #nav .nav > li > a:active:after {
        width: 100%;
        margin-left: -50%;
    }


    /*
     * HOMEPAGE CAROUSEL
     */
    .homepage #hero-carousel .carousel-items .carousel-item {
        height: 100vh;
    }

    .homepage .main-carousel .carousel-items .carousel-item .details {
        width: 70%;
    }

    .homepage .main-carousel .carousel-controls {
        padding-bottom: 40px;
    }

    .homepage .main-carousel .carousel-controls .carousel-control.active .loading-bar {
        width: 100px;
    }


    /*
     * DESCRIPTION CAROUSEL
     */
    .homepage .description-carousel .carousel-descriptions {
        padding: 35px 312px 35px 40px;
    }

    .homepage .description-carousel .carousel-descriptions .carousel-description {
        top: 35px;
    }

    .homepage .description-carousel .carousel-descriptions .carousel-description.active {
        top: initial;
    }

    .homepage .description-carousel .carousel-controls {
        padding: 25px 30px 44px;
    }


    /*
     * SECTIONS
     */
    .section {
        padding: 20% 15%;
    }

    .section .text,
    .section .link,
    .section .text p,
    .section .subtitle {
        font-size: 20px;
        line-height: 28px;
    }

    .section .title {
        width: 75%;
        font-size: 48px;
    }

    .section .link + .link {
        margin-left: 50px;
    }

    .section.clients {
        padding: 13% 10%;
    }

    .section.clients .client {
        width: 25%;
        padding: 60px 10px;
    }

    .section.clients .client .client-logo {
        width: 65%;
    }

    .section.clients .client .client-logo.simon-johnson {
        width: 85%
    }

    .section.clients .client .client-logo.sbs,
    .section.clients .client .client-logo.sonoma {
        width: 45%
    }

    .section.clients .client .client-logo.ebay {
        width: 60%
    }

    .section.clients .client .client-logo.mca,
    .section.clients .client .client-logo.gumtree {
        width: 50%
    }

    .section.clients .client .client-logo.tal {
        width: 40%
    }

    .section.clients .client .client-logo.pernod-ricard,
    .section.clients .client .client-logo.bresic-whitney {
        width: 65%
    }

    .section.clients .client .client-logo.aesop {
        width: 55%;
    }

    .section.clients .client .client-logo.guardian,
    .section.clients .client .client-logo.kincare {
        width: 65%
    }

    .section.products .businesses,
    .section.helping-businesses .businesses {
        padding-top: 150px;
        margin-left: -15%;
        margin-right: -15%;
        position: relative;
    }

    .section.products .businesses .scroller,
    .section.helping-businesses .businesses .scroller {
        width: 100%;
        left: 0 !important;
    }

    .section.products .businesses .business,
    .section.helping-businesses .businesses .business {
        width: 33.33333%;
        padding-left: 20px;
        padding-right: 20px;
        display: inline-block;
        max-width: none;
    }

    .section.products .businesses .business + .business,
    .section.helping-businesses .businesses .business + .business {
        margin-top: 0;
    }

    .section.products .businesses .business a:hover .image-container,
    .section.products .businesses .business a:focus .image-container,
    .section.helping-businesses .businesses .business a:hover .image-container,
    .section.helping-businesses .businesses .business a:focus .image-container {
        transform: scale(0.95);
    }

    .section.products .businesses .business a:hover .image-container img,
    .section.products .businesses .business a:focus .image-container img,
    .section.helping-businesses .businesses .business a:hover .image-container img,
    .section.helping-businesses .businesses .business a:focus .image-container img {
        transform: scale(1.15);
    }


    /*
     * CONTACT FORM
     */
    #footer-contact-form form,
    #footer-contact-form .thank-you {
        font-size: 40px;
        line-height: 48px;
        padding: 100px 32% 100px 40px;
    }

    #footer-contact-form form .subject-choices {
        margin-left: 22%;
    }

    /*
     * FOOTER
     */
    #footer {
        padding: 100px 40px 40px;
    }

    #footer .work-with-us {
        width: 42%;
        vertical-align: top;
        display: inline-block;
        padding-right: 60px;
    }

    #footer .work-with-us .contact {
        margin-top: 40px;
    }

    #footer > .contact {
        width: 40%;
        margin: 0;
        vertical-align: top;
        display: inline-block;
    }

    #footer .social-media {
        width: 18%;
        vertical-align: top;
        display: inline-block;
    }
}

/* Large devices (desktops and up) */
@media (min-width: 1200px) {
    /*
     * HOMEPAGE NAV
     */
    .homepage header.header-nav .mobile-nav .brand {
        margin: 50px 60px;
    }

    .homepage header.header-nav #nav-wrapper #nav {
        padding: 62px 60px 50px;
    }


    /*
     * HOMEPAGE CAROUSEL
     */
    .homepage #hero-carousel .carousel-items .carousel-item {
        height: 840px;
    }

    .homepage .main-carousel .carousel-controls {
        padding-bottom: 54px;
    }


    /*
     * DESCRIPTION CAROUSEL
     */
    .homepage .description-carousel .carousel-descriptions {
        padding-left: 60px;
    }

    .homepage .description-carousel .carousel-descriptions .carousel-description .description {
        height: auto;
    }

    .homepage .description-carousel .carousel-controls {
        padding: 25px 50px;
    }


    /*
     * SECTIONS
     */
    .section {
        padding: 13% 18%;
    }

    .section .text,
    .section .link,
    .section .text p,
    .section .subtitle {
        font-size: 20px;
        line-height: 28px;
    }

    .section .title {
        margin-bottom: 50px;
        font-size: 56px;
    }

    .section .link + .link {
        margin-left: 60px;
    }

    .section.digital-designers .title {
        margin-bottom: 37px;
    }

    .section.digital-designers .subtitle {
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

    .section.clients {
        padding: 9% 10%;
    }

    .section.clients .client {
        padding: 70px 10px;
    }

    .section.clients .client .client-logo {
        width: 50%;
    }

    .section.clients .client .client-logo.simon-johnson {
        width: 80%
    }

    .section.clients .client .client-logo.tal {
        width: 45%
    }

    .section.clients .client .client-logo.mca {
        width: 55%;
    }

    .section.clients .client .client-logo.gumtree {
        width: 50%
    }

    .section.clients .client .client-logo.guardian,
    .section.clients .client .client-logo.pernod-ricard {
        width: 60%
    }

    .section.clients .client .client-logo.bresic-whitney {
        width: 65%
    }

    .section.clients .client .client-logo.tal,
    .section.clients .client .client-logo.sonoma{
        width: 40%
    }

    .section.products .businesses,
    .section.helping-businesses .businesses {
        padding-top: 170px;
        margin-left: -10%;
        margin-right: -10%;
    }

    .section.products .businesses .business,
    .section.helping-businesses .businesses .business {
        width: 33.33333%;
        padding-left: 20px;
        padding-right: 20px;
        display: inline-block;
    }

    .section.products .businesses .business + .business,
    .section.helping-businesses .businesses .business + .business {
        margin-top: 0;
    }


    /*
     * CONTACT FORM
     */
    #footer-contact-form form,
    #footer-contact-form .thank-you {
        font-size: 48px;
        line-height: 56px;
        padding: 110px 40% 110px 60px;
    }

    #footer-contact-form form .subject-choices {
        width: 33%;
        margin-left: 20%;
    }

    /*
     * FOOTER
     */
    #footer {
        padding: 150px 60px 40px;
    }

    #footer .work-with-us {
        width: 28%;
        padding-right: 0;
    }

    #footer > .contact {
        width: 30%;
        margin-left: 16%;
    }

    #footer .social-media {
        width: 18%;
        margin-left: 8%;
    }
}
