@charset "UTF-8";
/*
 * SMACSS + SCSS starter v2.0
 * Inspired by SMACSS http://smacss.com
 * Author: @jonathanpath
 * Date: 11 July 2013
 *
 * https://github.com/jonathanpath/SASS-SMACSS
 * See file structure in http://jonathanpath.com/sass+smacss/scss/style.scss
 * Sass Structure inspired by : https://github.com/sutter/POPY-starter-HTML-SCSS
 *
 * Coding rules : https://github.com/necolas/idiomatic-css
 *
 */
/**/
/* Tools */
/*

	@include keyframes(slide-down) {
	  0% { opacity: 1; }
	  90% { opacity: 0; }
	}

	.element {
	  width: 100px;
	  height: 100px;
	  background: black;
	  @include animation('slide-down 5s 3');
	} 

*/
/* ===========================
   Tools/Helpers
   =========================== */
/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px; }

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%; }

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden; }

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden; }

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.clearfix:after {
  clear: both; }

/* Show hide touch device
-------------------------*/
.touch .show-touch {
  display: block; }

.touch .hide-touch {
  display: none; }

.no-touch .show-touch {
  display: none; }

.no-touch .hide-touch {
  display: block; }

/* =Wordpress alignment
-------------------*/
.alignleft {
  display: inline;
  float: left; }

.alignright {
  display: inline;
  float: right; }

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto; }

.txtleft {
  text-align: left; }

.txtright {
  text-align: right; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v0.10.4
* Docs at http://davidtheclark.github.io/scut
*/
/*Margot Breakpoint*/
/* Show / hide helpers */
@media only screen and (max-width: 700px) {
  .hide-s {
    display: none; }
  .show-s {
    display: block; }
  .show-m {
    display: none; }
  .show-l {
    display: none; } }

@media only screen and (min-width: 700px) and (max-width: 1000px) {
  .hide-m {
    display: none; }
  .show-s {
    display: none; }
  .show-m {
    display: block; }
  .show-l {
    display: none; } }

@media only screen and (min-width: 1000px) {
  .hide-l {
    display: none; }
  .show-s {
    display: none; }
  .show-m {
    display: none; }
  .show-l {
    display: block; } }

/* Base */
/*! normalize.css v3.0.0 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

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

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

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

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

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

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

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

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

/**
 * 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; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0; }

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

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10.
 */
button {
  overflow: visible; }

/**
 * 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 Firefox, IE 8+, and Opera
 * Correct `select` style inheritance in Firefox.
 */
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.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

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

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

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

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 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 and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 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 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: normal; }

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

td,
th {
  padding: 0; }

/* =======================
   Typography / Base
   ======================= */
.t-antialias {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.t-body, input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="search"],
textarea, .form-select select, body {
  font-family: "lexia",serif;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.8rem; }
  @media only screen and (max-width: 700px) {
    .t-body, input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="date"],
    input[type="search"],
    textarea, .form-select select, body {
      font-size: 16px;
      font-size: 1.6rem; } }

body {
  color: #333333; }

/*NAVIGATION*/
ul#menu-header li {
  font-family: "proxima-nova", sans-serif; }
  ul#menu-header li a {
    font-size: 19px;
    font-size: 1.9rem;
    color: #596573; }
    ul#menu-header li a:hover {
      opacity: 0.5; }
    @media only screen and (min-width: 1000px) and (max-width: 1150px) {
      ul#menu-header li a {
        font-size: 16px;
        font-size: 1.6rem; } }

ul#menu-header li.current-menu-item a {
  color: #633793; }

.menu-sitemap-container li {
  font-family: "proxima-nova", sans-serif;
  margin: 10px 0; }
  .menu-sitemap-container li a {
    font-size: 16px;
    font-size: 1.6rem;
    color: #00a198;
    text-transform: uppercase; }
    .menu-sitemap-container li a:hover {
      opacity: 0.5; }

.menu-sitemap-container .sub-menu li a {
  color: #596573;
  text-transform: none; }

