
html {
    /* Reset */
    line-height: 1.25;

    /* Font */
    font-family: 'Nunito Sans'/*, "Helvetica Neue", Helvetica, Arial, "Droid Sans" */, sans-serif;
    font-weight: 400;  /* Normal */
    font-size: 18.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #000000;
    padding: 0;
    margin: 0;
}

body {
    /* Stop iOS enlarging text when in landscape orientation
       http://interwebworld.co.uk/2013/11/25/ios-device-orientation-font-scaling/ */
	-webkit-text-size-adjust: 100%;
}

a {
    color: #77a7b9;
    text-decoration: none;
}
a:hover {
    color: #8dc7dc;
    text-decoration: none;
}
a:active {
    outline: none;
}
a:focus {
    outline: none;
}


/* + Top bar (with logo and menu) {{{ */

#mtfHeader {
    height: 80px;
    line-height: 80px;
    padding: 0 25px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: black;
}

#mtfHeader .logo img {
    max-width: 100%;
    box-sizing: border-box;
    padding: 5px 0;
    vertical-align: middle;
}
#mtfHeader .logo .logotext_flat {
    width: 293px;
}
#mtfHeader .logo .logotext_shadowed {
    width: 295px;
    margin-top: 1px;
    display: none;
}

#mtfHeader .menu {
    position: relative;
    text-align: right;
    float: right;

    /* Fine-adjust vertical centering */
    margin-top: 2px;
}
#mtfHeader .menu .current-menu-item {
    font-weight: 600;
}

#mtfHeader .menu-main-menu-container {
    padding: 0;
}

#mtfHeader .menu-main-menu-container li {
    display: inline-block;
    margin-left: 1em;
}
#mtfHeader .menu-main-menu-container li:first-child {
    margin-left: 0;
}
#mtfHeader .menu-main-menu-container li a {
    text-decoration: none;
    color: #fff;
}

/* + }}} */

/* + Scrolling content {{{ */

.tagline {
    color: rgba(226, 226, 225, 1);
    padding: 0 25px 8px 25px;
}

/* + }}} */

/* + Centre column {{{ */

/* Content width is 1156px */

.centre_column {
    margin: 0 auto;
    padding: 0;
    background-color: #000000;
    color: #f0f0f0;
    max-width: 1156px;
}

/* + }}} */

/* + Clients and partners {{{ */

.clients_and_partners {
    padding: 20px 0 60px 0;
}

.clients_and_partners h1 {
    font-size: 25px;
    margin-bottom: 1%;
}

.clients_and_partners_details {
    padding: 0 3%;
}

.client_partner {
    display: inline-block;
    width: 25%;
    text-align: center;

    box-sizing: border-box;
    padding: 2.6%;
}

.client_partner img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 150px;
    /*
    filter: grayscale(100%) invert(100%);
    */
    opacity: 0.7;
}

.client_partner_ted img {
    width: 87%;
}
.client_partner_wsa img {
    width: 33%;
}
.client_partner_rewire img {
    width: 50%;
}
.client_partner_bela img {
    width: 70%;
}

/* + }}} */

/* + Footer {{{ */

#footer {
    /* Pad vertically */
    padding-top: 25px;
    padding-bottom: 25px;

    /* Centre horizontally */
    margin: 0 auto;

    /* Pad horizonally */
    padding-left: 25px;
    padding-right: 25px;

    /* Content width */
    box-sizing: border-box;
    max-width: 1206px;  /* 1156px for content, + side padding */
    /*
    box-sizing: content-box;
    max-width: 1156px;
    */

    /* Colour */
    color: #a2a2a2;
}

#footer .column {
    display: inline-block;
    width: 50%;
    vertical-align: top;
}

#footer .company_name {
    font-weight: bold;
    color: white;
}

/*
#footer .addresses_and_admin {
    font-size: 75%;
}
*/

#footer .company_reg_no {
    white-space: nowrap;
}


/* Subscribe: fixed-size label, varying e-mail input */
#footer .subscribe {
    display: flex;
}
#footer #subscribe-label {
    white-space: nowrap;
    flex-grow: 0;
    flex-shrink: 0;
    margin-right: 0.8em;
}
#footer #mce-EMAIL {
    width: 90%;
    max-width: 400px;  /* Damage control on iOS 5 Safari */
    flex-grow: 1;
    flex-shrink: 1;
}

