@charset "UTF-8";
/*
Theme Name: Langley Projects 2.0
Theme URI:
Author: Clear Cut Web Design
Author URI:
Description: Clear Cut Web Project
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
/*
Copyright 2016 ClearCut Web Solutions Ltd, All Rights Reserved.
*/
/* SCSS Libraries */
html {
  box-sizing: border-box;
}

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

/*
*/
/*
================================================================================
|                               BUTTONS                                         |
================================================================================
*/
button, input[type="button"], input[type="reset"], input[type="submit"] {
  appearance: none;
  background-color: #C6C6C6;
  border: 0;
  color: #2D2B2B;
  cursor: pointer;
  font-family: Arial;
  font-size: 1em;
  -webkit-font-smoothing: antialiased;
  font-weight: normal;
  line-height: 2;
  margin-top: 0.275em;
  text-decoration: none;
  transition: background-color 300ms ease;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}

button:hover, button:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="reset"]:hover, input[type="reset"]:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background-color: #851913;
  color: #fff;
}

button:disabled, input[type="button"]:disabled, input[type="reset"]:disabled, input[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

button:disabled:hover, input[type="button"]:disabled:hover, input[type="reset"]:disabled:hover, input[type="submit"]:disabled:hover {
  background-color: #DE2920;
}

/*
*/
/*
================================================================================
|                               FORMS                                          |
================================================================================
*/
fieldset {
  background-color: #F2F2F2;
  border: 1px solid #F2F2F2;
  margin: 0 0 0.1375em;
  padding: 0.275em;
}

input {
  -webkit-appearance: none  !important;
}

input,
label,
select {
  display: block;
  font-family: Arial;
  font-size: 1em;
}

label {
  font-weight: 500;
  margin-bottom: 0.275em;
}

label.required::after {
  content: "*";
}

label abbr {
  display: none;
}

input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], input:not([type]), textarea,
select[multiple=multiple] {
  background-color: #FFFFFF;
  border: 1px solid #F2F2F2;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  font-family: Arial;
  font-size: 1.375em;
  line-height: 1.75em;
  margin-bottom: 0.275em;
  padding: 0.1375em;
  transition: border-color 300ms ease;
  width: 100%;
}

input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="email"]:hover, input[type="month"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="time"]:hover, input[type="url"]:hover, input[type="week"]:hover, input:not([type]):hover, textarea:hover,
select[multiple=multiple]:hover {
  border-color: #242222;
}

input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, input:not([type]):focus, textarea:focus,
select[multiple=multiple]:focus {
  border-color: #DE2920;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(200, 37, 29, 0.7);
  outline: none;
}

input[type="color"]:disabled, input[type="date"]:disabled, input[type="datetime"]:disabled, input[type="datetime-local"]:disabled, input[type="email"]:disabled, input[type="month"]:disabled, input[type="number"]:disabled, input[type="password"]:disabled, input[type="search"]:disabled, input[type="tel"]:disabled, input[type="text"]:disabled, input[type="time"]:disabled, input[type="url"]:disabled, input[type="week"]:disabled, input:not([type]):disabled, textarea:disabled,
select[multiple=multiple]:disabled {
  background-color: #f2f2f2;
  cursor: not-allowed;
}

input[type="color"]:disabled:hover, input[type="date"]:disabled:hover, input[type="datetime"]:disabled:hover, input[type="datetime-local"]:disabled:hover, input[type="email"]:disabled:hover, input[type="month"]:disabled:hover, input[type="number"]:disabled:hover, input[type="password"]:disabled:hover, input[type="search"]:disabled:hover, input[type="tel"]:disabled:hover, input[type="text"]:disabled:hover, input[type="time"]:disabled:hover, input[type="url"]:disabled:hover, input[type="week"]:disabled:hover, input:not([type]):disabled:hover, textarea:disabled:hover,
select[multiple=multiple]:disabled:hover {
  border: 1px solid #F2F2F2;
}

textarea {
  resize: vertical;
}

input[type="search"] {
  appearance: none;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
  margin-right: 0.06875em;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
  display: inline-block;
}

