/*

    File: _assets/css/scss/style.scss

    Use spaces not tabs

    # Selectors

    One selector per line, One rule per line
    Don't use IDs as selectors
    Use hyphens to concatenate class names, eg body-container not bodyContainer or body_container
    Use BEM syntax:
        Block
        Block__element
        Block--modifier

    # Properties

    List related properties together
    If the value of the width or height is 0, do not specify units
    Avoid magic numbers, eg numbers used as quick fixes on a one-off basis
    Close final property with a semi-colon
    Err towards shorthand where avaliable, eg border, background, etc

    # SASS/SCSS

    Be Generous With Comments


    Variablize All Common Numbers, and Numbers with Meaning
    Variablize All Colors

    Nest and Name Your Media Queries

*/
/*
    File: _assets/css/scss/_libs-normalize.scss
        Based on http://necolas.github.io/normalize.css/
        normalize.css v1.1.3 | MIT License | git.io/normalize
*/
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
@font-face {
    font-family: 'EC1London-Light';
    src: url('f/ec1londontext-light.eot');
    src: url('f/ec1londontext-light.eot?#iefix') format('embedded-opentype'),
    url('f/ec1londontext-light.woff2') format('woff2'),
    url('f/ec1londontext-light.woff') format('woff'),
    url('f/ec1londontext-light.ttf') format('truetype');
    font-display: fallback;
}

@font-face {
    font-family: 'EC1London-SemiBold';
    src: url('f/ec1londontext-semibold.eot');
    src: url('f/ec1londontext-semibold.eot?#iefix') format('embedded-opentype'),
    url('f/ec1londontext-semibold.woff2') format('woff2'),
    url('f/ec1londontext-semibold.woff') format('woff'),
    url('f/ec1londontext-semibold.ttf') format('truetype');
    font-display: fallback;
}

* {
    /* Safari/Chrome, other WebKit */
    /* Firefox, other Gecko */
    box-sizing: border-box;
    /* Opera/IE 8+ */
    /* 1 */
    -webkit-font-smoothing: antialiased;
    font-family: "EC1London-SemiBold", "EC1London-Light", sans-serif;
    font-display: fallback;
}


article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
    display: block;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio, canvas, video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
    display: none;
    height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
    display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
    font-size: 100%;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

/**
 * Address `font-family` inconsistency between `textarea` and other form
 * elements.
 */
html, button, input, select, textarea {
    font-family: sans-serif;
}

/**
 * Address margins handled incorrectly in IE 6/7.
 */