.back-buttons a {
  color: #999999;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  text-transform: uppercase; }
  .back-buttons a:hover {
    color: #633793; }

h1, .slideshow-text h1 {
  font-family: "proxima-nova", sans-serif;
  font-size: 60px;
  font-size: 6.0rem;
  color: white;
  font-weight: 300;
  text-transform: uppercase;
  text-shadow: 3px 1px 3px rgba(63, 63, 63, 0.5);
  text-align: center; }
  @media only screen and (min-width: 1000px) and (max-width: 1150px) {
    h1, .slideshow-text h1 {
      font-size: 40px;
      font-size: 4.0rem; } }
  @media only screen and (min-width: 700px) and (max-width: 1000px) {
    h1, .slideshow-text h1 {
      font-size: 30px;
      font-size: 3.0rem; } }
  @media only screen and (max-width: 700px) {
    h1, .slideshow-text h1 {
      font-size: 20px;
      font-size: 2.0rem; } }

.single-post h1 {
  font-size: 30px;
  font-size: 3.0rem; }
  @media only screen and (max-width: 700px) {
    .single-post h1 {
      font-size: 14px;
      font-size: 1.4rem; } }

.slideshow-text h1 {
  margin: 0; }

.slideshow-text {
  font-family: "lexia",serif;
  font-size: 30px;
  font-size: 3.0rem; }
  @media only screen and (min-width: 1000px) and (max-width: 1150px) {
    .slideshow-text {
      font-size: 25px;
      font-size: 2.5rem; } }
  @media only screen and (min-width: 700px) and (max-width: 1000px) {
    .slideshow-text {
      font-size: 20px;
      font-size: 2.0rem; } }
  @media only screen and (max-width: 700px) {
    .slideshow-text {
      font-size: 14px;
      font-size: 1.4rem;
      font-weight: 300; } }

h2 {
  font-family: "proxima-nova", sans-serif;
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: 300;
  color: #633793;
  text-transform: uppercase;
  margin: 0px 0px 10px 0px; }
  @media only screen and (max-width: 700px) {
    h2 {
      font-size: 25px;
      font-size: 2.5rem; } }

h3 {
  font-family: "proxima-nova", sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 300;
  color: #633793;
  text-transform: uppercase;
  margin: 0px 0px 20px 0px; }
  @media only screen and (max-width: 700px) {
    h3 {
      font-size: 20px;
      font-size: 2.0rem; } }

.t_h3 {
  font-family: "proxima-nova", sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 300;
  color: #00a198;
  text-transform: uppercase; }
  @media only screen and (max-width: 700px) {
    .t_h3 {
      font-size: 20px;
      font-size: 2.0rem; } }

/*.related-title, .preview-subtitle, .filter-title*/
.t_h4, .related-title, .preview-subtitle, .filter-title {
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #00a198;
  font-weight: 400;
  display: block; }

.t_h5 {
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #00a198;
  font-weight: 400;
  display: block; }

.view-all {
  font-family: "proxima-nova", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 300;
  color: #00a198; }

.introduction-text {
  font-family: "lexia",serif;
  font-weight: 300;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 32px;
  color: #3f3f3f; }

.related-text {
  display: block;
  font-family: "lexia",serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1.6rem;
  color: #333333;
  margin: 2px 0px 5px 0px; }

.latest-tweet {
  display: block;
  font-family: "lexia",serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1.6rem; }

.category {
  display: block;
  font-family: "proxima-nova", sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-size: 1.2rem;
  color: #00a198;
  margin: 5px 0px 5px 0px;
  text-transform: uppercase; }

.read-more {
  display: block;
  font-family: "proxima-nova", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 400;
  color: #00a198; }

.pagination {
  display: block;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 400;
  color: #333333; }
  .pagination a {
    color: #00a198; }

.date-container {
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 300; }

.testimonial-text {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 22px; }

.testimonial-author {
  font-size: 14px;
  font-size: 1.4rem;
  color: #00a198;
  font-style: italic; }

.preview-title {
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: white; }

.footer-title {
  font-family: "proxima-nova", sans-serif;
  font-size: 20px;
  font-size: 2.0rem;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 2px solid white;
  display: inline-block;
  margin-bottom: 20px; }
  @media only screen and (min-width: 700px) and (max-width: 1000px) {
    .footer-title {
      font-size: 18px;
      font-size: 1.8rem; } }
  @media only screen and (max-width: 700px) {
    .footer-title {
      font-size: 14px;
      font-size: 1.4rem; } }

.footer-text {
  display: block;
  font-weight: 100;
  line-height: 1.4em; }

footer nav li a {
  font-family: "lexia",serif;
  font-weight: 100;
  font-size: 18px;
  font-size: 1.8rem; }

.preview-text {
  font-family: "lexia",serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 1.4rem;
  color: #333333;
  margin: 5px 0px 8px 0px;
  display: block; }

.filters-link a {
  font-family: "lexia",serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1.6rem;
  color: #333333;
  margin: 3px 0;
  display: inline-block; }

.filters-link a.selected {
  color: #00a198; }

.filters-link a.selected::after {
  content: "X";
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  padding-left: 10px; }

.clients-filters {
  text-align: center;
  color: #00a198;
  margin-bottom: 40px; }
  .clients-filters a {
    font-family: "proxima-nova", sans-serif;
    font-size: 20px;
    font-size: 2.0rem;
    display: inline-block;
    color: #00a198; }

[class^="icon-"], [class*=" icon-"], .icomoon {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* ==|====================
   Base/Form
   ======================= */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="search"],
textarea {
  padding: .2em;
  border: 1px solid grey;
  outline: 0;
  background-color: white; }
  input[type="text"]::-webkit-input-placeholder,
  input[type="email"]::-webkit-input-placeholder,
  input[type="password"]::-webkit-input-placeholder,
  input[type="date"]::-webkit-input-placeholder,
  input[type="search"]::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    color: grey; }
  input[type="text"]:-moz-placeholder,
  input[type="email"]:-moz-placeholder,
  input[type="password"]:-moz-placeholder,
  input[type="date"]:-moz-placeholder,
  input[type="search"]:-moz-placeholder,
  textarea:-moz-placeholder {
    color: grey; }
  input[type="text"]:-ms-input-placeholder,
  input[type="email"]:-ms-input-placeholder,
  input[type="password"]:-ms-input-placeholder,
  input[type="date"]:-ms-input-placeholder,
  input[type="search"]:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    color: grey; }

.form-select {
  border: 1px solid grey;
  width: 10em;
  overflow: hidden;
  background: white url("data:image/png;base64,R0lGODlhDwAUAIABAAAAAP///yH5BAEAAAEALAAAAAAPABQAAAIXjI+py+0Po5wH2HsXzmw//lHiSJZmUAAAOw==") no-repeat 95% 50%; }
  .form-select select {
    padding: 0.2em;
    width: 130%;
    border: none;
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none; }
    .form-select select:focus {
      outline: none; }

* {
  box-sizing: border-box;
  background-repeat: no-repeat;
  outline: 0;
  position: relative; }

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

html {
  font-size: 62.5%; }

body {
  overflow-y: scroll; }

a {
  color: #00a198;
  text-decoration: none; }
  a:hover {
    opacity: 0.8; }

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

p {
  margin: 0;
  margin-bottom: 1em; }

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

body {
  background-repeat: no-repeat;
  background-position: center top;
  /*
	@include phone {
		border:4px solid red;
	}
	@include tablet {
		border:4px solid green;
	}
	@include monitor {
		border:4px solid blue;
	}
	@include extralarge {
		border:4px solid black;
	}
*/ }

.align-left {
  text-align: left; }

.align-right {
  text-align: right; }

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

.border {
  border: 1px solid red; }

.bg-red {
  background-color: red; }

.bg-grey {
  background-color: #999999; }

.bg-green {
  background-color: #00a198; }

/* Layout */
/*-----------------------------------*
  $TOAST-GRID

  An insane grid.
  You'd be mad to use it.

  Usage
  =====

  Assuming default values:

  <div class="grid">
    <div class="grid__col grid__col--1-of-2">
      A half-width column.
    </div>
    <div class="grid__col grid__col--1-of-4 grid__col--pull-1-of-4">
      A quarter, pulled left by its own width. You get this, right?
    </div>
  </div>


  Customisation
  =============

  $grid-namespace and $grid-column-namespace
  adjusts the class names for the grid. With
  default values, grid wrappers have a class
  of '.grid' and columns '.grid__col'.

  $col-groups(n) adjusts column divisions.
  For example, $col-groups(12) will produce
  a 12-column grid. $col-groups(3,6,8)
  will produce a 3-, 6-, and 8-column grid.

  $gutter-width is—you guessed it—the gutter
  width. Accepts any unit.

  That's it. Have fun.

\*-----------------------------------*/
.l-grid {
  list-style: none;
  margin-left: -25px; }
  .l-grid > .l-col--1-of-1, .l-grid > .l-col--2-of-2, .l-grid > .l-col--3-of-3, .l-grid > .l-col--4-of-4, .l-grid > .l-col--5-of-5, .l-grid > .l-col--6-of-6, .l-grid > .l-col--8-of-8, .l-grid > .l-col--12-of-12, .l-grid > .l-col--16-of-16 {
    width: 100%; }
  .l-grid > .l-col--1-of-2, .l-grid > .l-col--2-of-4, .l-grid > .l-col--3-of-6, .l-grid > .l-col--4-of-8, .l-grid > .l-col--6-of-12, .l-grid > .l-col--8-of-16 {
    width: 50%; }
  .l-grid > .l-col--1-of-3, .l-grid > .l-col--2-of-6, .l-grid > .l-col--4-of-12 {
    width: 33.3333333333%; }
  .l-grid > .l-col--2-of-3, .l-grid > .l-col--4-of-6, .l-grid > .l-col--8-of-12 {
    width: 66.6666666667%; }
  .l-grid > .l-col--1-of-4, .l-grid > .l-col--2-of-8, .l-grid > .l-col--3-of-12, .l-grid > .l-col--4-of-16 {
    width: 25%; }
  .l-grid > .l-col--3-of-4, .l-grid > .l-col--6-of-8, .l-grid > .l-col--9-of-12, .l-grid > .l-col--12-of-16 {
    width: 75%; }
  .l-grid > .l-col--push-1-of-1, .l-grid > .l-col--push-2-of-2, .l-grid > .l-col--push-3-of-3, .l-grid > .l-col--push-4-of-4, .l-grid > .l-col--push-5-of-5, .l-grid > .l-col--push-6-of-6, .l-grid > .l-col--push-8-of-8, .l-grid > .l-col--push-12-of-12, .l-grid > .l-col--push-16-of-16 {
    margin-left: 100%; }
  .l-grid > .l-col--push-1-of-2, .l-grid > .l-col--push-2-of-4, .l-grid > .l-col--push-3-of-6, .l-grid > .l-col--push-4-of-8, .l-grid > .l-col--push-6-of-12, .l-grid > .l-col--push-8-of-16 {
    margin-left: 50%; }
  .l-grid > .l-col--push-1-of-3, .l-grid > .l-col--push-2-of-6, .l-grid > .l-col--push-4-of-12 {
    margin-left: 33.3333333333%; }
  .l-grid > .l-col--push-2-of-3, .l-grid > .l-col--push-4-of-6, .l-grid > .l-col--push-8-of-12 {
    margin-left: 66.6666666667%; }
  .l-grid > .l-col--push-1-of-4, .l-grid > .l-col--push-2-of-8, .l-grid > .l-col--push-3-of-12, .l-grid > .l-col--push-4-of-16 {
    margin-left: 25%; }
  .l-grid > .l-col--push-3-of-4, .l-grid > .l-col--push-6-of-8, .l-grid > .l-col--push-9-of-12, .l-grid > .l-col--push-12-of-16 {
    margin-left: 75%; }
  .l-grid > .l-col--pull-1-of-1, .l-grid > .l-col--pull-2-of-2, .l-grid > .l-col--pull-3-of-3, .l-grid > .l-col--pull-4-of-4, .l-grid > .l-col--pull-5-of-5, .l-grid > .l-col--pull-6-of-6, .l-grid > .l-col--pull-8-of-8, .l-grid > .l-col--pull-12-of-12, .l-grid > .l-col--pull-16-of-16 {
    margin-left: -100%; }
  .l-grid > .l-col--pull-1-of-2, .l-grid > .l-col--pull-2-of-4, .l-grid > .l-col--pull-3-of-6, .l-grid > .l-col--pull-4-of-8, .l-grid > .l-col--pull-6-of-12, .l-grid > .l-col--pull-8-of-16 {
    margin-left: -50%; }
  .l-grid > .l-col--pull-1-of-3, .l-grid > .l-col--pull-2-of-6, .l-grid > .l-col--pull-4-of-12 {
    margin-left: -33.3333333333%; }
  .l-grid > .l-col--pull-2-of-3, .l-grid > .l-col--pull-4-of-6, .l-grid > .l-col--pull-8-of-12 {
    margin-left: -66.6666666667%; }
  .l-grid > .l-col--pull-1-of-4, .l-grid > .l-col--pull-2-of-8, .l-grid > .l-col--pull-3-of-12, .l-grid > .l-col--pull-4-of-16 {
    margin-left: -25%; }
  .l-grid > .l-col--pull-3-of-4, .l-grid > .l-col--pull-6-of-8, .l-grid > .l-col--pull-9-of-12, .l-grid > .l-col--pull-12-of-16 {
    margin-left: -75%; }
  .l-grid > .l-col--1-of-5 {
    width: 20%; }
  .l-grid > .l-col--push-1-of-5 {
    margin-left: 20%; }
  .l-grid > .l-col--pull-1-of-5 {
    margin-left: -20%; }
  .l-grid > .l-col--2-of-5 {
    width: 40%; }
  .l-grid > .l-col--push-2-of-5 {
    margin-left: 40%; }
  .l-grid > .l-col--pull-2-of-5 {
    margin-left: -40%; }
  .l-grid > .l-col--3-of-5 {
    width: 60%; }
  .l-grid > .l-col--push-3-of-5 {
    margin-left: 60%; }
  .l-grid > .l-col--pull-3-of-5 {
    margin-left: -60%; }
  .l-grid > .l-col--4-of-5 {
    width: 80%; }
  .l-grid > .l-col--push-4-of-5 {
    margin-left: 80%; }
  .l-grid > .l-col--pull-4-of-5 {
    margin-left: -80%; }
  .l-grid > .l-col--1-of-6 {
    width: 16.6666666667%; }
  .l-grid > .l-col--push-1-of-6 {
    margin-left: 16.6666666667%; }
  .l-grid > .l-col--pull-1-of-6 {
    margin-left: -16.6666666667%; }
  .l-grid > .l-col--5-of-6 {
    width: 83.3333333333%; }
  .l-grid > .l-col--push-5-of-6 {
    margin-left: 83.3333333333%; }
  .l-grid > .l-col--pull-5-of-6 {
    margin-left: -83.3333333333%; }
  .l-grid > .l-col--1-of-8 {
    width: 12.5%; }
  .l-grid > .l-col--push-1-of-8 {
    margin-left: 12.5%; }
  .l-grid > .l-col--pull-1-of-8 {
    margin-left: -12.5%; }
  .l-grid > .l-col--3-of-8 {
    width: 37.5%; }
  .l-grid > .l-col--push-3-of-8 {
    margin-left: 37.5%; }
  .l-grid > .l-col--pull-3-of-8 {
    margin-left: -37.5%; }
  .l-grid > .l-col--5-of-8 {
    width: 62.5%; }
  .l-grid > .l-col--push-5-of-8 {
    margin-left: 62.5%; }
  .l-grid > .l-col--pull-5-of-8 {
    margin-left: -62.5%; }
  .l-grid > .l-col--7-of-8 {
    width: 87.5%; }
  .l-grid > .l-col--push-7-of-8 {
    margin-left: 87.5%; }
  .l-grid > .l-col--pull-7-of-8 {
    margin-left: -87.5%; }
  .l-grid > .l-col--1-of-12 {
    width: 8.3333333333%; }
  .l-grid > .l-col--push-1-of-12 {
    margin-left: 8.3333333333%; }
  .l-grid > .l-col--pull-1-of-12 {
    margin-left: -8.3333333333%; }
  .l-grid > .l-col--2-of-12 {
    width: 16.6666666667%; }
  .l-grid > .l-col--push-2-of-12 {
    margin-left: 16.6666666667%; }
  .l-grid > .l-col--pull-2-of-12 {
    margin-left: -16.6666666667%; }
  .l-grid > .l-col--5-of-12 {
    width: 41.6666666667%; }
  .l-grid > .l-col--push-5-of-12 {
    margin-left: 41.6666666667%; }
  .l-grid > .l-col--pull-5-of-12 {
    margin-left: -41.6666666667%; }
  .l-grid > .l-col--7-of-12 {
    width: 58.3333333333%; }
  .l-grid > .l-col--push-7-of-12 {
    margin-left: 58.3333333333%; }
  .l-grid > .l-col--pull-7-of-12 {
    margin-left: -58.3333333333%; }
  .l-grid > .l-col--10-of-12 {
    width: 83.3333333333%; }
  .l-grid > .l-col--push-10-of-12 {
    margin-left: 83.3333333333%; }
  .l-grid > .l-col--pull-10-of-12 {
    margin-left: -83.3333333333%; }
  .l-grid > .l-col--11-of-12 {
    width: 91.6666666667%; }
  .l-grid > .l-col--push-11-of-12 {
    margin-left: 91.6666666667%; }
  .l-grid > .l-col--pull-11-of-12 {
    margin-left: -91.6666666667%; }
  .l-grid > .l-col--1-of-16 {
    width: 6.25%; }
  .l-grid > .l-col--push-1-of-16 {
    margin-left: 6.25%; }
  .l-grid > .l-col--pull-1-of-16 {
    margin-left: -6.25%; }
  .l-grid > .l-col--2-of-16 {
    width: 12.5%; }
  .l-grid > .l-col--push-2-of-16 {
    margin-left: 12.5%; }
  .l-grid > .l-col--pull-2-of-16 {
    margin-left: -12.5%; }
  .l-grid > .l-col--3-of-16 {
    width: 18.75%; }
  .l-grid > .l-col--push-3-of-16 {
    margin-left: 18.75%; }
  .l-grid > .l-col--pull-3-of-16 {
    margin-left: -18.75%; }
  .l-grid > .l-col--5-of-16 {
    width: 31.25%; }
  .l-grid > .l-col--push-5-of-16 {
    margin-left: 31.25%; }
  .l-grid > .l-col--pull-5-of-16 {
    margin-left: -31.25%; }
  .l-grid > .l-col--6-of-16 {
    width: 37.5%; }
  .l-grid > .l-col--push-6-of-16 {
    margin-left: 37.5%; }
  .l-grid > .l-col--pull-6-of-16 {
    margin-left: -37.5%; }
  .l-grid > .l-col--7-of-16 {
    width: 43.75%; }
  .l-grid > .l-col--push-7-of-16 {
    margin-left: 43.75%; }
  .l-grid > .l-col--pull-7-of-16 {
    margin-left: -43.75%; }
  .l-grid > .l-col--9-of-16 {
    width: 56.25%; }
  .l-grid > .l-col--push-9-of-16 {
    margin-left: 56.25%; }
  .l-grid > .l-col--pull-9-of-16 {
    margin-left: -56.25%; }
  .l-grid > .l-col--10-of-16 {
    width: 62.5%; }
  .l-grid > .l-col--push-10-of-16 {
    margin-left: 62.5%; }
  .l-grid > .l-col--pull-10-of-16 {
    margin-left: -62.5%; }
  .l-grid > .l-col--11-of-16 {
    width: 68.75%; }
  .l-grid > .l-col--push-11-of-16 {
    margin-left: 68.75%; }
  .l-grid > .l-col--pull-11-of-16 {
    margin-left: -68.75%; }
  .l-grid > .l-col--13-of-16 {
    width: 81.25%; }
  .l-grid > .l-col--push-13-of-16 {
    margin-left: 81.25%; }
  .l-grid > .l-col--pull-13-of-16 {
    margin-left: -81.25%; }
  .l-grid > .l-col--14-of-16 {
    width: 87.5%; }
  .l-grid > .l-col--push-14-of-16 {
    margin-left: 87.5%; }
  .l-grid > .l-col--pull-14-of-16 {
    margin-left: -87.5%; }
  .l-grid > .l-col--15-of-16 {
    width: 93.75%; }
  .l-grid > .l-col--push-15-of-16 {
    margin-left: 93.75%; }
  .l-grid > .l-col--pull-15-of-16 {
    margin-left: -93.75%; }
  @media (max-width: 700px) {
    .l-grid {
      margin-left: -10px; } }
  @media (max-width: 1000px) and (min-width: 700px) {
    .l-grid {
      margin-left: -15px; } }
  .l-grid .l-col {
    box-sizing: border-box;
    display: inline-block;
    margin-right: -.25em;
    min-height: 1px;
    padding-left: 25px;
    vertical-align: top;
    /*
    @media (max-width: $bp-m) {
      padding-left: $gutter-width-m;
      display: block;
      margin-left: 0;
      margin-right: 0;
      width: auto;
    }*/ }
    @media (max-width: 1000px) and (min-width: 700px) {
      .l-grid .l-col {
        padding-left: 15px; }
        .l-grid .l-col[class*="l-col--m-"] {
          display: inline-block;
          margin-right: -.24em; }
        .l-grid .l-col.l-col--m-1-of-1 {
          width: 100%; }
        .l-grid .l-col.l-col--m-1-of-2, .l-grid .l-col.l-col--m-2-of-4 {
          width: 50%; }
        .l-grid .l-col.l-col--m-1-of-3 {
          width: 33.3333333333%; }
        .l-grid .l-col.l-col--m-2-of-3 {
          width: 66.6666666667%; }
        .l-grid .l-col.l-col--m-1-of-4 {
          width: 25%; }
        .l-grid .l-col.l-col--m-3-of-4 {
          width: 75%; } }
    @media (max-width: 700px) {
      .l-grid .l-col {
        display: block;
        margin-left: 0;
        margin-right: 0;
        width: auto;
        padding-left: 10px; }
        .l-grid .l-col[class*="l-col--s-"] {
          display: inline-block;
          margin-right: -.24em; }
        .l-grid .l-col.l-col--s-1-of-2, .l-grid .l-col.l-col--s-2-of-4 {
          width: 50%; }
        .l-grid .l-col.l-col--s-1-of-3 {
          width: 33.3333333333%; }
        .l-grid .l-col.l-col--s-2-of-3 {
          width: 66.6666666667%; }
        .l-grid .l-col.l-col--s-1-of-4 {
          width: 25%; }
        .l-grid .l-col.l-col--s-3-of-4 {
          width: 75%; } }
  .l-grid .l-col--centered {
    display: block;
    margin-left: auto;
    margin-right: auto; }
  .l-grid .l-col--d-first {
    float: left; }
  .l-grid .l-col--d-last {
    float: right; }
  .l-grid.l-grid--no-gutter {
    margin-left: 0;
    width: 100%; }
    .l-grid.l-grid--no-gutter > * {
      padding-left: 0; }
    .l-grid.l-grid--no-gutter .l-col--span-all {
      margin-left: 0;
      width: 100%; }
  .l-grid .l-col--ab {
    vertical-align: bottom; }
  .l-grid .l-col--am {
    vertical-align: middle; }

/* ======================
   Layout/Main
   ======================= */
.l-fluid {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto; }

.l-padding-all {
  padding: 25px; }
  @media only screen and (max-width: 700px) {
    .l-padding-all {
      padding: 10px; } }
  @media only screen and (min-width: 700px) and (max-width: 1000px) {
    .l-padding-all {
      padding: 15px; } }

.l-padding {
  padding-left: 25px;
  padding-right: 25px; }
  @media only screen and (max-width: 700px) {
    .l-padding {
      padding-left: 10px; } }
  @media only screen and (min-width: 700px) and (max-width: 1000px) {
    .l-padding {
      padding-left: 15px; } }
  @media only screen and (max-width: 700px) {
    .l-padding {
      padding-right: 10px; } }
  @media only screen and (min-width: 700px) and (max-width: 1000px) {
    .l-padding {
      padding-right: 15px; } }

.l-padding-half {
  padding-left: 12.5px;
  padding-right: 12.5px; }
  @media only screen and (max-width: 700px) {
    .l-padding-half {
      padding-left: 5px; } }
  @media only screen and (min-width: 700px) and (max-width: 1000px) {
    .l-padding-half {
      padding-left: 7.5px; } }
  @media only screen and (max-width: 700px) {
    .l-padding-half {
      padding-right: 5px; } }
  @media only screen and (min-width: 700px) and (max-width: 1000px) {
    .l-padding-half {
      padding-right: 7.5px; } }

.l-padding-b {
  padding-bottom: 25px; }
  @media only screen and (max-width: 700px) {
    .l-padding-b {
      padding-bottom: 10px; } }
  @media only screen and (min-width: 700px) and (max-width: 1000px) {
    .l-padding-b {
      padding-bottom: 15px; } }

.l-padding-t {
  padding-top: 25px; }
  @media only screen and (max-width: 700px) {
    .l-padding-t {
      padding-top: 10px; } }
  @media only screen and (min-width: 700px) and (max-width: 1000px) {
    .l-padding-t {
      padding-top: 15px; } }

.l-margin-b {
  margin-bottom: 25px; }
  @media only screen and (max-width: 700px) {
    .l-margin-b {
      margin-bottom: 10px; } }
  @media only screen and (min-width: 700px) and (max-width: 1000px) {
    .l-margin-b {
      margin-bottom: 15px; } }

.l-margin-t {
  margin-top: 25px; }
  @media only screen and (max-width: 700px) {
    .l-margin-t {
      margin-top: 10px; } }
  @media only screen and (min-width: 700px) and (max-width: 1000px) {
    .l-margin-t {
      margin-top: 15px; } }

.l-margin-td {
  margin-top: 50px; }
  @media only screen and (max-width: 700px) {
    .l-margin-td {
      margin-top: 20px; } }
  @media only screen and (min-width: 700px) and (max-width: 1000px) {
    .l-margin-td {
      margin-top: 30px; } }

.no-height {
  height: 0 !important; }

/* Vendors */
.b-lazy {
  transition: opacity 500ms ease-in-out;
  max-width: 100%;
  height: auto;
  opacity: 0; }

.b-lazy.b-loaded {
  opacity: 1; }

.image-wrapper {
  background: gray;
  width: 100%; }

.ratio_16-9 {
  padding-bottom: 56.25%;
  height: 0; }

/* Modules */
header {
  background-color: white; }
  header a.header-logo {
    display: block;
    background-image: url(../img/lexcomm-logo-header-1.svg);
    background-repeat: no-repeat;
    width: 284px;
    height: 56px;
    margin: 20px auto 42px auto; }
    @media only screen and (max-width: 1000px) {
      header a.header-logo {
        margin: 10px 10px;
        width: 250px;
        height: 40px; } }
  header nav {
    position: relative;
    z-index: 100;
    display: block;
    text-transform: uppercase;
    text-align: center;
    padding: 0 0 20px 0; }
    header nav li {
      display: inline-block;
      margin: 0 10px; }
      @media only screen and (min-width: 1000px) and (max-width: 1150px) {
        header nav li {
          margin: 0px 7px; } }
    @media only screen and (max-width: 1000px) {
      header nav {
        padding: 0 0 10px 0;
        text-align: right; }
        header nav li {
          display: block;
          padding: 10px 10px; } }
  header .mobile-menu-container {
    display: none;
    top: 0px;
    right: 20px;
    width: 30px;
    height: 30px;
    position: absolute; }
    @media only screen and (max-width: 1000px) {
      header .mobile-menu-container {
        display: block; }
        header .mobile-menu-container a {
          width: 30px;
          height: 30px;
          background-image: url(../img/menu.svg);
          display: block; } }
  header .social-icon {
    position: absolute;
    top: 0px;
    right: 20px; }
    @media only screen and (max-width: 1000px) {
      header .social-icon {
        right: 60px;
        top: 5px; } }
    header .social-icon li {
      display: inline-block;
      margin-left: 10px; }
      header .social-icon li .twitter {
        background-image: url(../img/twitter.svg);
        background-repeat: no-repeat;
        width: 23px;
        height: 19px;
        display: inline-block; }
      header .social-icon li .linkedin {
        background-image: url(../img/linkedin.svg);
        background-repeat: no-repeat;
        width: 26px;
        height: 19px;
        display: inline-block; }

footer {
  background-color: #596573;
  padding: 60px 0px;
  color: white;
  margin-top: 40px; }
  footer .contact-slider-container {
    border: 1px solid red;
    position: absolute;
    bottom: 20px;
    background-color: black;
    z-index: 900;
    font-size: 10px; }
  footer .third-column {
    text-align: right; }
    @media only screen and (max-width: 700px) {
      footer .third-column {
        text-align: left; } }
    footer .third-column .footer-logo {
      float: right;
      display: inline-block;
      background-image: url(../img/footer-logo.svg);
      background-position: top right;
      background-repeat: no-repeat;
      width: 212px;
      height: 41px;
      margin-bottom: 13px; }
      @media only screen and (max-width: 700px) {
        footer .third-column .footer-logo {
          float: none;
          margin-top: 20px; } }
    footer .third-column nav {
      display: block;
      width: 100%;
      clear: both; }
      footer .third-column nav li {
        margin: 5px 0; }
        footer .third-column nav li a {
          color: white; }

/* Pages */
.top-image-container {
  position: relative;
  height: auto;
  width: 100%;
  margin-bottom: 20px; }
  .top-image-container img {
    position: relative;
    height: auto;
    width: 100%; }
  .top-image-container h1 {
    margin: 0 0 0 -20px;
    z-index: 2;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-40%, -50%);
        -ms-transform: translate(-40%, -50%);
            transform: translate(-40%, -50%); }

.intro {
  text-align: center; }

.intro-container {
  margin-left: -25px; }

.back {
  margin-bottom: 20px;
  display: block; }

.main-content {
  margin: 0 auto; }
  .main-content ul {
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 20px; }
    .main-content ul li {
      margin-bottom: 3px; }

/*contact*/
.contact-container {
  margin-bottom: 30px; }
  .contact-container .t_h3 {
    margin-bottom: 10px;
    display: block;
    color: #633793; }
  .contact-container a {
    color: #633793; }
  @media only screen and (max-width: 700px) {
    .contact-container .contact-map {
      display: none; } }

.related-content .related-title {
  margin: 20px auto 10px auto;
  text-align: center; }
  .related-content .related-title a {
    display: inline-block; }

.related-content .t_h3.testimonials {
  float: none; }

.related-content .t_h3, .related-content .view-all {
  float: left; }

.related-content .view-all {
  margin: 9px 0 0 15px; }

.related-content a.related-block {
  margin-bottom: 25px; }
  .related-content a.related-block:hover .related-text {
    color: #00a198; }

.related-content .date-container {
  background-color: #00a198;
  color: white;
  padding: 5px; }

.related-content .testimonial-text p {
  display: inline;
  margin-left: 3px; }

.related-content .testimonial-text:before {
  content: open-quote;
  font-size: 20px; }

.related-content .testimonial-text:after {
  content: close-quote;
  font-size: 20px; }

.related-content .testimonial-author {
  display: block;
  margin-top: 10px; }

/*What we do*/
.preview-title {
  margin-top: -5px;
  padding: 5px;
  background-color: #633793;
  text-align: left;
  display: block; }

.preview-block {
  margin-bottom: 20px; }

/*Case Studies*/
#filters {
  margin-bottom: 20px; }

.filter-title {
  display: block;
  border-bottom: 1px dotted #333333;
  padding-bottom: 5px;
  margin-bottom: 15px; }

.preview-block.case-study-block {
  text-align: left; }
  .preview-block.case-study-block .preview-title {
    margin-top: -5px;
    padding: 5px;
    background-color: #00a198;
    text-align: left;
    display: block; }
  .preview-block.case-study-block .preview-subtitle {
    display: block; }

/*Clients*/
.client-block.images {
  height: 100px;
  margin-bottom: 20px; }
  .client-block.images .client-name {
    display: none; }
  .client-block.images .client-container {
    border: 1px solid #333333;
    display: block;
    height: 100%;
    width: 100%;
    margin-left: -10px;
    display: block;
    padding: 12px; }
    .client-block.images .client-container .client-image-logo {
      display: block;
      width: 100%;
      height: 100%;
      background-position: center center;
      background-repeat: no-repeat;
      background-size: contain; }

a.client-block.images:hover .client-container {
  border: 1px solid #00a198; }

.client-block.list {
  display: inline-block;
  width: 210px;
  height: auto;
  background-image: none !important;
  border: 0px solid #333333;
  background-position: center center;
  background-repeat: no-repeat; }

.clients-container .t_h3 {
  display: block;
  text-align: center;
  margin-bottom: 10px; }

.clients-filters a.selected {
  border-bottom: 2px solid #00a198; }

.team-block {
  margin-bottom: 25px; }

.portrait {
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px; }
  .portrait img {
    float: left; }

/*Sitemap*/
.menu-sitemap-container {
  margin: 0 auto; }
  .menu-sitemap-container .sub-menu {
    margin-left: 20px; }

/*Articles*/
.related-block {
  text-align: left; }

/*Forms*/
.ninja-forms-form .ninja-forms-required-items {
  margin-bottom: 20px; }

.ninja-forms-form label {
  font-weight: 300 !important; }

.ninja-forms-form #nf_submit_5 input {
  color: white;
  background-color: #00a198;
  border: 0px solid green;
  padding: 5px 15px; }

/*Team selection*/
.selected_team_container {
  margin-bottom: 50px; }
  .selected_team_container .main-content {
    margin-bottom: 40px; }
  .selected_team_container #filters {
    margin-bottom: 70px; }

/*Homepage*/
.page-template-tpl-homepage #full-width-slider {
  overflow: hidden;
  text-align: center; }
  .page-template-tpl-homepage #full-width-slider .individual-slides {
    position: absolute;
    max-height: 550px;
    overflow: hidden; }
  .page-template-tpl-homepage #full-width-slider .slideshow-text {
    width: 100%;
    padding: 0px;
    margin: 0 0 0 0px;
    padding: 0 15%;
    z-index: 2;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -55%);
        -ms-transform: translate(-50%, -55%);
            transform: translate(-50%, -55%);
    background-color: transparent; }
    @media only screen and (min-width: 700px) and (max-width: 1000px) {
      .page-template-tpl-homepage #full-width-slider .slideshow-text {
        padding: 0 20px; } }
    @media only screen and (max-width: 700px) {
      .page-template-tpl-homepage #full-width-slider .slideshow-text {
        padding: 0 10px;
        left: 50%;
        top: 45%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); } }
  @media only screen and (max-width: 700px) {
    .page-template-tpl-homepage #full-width-slider .rsArrow {
      display: none !important;
      border: 1px solid red; } }

.section-repeater {
  margin-top: 20px;
  margin-bottom: 20px; }

.section-repeater.oddpost {
  background-color: #efefef;
  padding: 20px 0; }

.sector-block-container {
  margin-top: 20px;
  /*margin: 20px 0 0 0;*/ }

.case-study-block .related-title {
  text-align: left;
  margin: 5px 0; }

.individual-slides {
  position: absolute;
  max-height: 550px; }

.slideshow-text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 400px;
  background-color: #fff;
  padding: 10px; }

/*Latest tweet*/
.latest-tweet .twitter-name {
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;
  background-image: url(../img/tweet.svg);
  background-repeat: no-repeat;
  width: 18px;
  height: 16px; }

.latest-tweet .timestamp a {
  margin-bottom: 5px;
  color: #333333; }

/* lists & repeated elememts */

/*# sourceMappingURL=_/css/style.css.map */