input[type="file"] {
  margin-bottom: 0.1375em;
  width: 100%;
}

select {
  margin-bottom: 0.275em;
  max-width: 100%;
  width: auto;
}

/*
*/
/*
================================================================================
|                               LISTS                                         |
================================================================================
*/
ul,
ol {
  list-style-type: disc;
  list-style-position: outside;
  margin: 0;
  line-height: 1.475em;
}

dl {
  margin-bottom: 0.1375em;
}

dl dt {
  font-weight: bold;
  margin-top: 0.1375em;
}

dl dd {
  margin: 0;
}

#main-content ul {
  padding: 0 0 0 1.65em;
}

/*
*/
/*
================================================================================
|                               TABLES                                         |
================================================================================
*/
table {
  border-collapse: collapse;
  font-feature-settings: "kern", "liga", "tnum";
  margin: 0.1375em 0;
  table-layout: fixed;
  width: 100%;
}

th {
  border-bottom: 1px solid #222020;
  font-weight: 600;
  padding: 0.1375em 0;
  text-align: left;
}

td {
  border-bottom: 1px solid #F2F2F2;
  padding: 0.1375em 0;
}

tr,
td,
th {
  vertical-align: middle;
}

/**/
/*
================================================================================
|                            TYPOGRAPHY                                        |
================================================================================
*/
/*
*/
body {
  color: #2D2B2B;
  font-family: Arial;
  font-feature-settings: "kern", "liga", "pnum";
  font-size: 16px;
  line-height: 1.1em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Arial;
  color: #DE2920;
}

.header-style, #main-content h1, #main-content h2 {
  font-size: 1.375em;
  line-height: 1.25em;
  font-weight: bold;
  color: #DE2920;
  padding: 0.4125em 0;
}

#main-content {
  color: #2D2B2B;
}

#main-content h2 {
  font-size: 1.1875em;
}

#main-content h3 {
  font-size: 1.125em;
  line-height: 1.1875em;
  font-weight: 400;
  color: #DE2920;
  padding-bottom: 0.275em;
}

#main-content h4 {
  font-size: 0.875em;
  line-height: 1em;
  font-weight: 400;
  color: #DE2920;
  padding-bottom: 0.1375em;
}

#main-content h5 {
  font-size: 0.75em;
  line-height: 0.875em;
  font-weight: 400;
  color: #DE2920;
  padding-bottom: 0.1375em;
}

#main-content p strong {
  font-weight: bold;
}

#main-content p a {
  color: #000;
  font-size: 1.077em;
  line-height: 1em;
  font-weight: 400;
  text-decoration: underline;
}

#main-content img {
  width: 100%;
  max-width: 100%;
}

@media screen and (min-width: 601px) {
  #main-content img {
    width: auto;
  }
}

.content-style, #main-content p, #content ul.important-list {
  font-size: 1em;
  line-height: 1.25em;
  font-weight: 400;
  color: #2D2B2B;
  margin: 0.275em 0;
  padding-bottom: 0.5em;
}

.content-style-reversed {
  color: #FFFFFF;
  font-size: 1.077em;
  line-height: 1em;
  font-weight: 400;
  padding: 0.5em 0;
  text-decoration: none;
}

@media screen and (min-width: 601px) {
  .content-style-reversed {
    margin: 0 5%;
  }
}

a {
  color: #DE2920;
  text-decoration: none;
  transition: color 300ms ease;
}

a:active, a:focus, a:hover {
  color: #a71f18;
}

hr {
  border-bottom: 1px solid #F2F2F2;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: 0.275em 0;
}

img {
  margin: 0;
  max-width: 100%;
}

blockquote.important-text {
  font: 1.5em/1.7em italic Arial;
  padding: 0.275em;
  background: url(/wp-content/themes/clearcutwebproject/images/squote.png) 1% 0% no-repeat #F2F2F2;
  text-indent: 23px;
}

blockquote.important-text span {
  display: block;
  background-image: url(/wp-content/themes/clearcutwebproject/images/equote.png);
  background-repeat: no-repeat;
  background-position: bottom right;
}