body {
    margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
    outline: none;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active, a:hover {
    outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address font sizes and margins set differently in IE 6/7.
 * Address font sizes within `section` and `article` in Firefox 4+, Safari 5,
 * and Chrome.
 */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

h2 {
    font-size: 1.5em;
    margin: 0.83em 0;
}

h3 {
    font-size: 1.17em;
    margin: 1em 0;
}

h4 {
    font-size: 1em;
    margin: 1.33em 0;
}

h5 {
    font-size: 0.83em;
    margin: 1.67em 0;
}

h6 {
    font-size: 0.67em;
    margin: 2.33em 0;
}

/**
 * Address styling not present in IE 7/8/9, Safari 5, and Chrome.
 */
abbr[title] {
    border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome.
 */
b, strong {
    font-weight: bold;
}

blockquote {
    margin: 1em 40px;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
    font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 * Known issue: no IE 6/7 normalization.
 */
hr {
    box-sizing: content-box;
    height: 0;
}

/**
 * Address styling not present in IE 6/7/8/9.
 */
mark {
    background: #ff0;
    color: #000;
}

/**
 * Address margins set differently in IE 6/7.
 */
p, pre {
    margin: 1em 0;
}

/**
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code, kbd, pre, samp {
    font-family: monospace, serif;
    _font-family: 'courier new', monospace;
    font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/**
 * Address CSS quotes not supported in IE 6/7.
 */
q {
    quotes: none;
}

/**
 * Address `quotes` property not supported in Safari 4.
 */
q:before, q:after {
    content: '';
    content: none;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* ==========================================================================
   Lists
   ========================================================================== */
/**
 * Address margins set differently in IE 6/7.
 */
dl, menu, ol, ul {
    margin: 1em 0;
}

dd {
    margin: 0 0 0 40px;
}

/**
 * Address paddings set differently in IE 6/7.
 */
menu, ol, ul {
    padding: 0 0 0 40px;
}

/**
 * Correct list images handled incorrectly in IE 7.
 */
nav ul, nav ol {
    list-style: none;
    list-style-image: none;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
    border: 0;
    /* 1 */
    -ms-interpolation-mode: bicubic;
    /* 2 */
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
    overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
figure {
    margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
    margin: 0;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct color not being inherited in IE 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
    border: 0;
    /* 1 */
    padding: 0;
    white-space: normal;
    /* 2 */
    *margin-left: -7px;
    /* 3 */
}

/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */
button, input, select, textarea {
    font-size: 100%;
    /* 1 */
    margin: 0;
    /* 2 */
    vertical-align: baseline;
    /* 3 */
    *vertical-align: middle;
    /* 3 */
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button, input {
    line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button, select {
    text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */
    *overflow: visible;
    /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled], html input[disabled] {
    cursor: default;
}

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"], input[type="radio"] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
    *height: 13px;
    /* 3 */
    *width: 13px;
    /* 3 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    /* 2 */
    box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 6/7/8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
    overflow: auto;
    /* 1 */
    vertical-align: top;
    /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*
    File: css/scss/_libs-mixins.scss
        Preference for third-party mixin libraries is to use Bourbon
        See https://github.com/thoughtbot/bourbon
*/

body {
    background: white;
    /*    -webkit-perspective: 1000px; */
    /* <-NB */
}

.head {
    padding: 30px 0 0;
}

.header-underline {
    border-bottom: 1px solid rgb(198, 198, 197);
    padding-bottom: 30px;
}

.wrapper {
    width: 100%;
}

.content {
    margin: 0 auto;
    position: relative;
}

.footer {
    margin: 0 auto;
    margin-bottom: 50px;
    margin-top: 0;
    clear: both;
}

h1, h2, h3, p, ul, ol {
    font-family: 'EC1London-Light';
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    margin-top: 0;
    margin-bottom: 0;
}

p i {
    font-family: 'EC1London-Light';
    font-style: italic;
}

h1, h2, p {
    color: #58574b;
}

h1 span, h2 span, p span {
    color: #0bbbef;
}

h1 {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1em;
}

.grid1 h1.project-title span {
    font-weight: 500;
}

.box-title-wrapper {
    position: absolute;
    float: left;
    overflow: hidden;
    box-shadow: 0px 0px 45px #333;
}

.box-title {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.25;
    position: relative;
    background: #fff;
    padding: 0px 7px 7px 0px;
    display: block;
    line-height: 1.3em;
    font-weight: 400;
    white-space: nowrap;
    margin-top: -2px;
}

.box-title span {
    display: block;
    font-weight: 500;
}

.recent-projects .box-title span {
    color: #fff;
}

.head {
    padding-bottom: 30px;
}

.project-pagination li {
    margin-right: 10px;
    display: inline-block;
}

.project-pagination a {
    font-size: 40px;
    font-size: 2.5rem;
    color: #0bbbef;
    text-decoration: none;
}

.project-pagination a:hover {
    color: #58574b;
}

.grid .twitbox .box__inner.box__inner {
    padding-top: 74px;
}

.tw-message a {
    color: #fff;
}

.tw-message a:hover {
    color: #f4f4f4;
    -webkit-transition: color 0.3s;
}

.footer {
    border-top: 1px solid rgb(198, 198, 198);
    *zoom: 1;
    position: relative;
    padding-top: 30px;
}

.footer:before, .footer:after {
    display: table;
    content: "";
    line-height: 0;
}

.footer:after {
    clear: both;
}

.footer a {
    color: #58574b;
    text-decoration: none;
}

.footer a:hover {
    color: #0bbbef;
}

.client-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 30px 0;
    float: left;
}

.client-list li {
    font-size: 1.75rem;
  text-wrap: none;
}

.client-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.client-list li, .client-list a {
    color: rgb(198, 198, 197);
}

.client-list a {
    display: block;
    text-decoration: none;
}

.footer p {
    font-size: 17px;
    font-size: 1.0625rem;
    font-weight: normal;
    letter-spacing: -0.12px;
    line-height: 1.1;
    margin-right: 3px;
}

.footer h3 {
    font-size: 17px;
    font-size: 1.0625rem;
    letter-spacing: -0.12px;
    line-height: 1.1em;
    margin-right: 3px;
    color: #0bbbef;
}


.content-box h2 {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.15;
    color: #0bbbef;
}

.content-box p, .content-box ul, .content-box ol {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.15;
    color: rgb(168, 168, 168);
    margin: 0 0 0.5em;
    padding: 0;
}

.content-box ul li, ol li {
    list-style: none;
}

.green-face h1, .green-face h2 span {
    color: #fff;
}

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

.nav ul {
    margin: 0;
    padding: 0;
}

.nav li {
    font-size: 20px;
    font-size: 1.425rem;
}

.nav li:hover a, .nav .current a {
    color: #0bbbef;
}

.carousel img {
    width: 100%;
    opacity: 1;
    display: inline-block;
}

.content-header .title-col h1 {
    font-size: 34px;
    font-size: 2.125rem;
}

.content-header .title-col span {
    font-size: 34px;
    font-size: 2.125rem;
}

.content-header .context-col h2, .content-header .our-work-col h2 {
    font-size: 18px;
    font-size: 1.125rem;
    color: #0bbbef;
}

.content-header .context-col p, .content-header .our-work-col p {
    line-height: 1.2em;
}

.legal {
    margin-top: 30px;
}

.footer .legal p {
    font-size: 10px;
    margin: 0;
    padding-top: 2px;
}

@media screen and (max-width: 386px) {
}

.carousel .carousel-title-box h2 {
    padding: 0;
    line-height: 1.1;
    letter-spacing: 0.7px;
    font-size: 2.6em;
    margin-top: -2px;
    font-size: 30px;
    font-size: 1.875rem;
    color: #fff;
    font-weight: 700;
}

.carousel .carousel-title-box h2 span {
    display: block;
    color: #0bbbef;
}

.carousel .carousel-title-box .slide-text-wrapper h2 {
    display: none;
    color: #58574b;
}

.carousel .carousel-title-box .slide-nav li {
    display: inline-block;
    font-family: 'EC1London-Light';
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    font-size: 52px;
    font-size: 3.25rem;
    line-height: 1.1;
    color: #0bbbef;
    cursor: pointer;
    margin-right: 15px;
}

.carousel .slide__pagination li {
    -webkit-transition: background-color 0.5s;
    transition: background-color 0.5s;
    width: 19px;
    height: 15px;
    background-color: #fff;
    display: inline-block;
    color: #fff;
    margin-right: 10px;
    cursor: pointer;
    overflow: hidden;
    text-indent: -9999em;
}

.js .visible {
    opacity: 1;
}

.grid {
    width: 100%;
    clear: left;
    position: relative;
}

.grid .box--aspect {
    background-size: cover;
    background-repeat: no-repeat;
}

.grid .box--aspect:before {
    padding-bottom: 75.14451%;
    content: " ";
    display: block;
}

.grid .box__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.grid .green-face .box__inner {
    padding: 5px;
}

.grid .large-box {
    margin-bottom: 30px;
}

.head .small-box.content-box, .head .small-box.logo-box {
    margin-bottom: -5px;
}

.head .small-box.nav-box {
    margin-top: 0;
    margin-bottom: -8px;
}

h1.logo {
    margin-bottom: 28px;
}


.grid .clients-box h1, .grid .clients-box h2 span {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.1;
    color: #000;
}

.grid .clients-box h2 {
    font-size: 16px;
    font-size: 1rem;
    color: #fff;
}

.grid .clients-box ul {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 3px;
    color: #000;
}

.grid .clients-box p {
    color: #000;
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 400;
    position: absolute;
    bottom: 5px;
    padding-right: 35px;
}

@media screen and (max-width: 386px) {
    .grid .clients-box p {
        font-size: 21px;
        font-size: 1.3125rem;
    }

    .grid .clients-box ul {
        font-size: 21px;
        font-size: 1.3125rem;
    }
}

.grid:after {
    content: "";
    display: block;
    clear: both;
}

.grid:first-of-type {
    margin-top: 31px;
}

.grid.grid--clients {
    margin-top: 0;
}

.grid1 {
    font-size: 0;
}

.grid1 .box {
    float: none !important;
    display: inline-block;
    vertical-align: bottom;
    margin-right: 30px;
}

.grid1 .box:nth-child(even) {
    margin-right: 0;
}

.grid1 h1 {
    font-size: 70px;
    font-size: 4.375rem;
    /*line-height: 0.9;*/
    line-height: 0;
}

.grid1 h1 a {
    color: #0bbbef;
    text-decoration: none;
}

.grid1 h1 a:hover {
    color: #58574b;
}

.content-box {
    vertical-align: bottom;
}

body > header > div > div:nth-child(3) {
    display: inline-block !important;
}


header .grid:first-of-type {
    margin-top: 0;
}

section .small-box {
    max-height: 260px;
    margin-right: 0;
}

section.content {
    transition: opacity 0.1s ease-in-out;
}

header .grid .small-box {
    padding: 0 0;
}

.box {
    /*margin-right: 3px;
    margin-bottom: 3px;*/
    padding-top: 6px;
    padding-left: 7px;
    -webkit-perspective: 1000px;
    overflow: hidden;
    position: relative;
}

.box.white-face.tagline h2 {
    line-height: 1.1;
    margin-top: -2px;
    letter-spacing: 0.6px;
    font-size: 29px;
    font-size: 1.8125rem;
}

.box.white-face.tagline h2 a {
    color: #0bbbef;
    line-height: 1.3;
    text-decoration: none;
}

.large-box {
    width: 347px;
    background: none;
    margin-bottom: 30px;
    -webkit-transition: width ease-in 50ms;
    -moz-transition: width ease-in 50ms;
    -o-transition: width ease-in 50ms;
    transition: width ease-in 50ms;
}

.box-title-wrapper {
    width: 54%;
}

@media screen and (max-width: 385px) {
    .grid1 h1 {
        font-size: 48px;
        font-size: 3rem;
    }

}

@media screen and (max-width: 386px) {
    .large-box {
        width: 280px;
        margin-bottom: 30px;
    }
}

/* HOVER EFFECT 1 */
.hover1 img {
    display: inline-block;
    margin-bottom: -5px;
}

/* HOVER EFFECT 2 */
.hover2 .caption p {
    color: white;
}

/* HOVER EFFECT 3 */
.hover3 .caption button {
    position: absolute;
    z-index: 200;
    border: 2px solid black;
    left: 50%;
    margin-left: -110px;
    color: black;
}

.hover3:hover .box-title {
    min-width: 100%;
    min-height: 100%;
    -webkit-transition: min-width 0.3s, min-height 0.3s;
}

.hover4 .box-title {
    z-index: 2;
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.hover4 span.box-title {
    font-family: 'EC1London-Light';
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    background: rgba(0, 229, 0, 0.75);
    color: #fff;
    width: 165px;
    height: 100%;
    opacity: 0;
    font-size: 18px;
    font-size: 1.125rem;
}

.hover4:hover p.box-title {
    opacity: 0;
}

.hover4:hover span.box-title {
    opacity: 1;
}

.image-box {
    padding: 0 !important;
    background-color: rgb(198, 198, 197);
    transition: all;
    transition-duration: 50ms;
}

.footer .box {
    padding: 0;
    display: block;
    background-color: #f1f1f3;
    padding: 22px 30px 25px 30px; /* top right bottom left */
}

.desc-box {
    display: table-cell;
    vertical-align: bottom;
    width: 100%;
}

p.grey {
    margin: 0;
}

.clients-box.push-left > nav > ul > li:nth-child(3) {
    line-height: 26px;
    margin-bottom: -3px;
}

nav.nav {
    margin-top: 0;
    margin-bottom: 30px;
}


/* Transitions */
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0.0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 385px) {
    .carousel img {
        max-width: 100%;
    }

    .carousel .carousel-title-box h2 {
        font-size: 24px;
        font-size: 1.5rem;
    }

    .content, .footer, .carousel-title-container {
        width: 280px;
    }
}

@media screen and (min-width: 386px) {
    .carousel img {
        max-width: 100%;
    }

    .large-box {
        width: 326px;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .head .small-box {
        width: 326px;
        margin-right: 30px;
    }

    .footer .small-box {
        width: 326px;
        margin-right: 30px;
        display: inline-block;
        margin-bottom: 30px;
    }

    .content, .footer, .carousel-title-container {
        width: 326px;
    }

    .box-title-wrapper {
        width: 47%;
    }
}

@media screen and (min-width: 0px) {

    .grid4 .box img {
        max-width: 100%;
        margin-bottom: -4px;
    }
}

@media screen and (min-width: 0px) and (max-width: 705px) {
    .grid {
        width: 100%;
        margin: 0 auto;
    }

    .box {
        float: none;
        margin-right: 0;
        margin-bottom: 30px;
        clear: left;
        padding-left: 20px;
        padding-top: 20px;
        padding-bottom: 30px;
        margin-left: auto;
        margin-right: auto;
    }

    .box img {
        width: 100%;
        height: auto;
    }
}

@media screen and (min-width: 768px) {
    .large-box {
        width: 339px;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .head .small-box {
        width: 339px;
        margin-right: 30px;
        margin-bottom: 30px;
    }

    nav.nav {
        margin-top: 0;
        margin-bottom: 0;
    }

    .head .small-box.nav-box {
        margin-top: 0;
        margin-bottom: -8px;
    }


    .footer .small-box {
        width: 339px;
        margin-right: 30px;
        display: inline-block;
    }

    .content, .footer, .carousel-title-container {
        width: 708px;
    }

    .box-title-wrapper {
        width: 45%;
    }

    .client-list li {
        width: 339px;
        float: left;
    }

    .client-list li:nth-child(odd) {
        margin-right: 30px;
    }
}


@media screen and (min-width: 1024px) {
    .large-box {
        width: 467px;
        margin-bottom: 30px;
    }

    .head .small-box {
        width: 467px;
        margin-right: 30px;
    }

    .head .small-box:last-child {
        margin-right: 0;
    }

    .head *:last-child {
        margin-bottom: 0;
    }

    .carousel .carousel-title-box h2 {
        font-size: 40px;
    }

    .footer .small-box {
        width: 467px;
        margin-right: 30px;
        display: inline-block;
    }

    .content, .footer, .carousel-title-container {
        width: 964px;
    }

    .box-title-wrapper {
        width: 33%;
    }

    .client-list li {
        width: 467px;
        float: left;
    }

    .client-list li:nth-child(odd) {
        margin-right: 30px;
    }
}


@media screen and (min-width: 1137px) {


    .grid1 .box, .grid1 .box:nth-child(even) {
        margin-right: 30px;
    }

    .grid1 .box:nth-child(3n+3) {
        margin-right: 0;
    }

    .large-box {
        width: 339px;
        margin-bottom: 30px;
    }

    .head .small-box {
        width: 339px;
        margin-right: 30px;
    }

    .footer .small-box {
        width: 339px;
        margin-right: 30px;
        display: inline-block;
    }

    .content, .footer, .carousel-title-container {
        width: 1077px;
    }

    .head .small-box.content-box {
        width: 708px;
        margin-right: 0;
    }

    .box-title-wrapper {
        width: 45%;
    }

    .client-list li {
        width: 339px;
        float: left;
        margin-right: 30px;
    }

    .client-list li:nth-child(3n+3) {
        margin-right: 0;
    }

}

@media screen and (min-width: 1521px) {


    .grid1 .box, .grid1 .box:nth-child(even) {
        margin-right: 30px;
    }

    .grid1 .box:nth-child(3n+3) {
        margin-right: 0;
    }

    .large-box {
        width: 467px;
        margin-bottom: 30px;
    }

    .head .small-box {
        width: 467px;
        margin-right: 30px;
    }

    .footer .small-box {
        width: 467px;
        margin-right: 30px;
        display: inline-block;
    }

    .content, .footer, .carousel-title-container {
        width: 1461px;
    }

    .head .small-box.content-box {
        width: 964px;
        margin-right: 0;
    }

    .box-title-wrapper {
        width: 33%;
    }

    .client-list li {
        width: 467px;
        float: left;
        margin-right: 30px;
    }

    .client-list li:nth-child(3n+3) {
        margin-right: 0;
    }


}

@media screen and (min-width: 2018px) {

    .grid1 .box, .grid1, .grid1 .box:nth-child(3n+3) {
        margin-right: 30px;
    }

    .grid1 .box:nth-child(4n+4) {
        margin-right: 0;
    }

    .large-box {
        width: 467px;
        margin-bottom: 30px;
    }

    .head .small-box {
        width: 467px;
        margin-right: 30px;
    }

    .footer .small-box {
        width: 467px;
        margin-right: 30px;
        display: inline-block;
    }

    .footer {
        margin: 0 auto;
    }

    .content, .footer, .carousel-title-container {
        width: 1958px;
    }

    .head .small-box.content-box {
        width: 964px;
        margin-right: 0;
        margin-left: 497px;
    }

    .client-list li {
        width: 467px;
        float: left;
        margin-right: 30px;
    }


    .client-list li:nth-child(3n+3) {
        margin-right: 30px;
    }

    .client-list li:nth-child(4n+4) {
        margin-right: 0;
    }
}