/* Enlarge social icons */
#footer .social {
    font-size: 150%;
}


/* At full width */
/* Social and subscribe side-by-side */
#footer .comms {
    display: flex;
}
#footer .social {
    flex-grow: 0;
    flex-shrink: 0;
}
#footer .subscribe {
    flex-grow: 1;
    flex-shrink: 1;
}
#footer .comms {
    align-items: baseline;
    margin-bottom: 1.85em;  /* Gap down to terms and conditions */
}

/* At 1130px and below */
@media only screen and (max-width: 1130px) {
    /* Social and subscribe one under the other */
    #footer .comms {
        display: block;
        margin-bottom: 0.5em;  /* Gap down to terms and conditions */
    }
}

/* At 800px and below (columns become full width via style_nonFront_mediaQueries.css) */
@media only screen and (max-width: 800px) {
    /* Social and subscribe side-by-side again */
    #footer .comms {
        display: flex;
    }
    #footer .social {
        flex-grow: 0;
        flex-shrink: 0;
    }
    #footer .subscribe {
        flex-grow: 1;
        flex-shrink: 1;
    }
    #footer .comms {
        align-items: baseline;
        margin-bottom: 1.85em;  /* Gap down to terms and conditions */
    }

    /* Gap between social and company info above */
    #footer .comms {
        margin-top: 1.85em;
    }
}

/* At 600px and below */
@media only screen and (max-width: 600px) {
    /* Social and subscribe one under the other again */
    #footer .comms {
        display: block;
    }
}

/* At 480px and below */
@media only screen and (max-width: 480px) {
    /* Wrap individual components of subscribe */
    #footer .subscribe {
        flex-wrap: wrap;
    }
}

/*
#footer .subscribe #mc_embed_signup_scroll {
    display: flex;
}
#footer .subscribe #mce-label {
    background-color: red;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 1px;
}
#footer .subscribe #mce-EMAIL {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 1px;
    background-color: green;
}
*/


/* + + Newsletter signup {{{ */

#footer .subscribe #mc_embed_signup_scroll {
}
#footer .subscribe #mce-label {
}
#footer .subscribe #mce-EMAIL {
}

/*
#footer .subscribe {
    font-size: 75%;
}
*/
#footer #mce-EMAIL {
    background-color: transparent;
    color: white;
    border-style: none none dotted none;
    border-width: 1px;
    border-color: #a2a2a2;
    font-size: 100%;
}
#footer .subscribe #mce-EMAIL:placeholder {
    color: red;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #444;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #444;
   opacity: 1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #444;
   opacity: 1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #444;
}

/* Push underline of e-mail input field down away from the input a bit */
#footer .social {
    position: relative;
    top: 2px;
}
/*
#footer #subscribe-label {
    position: relative;
    top: 2px;
}
*/
#footer #mce-EMAIL {
    padding-bottom: 2px;
}
/*
*/

/* + + }}} */

/* + }}} */

/* + Clearfix {{{ */
/* from HTML5 Boilerplate */

.clearfix:before, .clearfix:after {
    content: "\0020";
    display: block;
    height: 0;
    visibility: hidden;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

/* + }}} */


/* + Old themetrust {{{ */

/* /////////////////////////////////////////////////////////////////////
//  02 - Global
/////////////////////////////////////////////////////////////////////*/

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

li {
    margin: 0 0 0 0;
    padding: 0;
}

img {
    margin: 0;
}

img.left {
    margin: 0 15px 15px 0;
    float: left;
}

a img {
    border:none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 15px 0;
    font-weight: normal;
}

blockquote, address {
    margin: 0 0 30px 0;
    padding: 0 30px 0 30px;
    font-style: italic;
    font-size: 1.2em;
}

code {
    font-family: "Courier New", Courier, serif;
    overflow: auto;
    padding: 2px;
    background: #fff;
}

pre code {
    background: none;
}

pre {
    margin: 0 0 20px;
    padding: 10px;
    background: #fff;
    overflow: auto;
    border: 1px solid #e4e4e4;
}

.left {
    float: left;
}

.right {
    float: right;
}


a.action {
    font-style: italic;
}

.wp-caption-text {
    font-size: .75em;
    text-align: left;
    padding-top: 7px;
}

/* + }}} */