blockquote.modern {
  font: 1.5em/1.7em italic Arial;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 50px;
  padding-left: 15px;
  border-left: 5px solid #DE2920;
}

#content .cite {
  text-align: right;
}

#content cite {
  text-align: right;
  font-size: 1.125em;
}

#content ul.important-list {
  list-style-image: url(/wp-content/themes/clearcutwebproject/images/list_image.gif);
  padding-left: 0;
}

@media screen and (min-width: 601px) {
  #content ul.important-list {
    padding-left: 25px;
  }
}

/* Modal*/
#modal-container {
  background-color: rgba(72, 74, 67, 0.5);
}

#modal-container footer input {
  margin: 5px auto;
}

/**/
/*
*/
/*
================================================================================
|                 BREAK LONG URLS AND WORDS                                     |
================================================================================
*/
.dont-break-out {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

/*
================================================================================
|          STICKY FOOTER WITH FIXED HEIGHT                                     |
================================================================================
*/
* {
  margin: 0;
}

html, body {
  height: 100%;
}

.wrapper {
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin: 0 auto -10em;
}

@media screen and (min-width: 601px) {
  .footer, .push {
    height: 10em;
  }
}

/*
================================================================================
|                            STANDARD ALIGNMENT                                     |
================================================================================
*/
img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

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

.alignright, .rightimg {
  float: right;
}

.alignleft, .leftimg {
  float: left;
}

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

/*
================================================================================
|                            SEARCH RESULTS                                     |
================================================================================
*/
.search-result {
  padding: 10px 0;
}

.search-result h3 {
  padding: 0 0 5px 0;
}

.search-result h3 a {
  color: #DE2920;
  font-size: 16px;
}

.navigation {
  margin: 0.275em;
  line-height: 2.75em;
  height: 2.75em;
}

.navigation span.current {
  background-color: #2D2B2B;
}

.pagination-element, .navigation a, .navigation span {
  font-size: 1.25em;
  line-height: 1.25em;
  padding: 0.4125em;
  margin: 0.275em;
  background-color: #DE2920;
  color: #FFFFFF;
}

/*
================================================================================
|                            VERTICAL ALIGNMENT                                 |
================================================================================
*/
.parent-element {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/*
*/
/*
================================================================================
|                            RESPONSIVE OBJECT                                 |
================================================================================
*/
.responsive-object {
  position: relative;
  padding-bottom: 67.5%;
  height: 0;
  margin: 10px 0;
  overflow: hidden;
}

.responsive-object iframe,
.responsive-object object,
.responsive-object embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
*/
/*
================================================================================
|                            FIX CLICK FUNCTION ON IOS                          |
================================================================================
*/
.cursor-pointer {
  cursor: pointer;
}

/*
*/
/*
================================================================================
|                                 TEXTURES                                      |
================================================================================
*/
/*
*/
/*
================================================================================
|                           NAVIGATION                                         |
================================================================================
*/
nav ul {
  list-style-type: none;
}

/*
================================================================================
|                            MAIN MENU                                         |
================================================================================
*/
.main-nav {
  height: auto;
}

.main-nav > ul {
  list-style: none;
  z-index: 2;
  height: 100%;
}

.main-nav > ul > li {
  text-align: center;
  height: 100%;
  float: left;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 9999;
}

.main-nav > ul li a {
  display: block;
  padding: 0 0.5625em;
  color: #708BB6;
  background: transparent;
  text-decoration: none;
  font-size: 1.04em;
  line-height: 1.1em;
  height: 100%;
}

.main-nav > ul li a:hover {
  color: #FFFFFF;
  background: #DE2920;
}

.main-nav > ul li.current_page_item {
  background-color: #DE2920;
}

.main-nav > ul li.current_page_item a {
  color: #FFFFFF;
}

/**/
.main-nav > ul > li > ul {
  padding-left: 0;
  padding-top: 3px;
  list-style: none;
  position: absolute;
  z-index: 999;
  left: -9999px;
  /* Скрываем за экраном, когда не нужно (данный метод лучше, чем display:none;) */
  opacity: 0;
  /* Устнавливаем начальное состояние прозрачности */
  -webkit-transition: 0.25s linear opacity;
  /* В Webkit выпадающие пункты будут проявляться */
}

.main-nav > ul > li > ul > li {
  float: none;
  width: 100%;
  white-space: nowrap;
  border-right: none;
  padding: 0;
  /* Вводим отступ между li чтобы создать иллюзию разделенных пунктов меню */
  margin-bottom: 2px;
  text-align: left;
}

.main-nav > ul > li > ul > li > a {
  line-height: 2.2em;
  background: #F2F2F2;
  color: #708BB6;
  white-space: nowrap;
  /* Останавливаем перенос текста и создаем многострочный выпадающий пункт */
  display: block;
}

.main-nav > ul li:hover ul {
  /* Выводим выпадающий пункт при наведении курсора */
  left: 0;
  /* Приносим его обратно на экран, когда нужно */
  opacity: 1;
  /* Делаем непрозрачным */
}

.main-nav > ul li:hover ul a {
  /* Изменяем некоторые стили верхнего уровня при выводе выпадающего пункта */
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.075s linear;
  width: 100%;
}

.main-nav > ul li:hover ul li a:hover {
  /* Устанавливаем стили для выпадающих пунктов, когда курсор наводится на конкретный пункт */
  background: #DE2920;
  /* Будет полупрозрачным */
  color: #FFFFFF;
  text-decoration: none;
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
}

@media only screen and (max-width: 767px) {
  .main-nav {
    display: none;
  }
  /*Если нужно при использовании sticky_head*/
  .main-nav {
    height: auto;
  }
}

/*
================================================================================
|                            SIDE MENU                                      |
================================================================================
*/
.icon-side-nav {
  display: none;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .icon-nav {
    display: block;
    background: white;
  }
  .icon-side-nav {
    display: block;
  }
  .plus {
    display: inline;
    color: #DE2920;
    font-size: 1.5em;
    margin-left: 15px;
    cursor: pointer;
  }
}

#side-nav {
  height: auto;
  padding: 15px 0;
  text-align: center;
  font-weight: bold;
}

#side-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  height: auto;
}

#side-nav ul li {
  float: none;
  text-align: center;
  height: auto;
  padding: 0;
}

#side-nav ul li ul {
  display: none;
  padding-left: 0;
}

#side-nav ul li ul li {
  padding-right: 0;
}

#side-nav ul li ul li a {
  color: #2D2B2B;
  font-style: italic;
}

#side-nav ul li a {
  padding-left: 10px;
  font-size: 1em;
  line-height: 1.85em;
  color: #2D2B2B;
  font-weight: normal;
}

#side-nav ul li.current_page_item > a {
  color: #2D2B2B;
}

#side-nav ul li.menu-item-has-children ul {
  display: none;
}

#side-nav ul li.menu-item-has-children.current_page_item ul {
  display: block;
}

#side-nav ul li.current_page_parent ul {
  display: block;
}

@media screen and (min-width: 601px) {
  #side-nav ul {
    display: block;
  }
  #side-nav ul li {
    text-align: left;
    margin-left: 10px;
  }
  #side-nav ul li a {
    color: #2D2B2B;
    padding-left: 0;
  }
}

/*
================================================================================
|                            FOOTER MENU                                      |
================================================================================
*/
.footer-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.footer-menu ul li {
  text-align: center;
  display: inline;
}

.footer-menu ul li a {
  padding: 0 5px;
  font-size: 0.875em;
  color: #FFFFFF;
  border-right: 1px solid #FFFFFF;
}

.footer-menu ul li.last-child a {
  border-right: 0;
}

@media screen and (min-width: 601px) {
  .footer-menu ul {
    text-align: left;
  }
  .footer-menu ul li:first-child a {
    padding-left: 0;
  }
}

/*
================================================================================
|                      PAGINATION ON PAGE WITH LIST OF POSTS                    |
================================================================================
*/
.custom-pagination {
  margin-top: 1em;
  margin-bottom: 1em;
}

.custom-pagination span,
.custom-pagination a {
  display: inline-block;
  padding: 2px 10px;
}

.custom-pagination a {
  background-color: #F2F2F2;
  color: black;
}

.custom-pagination a:hover {
  background-color: #DE2920;
  color: #FFFFFF;
}

.custom-pagination span.page-num {
  margin-right: 10px;
  padding: 0;
}

.custom-pagination span.dots {
  padding: 0;
  color: gainsboro;
}

.custom-pagination span.current {
  background-color: #2D2B2B;
  color: #FFFFFF;
}

.mobile-menu {
  display: block;
  color: #FFF;
  width: 100%;
  height: auto;
  padding: 5% 20%;
  background-color: red;
  border-radius: 5px;
  line-height: 1.9em;
  font-size: 0.55em;
}

@media screen and (min-width: 320px) {
  .mobile-menu {
    font-size: 0.65em;
  }
}

@media screen and (min-width: 400px) {
  .mobile-menu {
    font-size: 0.8em;
  }
}

@media screen and (min-width: 480px) {
  .mobile-menu {
    font-size: 1em;
  }
}

/*
================================================================================
|                              STICKY BLOCKS                                  |
================================================================================
*/
/*Sticky desktop*/
.main-nav {
  -vendor-animation-duration: 2s;
  -vendor-animation-delay: 0s;
  -vendor-animation-iteration-count: infinite;
  display: none;
}

@media screen and (min-width: 601px) {
  .main-nav {
    position: static;
    display: block;
  }
}

.header {
  margin-top: 30px;
}

@media screen and (min-width: 601px) {
  .header {
    margin-top: 0;
  }
}

/* */
/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
/*
================================================================================
|                                  GRID                                        |
================================================================================
*/
.global-wrapper {
  width: 100%;
}

.global-wrapper header {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.global-wrapper header::after {
  clear: both;
  content: "";
  display: table;
}

.global-wrapper header #header-identity {
  float: left;
  display: block;
  margin-right: 2.08668%;
  width: 100%;
}

.global-wrapper header #header-identity:last-child {
  margin-right: 0;
}

.global-wrapper header #main-navigation {
  float: left;
  display: block;
  margin-right: 2.08668%;
  width: 100%;
  display: none;
}

.global-wrapper header #main-navigation:last-child {
  margin-right: 0;
}

@media screen and (min-width: 601px) {
  .global-wrapper header #header-identity {
    float: left;
    display: block;
    margin-right: 2.08668%;
    width: 31.94222%;
  }
  .global-wrapper header #header-identity:last-child {
    margin-right: 0;
  }
  .global-wrapper header #main-navigation {
    float: left;
    display: block;
    margin-right: 2.08668%;
    width: 65.97111%;
    margin-right: 0;
    display: block;
  }
  .global-wrapper header #main-navigation:last-child {
    margin-right: 0;
  }
  .global-wrapper header #main-navigation ul li a {
    height: 4.3em;
    line-height: 4.3em;
    white-space: nowrap;
  }
}

@media screen and (min-width: 601px) and (max-width: 970px) {
  .global-wrapper header {
    max-width: 98%;
    margin-left: auto;
    margin-right: auto;
  }
  .global-wrapper header::after {
    clear: both;
    content: "";
    display: table;
  }
}

.global-wrapper #slider {
  width: 100%;
}

.global-wrapper #slider img {
  width: 100% !important;
  height: auto;
}

.global-wrapper #content {
  max-width: 96%;
  margin-left: auto;
  margin-right: auto;
}

.global-wrapper #content::after {
  clear: both;
  content: "";
  display: table;
}

.global-wrapper #content #sidebar {
  display: none;
}

.global-wrapper #content #breadcrumbs-wrapper {
  float: left;
  display: block;
  margin-right: 2.08668%;
  width: 100%;
  display: none;
}

.global-wrapper #content #breadcrumbs-wrapper:last-child {
  margin-right: 0;
}

.global-wrapper #content #main-content {
  float: left;
  display: block;
  margin-right: 2.08668%;
  width: 100%;
}

.global-wrapper #content #main-content:last-child {
  margin-right: 0;
}

@media screen and (min-width: 601px) {
  .global-wrapper #content {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
  .global-wrapper #content::after {
    clear: both;
    content: "";
    display: table;
  }
  .global-wrapper #content #sidebar {
    display: block;
    float: left;
    display: block;
    margin-right: 2.08668%;
    width: 31.94222%;
  }
  .global-wrapper #content #sidebar:last-child {
    margin-right: 0;
  }
  .global-wrapper #content #sidebar #sidebar-search-form {
    display: block;
  }
  .global-wrapper #content #sidebar #sidebar-search-form input[type='text'] {
    float: left;
    display: block;
    margin-right: 2.08668%;
    width: 65.97111%;
  }
  .global-wrapper #content #sidebar #sidebar-search-form input[type='text']:last-child {
    margin-right: 0;
  }
  .global-wrapper #content #sidebar #sidebar-search-form input [type='submit'] {
    float: left;
    display: block;
    margin-right: 2.08668%;
    width: 31.94222%;
    margin-right: 0;
  }
  .global-wrapper #content #sidebar #sidebar-search-form input [type='submit']:last-child {
    margin-right: 0;
  }
  .global-wrapper #content #breadcrumbs-wrapper {
    float: left;
    display: block;
    margin-right: 2.08668%;
    width: 65.97111%;
    margin-right: 0;
  }
  .global-wrapper #content #breadcrumbs-wrapper:last-child {
    margin-right: 0;
  }
  .global-wrapper #content #main-content {
    float: left;
    display: block;
    margin-right: 2.08668%;
    width: 65.97111%;
    margin-right: 0;
  }
  .global-wrapper #content #main-content:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 601px) and (max-width: 970px) {
  .global-wrapper #content {
    max-width: 98%;
    margin-left: auto;
    margin-right: auto;
  }
  .global-wrapper #content::after {
    clear: both;
    content: "";
    display: table;
  }
}

.global-wrapper #footer-wrapper {
  width: 100%;
}

.global-wrapper #footer-wrapper footer {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.global-wrapper #footer-wrapper footer::after {
  clear: both;
  content: "";
  display: table;
}

.global-wrapper #footer-wrapper footer .footer-block {
  float: left;
  display: block;
  margin-right: 2.08668%;
  width: 100%;
}

.global-wrapper #footer-wrapper footer .footer-block:last-child {
  margin-right: 0;
}

@media screen and (min-width: 601px) {
  .global-wrapper #footer-wrapper footer .footer-block {
    float: left;
    display: block;
    margin-right: 2.08668%;
    width: 31.94222%;
  }
  .global-wrapper #footer-wrapper footer .footer-block:last-child {
    margin-right: 0;
  }
  .global-wrapper #footer-wrapper footer .footer-block:nth-child(3n) {
    margin-right: 0;
  }
  .global-wrapper #footer-wrapper footer .footer-block:nth-child(3n+1) {
    clear: left;
  }
}

@media screen and (min-width: 601px) and (max-width: 970px) {
  .global-wrapper #footer-wrapper footer {
    max-width: 98%;
    margin-left: auto;
    margin-right: auto;
  }
  .global-wrapper #footer-wrapper footer::after {
    clear: both;
    content: "";
    display: table;
  }
}

.global-wrapper #footer-wrapper #copyrights-container {
  width: 100%;
}

.global-wrapper #footer-wrapper #copyrights-container #copyrights {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.global-wrapper #footer-wrapper #copyrights-container #copyrights::after {
  clear: both;
  content: "";
  display: table;
}

.global-wrapper #footer-wrapper #copyrights-container #copyrights #copyrights-menu {
  float: left;
  display: block;
  margin-right: 2.08668%;
  width: 100%;
}

.global-wrapper #footer-wrapper #copyrights-container #copyrights #copyrights-menu:last-child {
  margin-right: 0;
}

.global-wrapper #footer-wrapper #copyrights-container #copyrights #copyrights-statement {
  float: left;
  display: block;
  margin-right: 2.08668%;
  width: 100%;
}

.global-wrapper #footer-wrapper #copyrights-container #copyrights #copyrights-statement:last-child {
  margin-right: 0;
}

@media screen and (min-width: 601px) and (max-width: 970px) {
  .global-wrapper #footer-wrapper #copyrights-container #copyrights {
    max-width: 98%;
    margin-left: auto;
    margin-right: auto;
  }
  .global-wrapper #footer-wrapper #copyrights-container #copyrights::after {
    clear: both;
    content: "";
    display: table;
  }
}

@media screen and (min-width: 601px) {
  .global-wrapper #footer-wrapper #copyrights-container #copyrights {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
  .global-wrapper #footer-wrapper #copyrights-container #copyrights::after {
    clear: both;
    content: "";
    display: table;
  }
  .global-wrapper #footer-wrapper #copyrights-container #copyrights #copyrights-menu {
    float: left;
    display: block;
    margin-right: 2.08668%;
    width: 74.47833%;
  }
  .global-wrapper #footer-wrapper #copyrights-container #copyrights #copyrights-menu:last-child {
    margin-right: 0;
  }
  .global-wrapper #footer-wrapper #copyrights-container #copyrights #copyrights-statement {
    float: left;
    display: block;
    margin-right: 2.08668%;
    width: 23.43499%;
    margin-right: 0;
  }
  .global-wrapper #footer-wrapper #copyrights-container #copyrights #copyrights-statement:last-child {
    margin-right: 0;
  }
}

/*
*/
/*
================================================================================
|                       DESIGN FOR GRID CONTAINERS                             |
|       (paddings, margins, borders, background, font properties)              |
================================================================================
*/
.global-wrapper header #header-identity {
  text-align: center;
  margin-top: 4em;
}

@media screen and (min-width: 601px) {
  .global-wrapper header #header-identity {
    text-align: left;
    margin-top: auto;
  }
}

.global-wrapper #content {
  padding: 26px 0 26px 0;
}

.global-wrapper #content #sidebar .sidebar-widget {
  padding-bottom: 13px;
}

.global-wrapper #content #sidebar #sidebar-search-form input[type='text'] {
  margin-right: 0;
  padding-right: 0;
  font-size: 1em;
  line-height: 1.75em;
}

.global-wrapper #content #sidebar #sidebar-search-form input [type='submit'] {
  font-size: 1em;
  text-transform: none;
  font-weight: normal;
  line-height: 1.75em;
}

.global-wrapper #content #sidebar .sidebar-widget h3 {
  text-align: center;
}

.global-wrapper #content #sidebar #social-links {
  text-align: center;
}

.global-wrapper #content #sidebar #tags-list {
  margin-top: 1em;
  list-style-type: none;
  padding-left: 10px;
}

.global-wrapper #content #sidebar #tags-list li a {
  font-size: 0.875em;
}

.global-wrapper #footer-wrapper {
  background-color: #2D2B2B;
  color: #FFFFFF;
}

.global-wrapper #footer-wrapper footer {
  padding: 13px 0 0 0;
}

.global-wrapper #footer-wrapper footer .footer-block {
  padding-bottom: 13px;
  margin-left: 1em;
}

.global-wrapper #footer-wrapper footer .footer-block h3 {
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 1.125em;
  font-weight: normal;
  line-height: 2em;
}

.global-wrapper #footer-wrapper footer .footer-block ul li {
  list-style-type: none;
  border-bottom: 1px solid #FFFFFF;
  line-height: 2em;
}

.global-wrapper #footer-wrapper footer .footer-block ul li a {
  color: #FFFFFF;
  font-size: 0.8125em;
}

.global-wrapper #footer-wrapper footer #footer-contact h3 {
  color: #FFFFFF;
}

.global-wrapper #footer-wrapper footer #footer-contact p {
  color: #FFFFFF;
  font-size: 0.8125em;
  font-weight: normal;
  padding-bottom: 1em;
}

.global-wrapper #footer-wrapper footer #accreditations {
  border: 1em;
  background-color: #FFFFFF;
}

@media screen and (min-width: 601px) {
  .global-wrapper #footer-wrapper footer .footer-block {
    margin-left: auto;
  }
  .global-wrapper #footer-wrapper footer .footer-block h3 {
    line-height: 1.1em;
    padding: 0 0 1em 0;
  }
  .global-wrapper #footer-wrapper footer .footer-block ul li {
    padding-left: 7%;
  }
}

.global-wrapper #footer-wrapper #copyrights-container {
  background-color: #1D1D1C;
  color: #FFFFFF;
  padding: 6.5px 0 6.5px 0;
  font-size: 0.875em;
}

/*
*/
/*
================================================================================
|                            CONTENT ELEMENTS                                  |
================================================================================
*/
#main-content {
  float: left;
  display: block;
  margin-right: 2.08668%;
  width: 100%;
}

#main-content:last-child {
  margin-right: 0;
}

#main-content h1 {
  width: 100%;
}

#main-content #projects-list {
  float: left;
  display: block;
  margin-right: 2.08668%;
  width: 100%;
}

#main-content #projects-list:last-child {
  margin-right: 0;
}

#main-content #projects-list .case-study-short {
  margin-bottom: 1em;
  float: left;
  display: block;
  margin-right: 2.08668%;
  width: 100%;
}

#main-content #projects-list .case-study-short:last-child {
  margin-right: 0;
}

#main-content #projects-list .case-study-short .case-study-name {
  font-weight: bold;
}

#main-content #projects-list .case-study-short .case-study-thumb {
  float: left;
  display: block;
  margin-right: 2.08668%;
  width: 100%;
  border: 5px solid #DE2920;
  overflow: hidden;
  height: 200px;
}

#main-content #projects-list .case-study-short .case-study-thumb:last-child {
  margin-right: 0;
}

#main-content #projects-list .case-study-short .case-study-thumb img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-filter: grayscale(100%);
}

#main-content #projects-list .case-study-short .case-study-thumb img:hover {
  width: 110%;
  max-width: 110%;
  -webkit-filter: grayscale(0%);
}

@media screen and (min-width: 601px) {
  #main-content #projects-list .case-study-short {
    float: left;
    display: block;
    margin-right: 2.08668%;
    width: 48.95666%;
  }
  #main-content #projects-list .case-study-short:last-child {
    margin-right: 0;
  }
  #main-content #projects-list .case-study-short:nth-child(2n) {
    margin-right: 0;
  }
  #main-content #projects-list .case-study-short:nth-child(2n+1) {
    clear: left;
  }
}

#main-content #tagged {
  float: left;
  display: block;
  margin-right: 2.08668%;
  width: 100%;
  background-color: #F2F2F2;
  color: #2D2B2B;
  padding: 10px 5px;
}

#main-content #tagged:last-child {
  margin-right: 0;
}

/* Slider */
.meteor-slides {
  width: 100% !important;
}

.meteor-slides .mslide {
  width: 100% !important;
}

.meteor-slides .mslide img {
  width: 100%;
}

.meteor-slides p {
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  color: #FFFFFF;
  font-size: 1.25em;
  left: 0;
  line-height: 20px;
  margin: 0;
  padding: 13px;
  position: absolute;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.wp-posts-carousel-image a img {
  width: 100% !important;
  height: auto !important;
}

.wp-posts-carousel-details {
  background-color: #2D2B2B;
  padding: 5px !important;
}

.wp-posts-carousel-details h3 a {
  color: #FFFFFF;
}

.owl-item:nth-child(even) .wp-posts-carousel-details {
  background-color: #8E8985;
}

.wp-posts-carousel-container {
  border: 0 !important;
}

/**/
#breadcrumbs {
  list-style: none;
  margin: 10px 0;
  overflow: hidden;
  padding-left: 0;
  font-size: 0.75em;
}

#breadcrumbs li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

#breadcrumbs .separator {
  font-size: 0.75em;
  font-weight: 100;
  color: #2D2B2B;
}

/*
*/
