/*
Theme Name: Geographica
Version: 1.0
*/
/*
    HTML5 Reset :: style.css
    ----------------------------------------------------------
    We have learned much from/been inspired by/taken code where offered from:
    
    Eric Meyer                  :: http://meyerweb.com
    HTML5 Doctor                :: http://html5doctor.com
    and the HTML5 Boilerplate   :: http://html5boilerplate.com
    
-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html,
body,
body div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
menu,
nav,
section,
time,
mark,
audio,
video,
details,
summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  /*font-weight: normal;*/
  vertical-align: baseline;
  background: transparent;
}
article,
aside,
figure,
footer,
header,
nav,
section,
details,
summary {
  display: block;
}
/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Apply a natural box layout model to all elements: http://paulirish.com/2012/box-sizing-border-box-ftw/ */
*,
*:before,
*:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
/* Responsive images and other embedded objects
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
   If this default setting for images is causing issues, you might want to replace it with a .responsive class instead. */
img,
object,
embed {
  max-width: 100%;
}
/* we use a lot of ULs that aren't bulleted. 
    don't forget to restore the bullets within content. */
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}
/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th {
  font-weight: bold;
  vertical-align: bottom;
}
td {
  font-weight: normal;
  vertical-align: top;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
input,
select {
  vertical-align: middle;
}
pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}
input[type="radio"] {
  vertical-align: text-bottom;
}
input[type="checkbox"] {
  vertical-align: bottom;
}
.ie7 input[type="checkbox"] {
  vertical-align: baseline;
}
.ie6 input {
  vertical-align: text-bottom;
}
select,
input,
textarea {
  font: 99% sans-serif;
}
table {
  font-size: inherit;
  font: 100%;
}
small {
  font-size: 85%;
}
strong {
  font-weight: bold;
}
td,
td img {
  vertical-align: top;
}
/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* standardize any monospaced elements */
pre,
code,
kbd,
samp {
  font-family: monospace, sans-serif;
}
/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
  border: none;
}
/* Webkit browsers add a 2px margin outside the chrome of form elements */
button,
input,
select,
textarea {
  margin: 0;
}
/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}
/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}
/* prevent BG image flicker upon hover 
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:before,
.clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  zoom: 1;
}
a {
  color: inherit;
  text-decoration: none;
}
button:focus {
  outline: 0;
}
address {
  font-style: normal;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
.margin {
  margin: 10px;
}
.padding {
  padding: 10px;
}
.margin15 {
  margin: 15px;
}
.padding15 {
  padding: 15px;
}
.margin20 {
  margin: 20px;
}
.padding20 {
  padding: 20px;
}
/* defaults margin shorthand*/
.ml {
  margin-left: 10px !important;
}
.mr {
  margin-right: 10px !important;
}
.mt {
  margin-top: 10px !important;
}
.mb {
  margin-bottom: 10px !important;
}
/* defaults padding shorthand*/
.pl {
  padding-left: 10px !important;
}
.pr {
  padding-right: 10px !important;
}
.pt {
  padding-top: 10px !important;
}
.pb {
  padding-bottom: 10px !important;
}
.pl2 {
  padding-left: 2px !important;
}
.pr2 {
  padding-right: 2px !important;
}
.pt2 {
  padding-top: 2px !important;
}
.pb2 {
  padding-bottom: 2px !important;
}
.pl3 {
  padding-left: 3px !important;
}
.pr3 {
  padding-right: 3px !important;
}
.pt3 {
  padding-top: 3px !important;
}
.pb3 {
  padding-bottom: 3px !important;
}
.pl4 {
  padding-left: 4px !important;
}
.pr4 {
  padding-right: 4px !important;
}
.pt4 {
  padding-top: 4px !important;
}
.pb4 {
  padding-bottom: 4px !important;
}
.pl5 {
  padding-left: 5px !important;
}
.pr5 {
  padding-right: 5px !important;
}
.pt5 {
  padding-top: 5px !important;
}
.pb5 {
  padding-bottom: 5px !important;
}
.pl9 {
  padding-left: 9px !important;
}
.pr9 {
  padding-right: 9px !important;
}
.pt9 {
  padding-top: 9px !important;
}
.pb9 {
  padding-bottom: 9px !important;
}
.pl20 {
  padding-left: 20px !important;
}
.pr20 {
  padding-right: 20px !important;
}
.pt20 {
  padding-top: 20px !important;
}
.pb20 {
  padding-bottom: 20px !important;
}
.pl25 {
  padding-left: 25px !important;
}
.pr25 {
  padding-right: 25px !important;
}
.pt25 {
  padding-top: 25px !important;
}
.pb25 {
  padding-bottom: 25px !important;
}
.plr5 {
  padding: 0 5px;
}
/* defaults margin shorthand*/
.ml2 {
  margin-left: 2px !important;
}
.mr2 {
  margin-right: 2px !important;
}
.mt2 {
  margin-top: 2px !important;
}
.mb2 {
  margin-bottom: 2px !important;
}
.ml3 {
  margin-left: 3px !important;
}
.mr3 {
  margin-right: 3px !important;
}
.mt3 {
  margin-top: 3px !important;
}
.mb3 {
  margin-bottom: 3px !important;
}
.-ml3 {
  margin-left: -3px !important;
}
.-mr3 {
  margin-right: -3px !important;
}
.-mt3 {
  margin-top: -3px !important;
}
.-mb3 {
  margin-bottom: -3px !important;
}
.ml4 {
  margin-left: 4px!important;
}
.mr4 {
  margin-right: 4px!important;
}
.mt4 {
  margin-top: 4px!important;
}
.mb4 {
  margin-bottom: 4px!important;
}
.-ml4 {
  margin-left: -4px !important;
}
.-mr4 {
  margin-right: -4px !important;
}
.-mt4 {
  margin-top: -4px !important;
}
.-mb4 {
  margin-bottom: -4px !important;
}
.ml5 {
  margin-left: 5px!important;
}
.mr5 {
  margin-right: 5px!important;
}
.mt5 {
  margin-top: 5px!important;
}
.mb5 {
  margin-bottom: 5px!important;
}
.ml6 {
  margin-left: 6px!important;
}
.mr6 {
  margin-right: 6px!important;
}
.mt6 {
  margin-top: 6px!important;
}
.mb6 {
  margin-bottom: 6px;
}
.ml7 {
  margin-left: 7px!important;
}
.mr7 {
  margin-right: 7px!important;
}
.mt7 {
  margin-top: 7px!important;
}
.mb7 {
  margin-bottom: 7px!important;
}
.ml8 {
  margin-left: 8px!important;
}
.mr8 {
  margin-right: 8px!important;
}
.mt8 {
  margin-top: 8px!important;
}
.mb8 {
  margin-bottom: 8px!important;
}
.ml9 {
  margin-left: 9px!important;
}
.mr9 {
  margin-right: 9px!important;
}
.mt9 {
  margin-top: 9px!important;
}
.mb9 {
  margin-bottom: 9px!important;
}
.ml11 {
  margin-left: 11px!important;
}
.mr11 {
  margin-right: 11px!important;
}
.mt11 {
  margin-top: 11px!important;
}
.mb11 {
  margin-bottom: 11px!important;
}
.ml10 {
  margin-left: 10px!important;
}
.mr10 {
  margin-right: 10px!important;
}
.mt10 {
  margin-top: 10px!important;
}
.mb10 {
  margin-bottom: 10px!important;
}
.ml11 {
  margin-left: 11px!important;
}
.mr11 {
  margin-right: 11px!important;
}
.mt11 {
  margin-top: 11px!important;
}
.mb11 {
  margin-bottom: 11px!important;
}
.ml12 {
  margin-left: 12px!important;
}
.mr12 {
  margin-right: 12px!important;
}
.mt12 {
  margin-top: 12px!important;
}
.mb12 {
  margin-bottom: 12px!important;
}
.ml15 {
  margin-left: 15px !important;
}
.mr15 {
  margin-right: 15px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.ml20 {
  margin-left: 20px!important;
}
.mr20 {
  margin-right: 20px!important;
}
.mt20 {
  margin-top: 20px!important;
}
.mb20 {
  margin-bottom: 20px!important;
}
.ml25 {
  margin-left: 25px!important;
}
.mr25 {
  margin-right: 25px!important;
}
.mt25 {
  margin-top: 25px!important;
}
.mb25 {
  margin-bottom: 25px!important;
}
.ml30 {
  margin-left: 30px!important;
}
.mr30 {
  margin-right: 30px!important;
}
.mt30 {
  margin-top: 30px!important;
}
.mb30 {
  margin-bottom: 30px!important;
}
.ml40 {
  margin-left: 40px!important;
}
.mr40 {
  margin-right: 40px!important;
}
.mt40 {
  margin-top: 40px!important;
}
.mb40 {
  margin-bottom: 40px!important;
}
.ml50 {
  margin-left: 50px!important;
}
.mr50 {
  margin-right: 50px!important;
}
.mt50 {
  margin-top: 50px!important;
}
.mb50 {
  margin-bottom: 50px!important;
}
.w100 {
  width: 100% !important;
}
.bmargin {
  margin-left: 10px;
  margin-right: 10px;
}
.bmarginside {
  margin: 5px 10px 5px 10px;
}
/* Borders */
.border_radius_5 {
  border-radius: 5px;
}
.border_radius_10 {
  border-radius: 10px;
}
.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
.inline {
  display: inline;
}
ul.inline li {
  display: inline;
}
.inlblock {
  display: inline-block;
}
ul.inlblock li {
  display: inline-block;
}
.hide {
  display: none;
}
.size_8 {
  font-size: 8px;
}
.size_9 {
  font-size: 9px;
}
.size_10 {
  font-size: 10px;
}
.size_11 {
  font-size: 11px;
}
.size_12 {
  font-size: 12px;
}
.size_13 {
  font-size: 13px;
}
.size_14 {
  font-size: 14px;
}
.size_15 {
  font-size: 15px;
}
.size_16 {
  font-size: 16px;
}
.size_17 {
  font-size: 17px;
}
.size_18 {
  font-size: 18px;
}
.size_24 {
  font-size: 24px;
}
.size_26 {
  font-size: 26px;
}
.size_32 {
  font-size: 32px;
}
.translation_error {
  color: inherit;
  font-weight: inherit;
}
.text_bold {
  font-weight: bold;
}
.text_italic {
  font-style: italic;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.nopadding {
  padding: 0 !important;
  margin: 0 !important;
}
.textleft {
  text-align: left !important;
}
.textright {
  text-align: right !important;
}
.uppercase {
  text-transform: uppercase;
}
@font-face {
  font-family: Aileron;
  src: url(fonts/aileron/Aileron-Black.otf);
  font-weight: 800;
}
@font-face {
  font-family: Aileron;
  src: url(fonts/aileron/Aileron-Heavy.otf);
  font-weight: 700;
}
@font-face {
  font-family: Aileron;
  src: url(fonts/aileron/Aileron-Bold.otf);
  font-weight: 600;
}
@font-face {
  font-family: Aileron;
  src: url(fonts/aileron/Aileron-SemiBold.otf);
  font-weight: 500;
}
@font-face {
  font-family: Aileron;
  src: url(fonts/aileron/Aileron-Regular.otf);
  font-weight: 400;
}
@font-face {
  font-family: Aileron;
  src: url(fonts/aileron/Aileron-Light.otf);
  font-weight: 300;
}
@font-face {
  font-family: Aileron;
  src: url(fonts/aileron/Aileron-Thin.otf);
  font-weight: 200;
}
@font-face {
  font-family: Aileron;
  src: url(fonts/aileron/Aileron-UltraLight.otf);
  font-weight: 100;
}
@font-face {
  font-family: Aileron;
  src: url(fonts/aileron/Aileron-BlackItalic.otf);
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: Aileron;
  src: url(fonts/aileron/Aileron-HeavyItalic.otf);
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: Aileron;
  src: url(fonts/aileron/Aileron-BoldItalic.otf);
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: Aileron;
  src: url(fonts/aileron/Aileron-SemiBoldItalic.otf);
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: Aileron;
  src: url(fonts/aileron/Aileron-Italic.otf);
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: Aileron;
  src: url(fonts/aileron/Aileron-LightItalic.otf);
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: Aileron;
  src: url(fonts/aileron/Aileron-ThinItalic.otf);
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: Aileron;
  src: url(fonts/aileron/Aileron-UltraLightItalic.otf);
  font-weight: 100;
  font-style: italic;
}
html,
body {
  overflow-x: hidden;
}
body {
  font-family: Aileron, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.monospace {
  font-family: 'Space Mono', monospace;
}
.columns {
  display: flex;
  flex-direction: row;
}
.columns.equal > * {
  flex: 1 1 auto;
}
.columns .col-25 {
  flex: 1 1 25%;
}
.columns .col-50 {
  flex: 1 1 50%;
}
.columns .col-75 {
  flex: 1 1 75%;
}
.columns .col-100 {
  flex: 1 1 100%;
}
.outlinebutton {
  cursor: pointer;
  display: inline-block;
  border: 2px solid #15b750;
  padding: 10px 16px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75em;
  line-height: 1em;
  font-weight: 600;
  color: #15b750;
}
.outlinebutton img {
  margin-left: 5px;
  vertical-align: bottom;
}
.filledbutton {
  display: inline-block;
  background-color: #15b750;
  border: none;
  padding: 10px 16px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75em;
  line-height: 1em;
  font-weight: 600;
  color: #fff;
}
.filledbutton img {
  margin-left: 5px;
  vertical-align: bottom;
}
section {
  font-weight: 500;
}
section h4 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75em;
  line-height: normal;
  color: #000;
  font-weight: normal;
  margin-bottom: 8px;
}
section .description {
  flex: 1 0 50%;
  padding-right: 20px;
}
section .description p {
  font-size: 1.5em;
  line-height: 1.2em;
  color: #7d7b7c;
}
section .description .separator {
  background-color: #15b750;
  margin-top: 10px;
}
.separator {
  width: 75px;
  height: 4px;
  border-radius: 2px;
}
.tag {
  text-transform: uppercase;
  font-size: 0.75em;
  padding: 4px 8px;
  display: inline-block;
  font-weight: 600;
  line-height: normal;
  background-color: #000;
  color: #fff;
  border-radius: 2px;
  letter-spacing: 2px;
}
.quotes {
  position: relative;
  width: 100%;
  height: 250px;
}
.quotes li {
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.quotes li .quote {
  width: 50%;
  max-width: 80px;
  height: 120px;
  padding: .5em 0;
  margin: 40px auto;
  font-size: 24px;
  line-height: 28px;
  font-size: 1.5em;
  line-height: 1.2em;
  position: relative;
  color: transparent;
  opacity: .00001;
  visibility: hidden;
  transition: visibility 0.5s linear, max-width 0.5s ease-out 0.1s, padding 0.5s ease-out, color 0.2s ease-out, opacity 0.4s ease-out;
  overflow: hidden;
  box-sizing: content-box;
  display: flex;
  align-items: center;
}
.quotes li .quote:before {
  content: url('img/G16_comilla_a.svg');
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.quotes li .quote:after {
  content: url('img/G16_comilla_c.svg');
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
}
.quotes li .author {
  font-size: .875em;
  line-height: 1.3em;
  max-width: 100%;
  color: transparent;
  opacity: .00001;
  visibility: hidden;
  transition: visibility 0.5s linear, color 0.3s ease-out, opacity 0.25s ease-out 0.5s;
}
.quotes li .author span {
  display: block;
  font-weight: 400;
}
.quotes li.active .quote {
  max-width: 50%;
  color: #e01e66;
  visibility: visible;
  opacity: 1;
  padding: .5em 8.33%;
  transition: visibility 0.25s linear 0.5s, max-width 0.5s ease-out 0.25s, padding 0.5s ease-out 0.5s, color 0.75s ease-out 0.75s, opacity 0.5s ease-out 0.4s;
}
.quotes li.active .author {
  color: #7d7b7c;
  visibility: visible;
  opacity: 1;
}
.quotes li.active .author span {
  color: #9e9c9d;
}
.selectors {
  width: 100%;
  text-align: center;
}
.selectors .selector {
  content: "";
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 10px;
  border: 2px solid #dedede;
  border-radius: 50%;
  cursor: pointer;
}
.selectors .selector.active {
  background-color: #e01e66;
  border-color: #e01e66;
}
.imgBorder {
  border: 2px solid #c1db80;
  border-radius: 24px;
  width: 46px;
  height: 36px;
  /*padding: 10px 17px 10px 17px;*/
  position: relative;
  -webkit-transition: border 150ms ease-in 0ms;
  -moz-transition: border 150ms ease-in 0ms;
  -o-transition: border 150ms ease-in 0ms;
  transition: border 150ms ease-in 0ms;
}
.imgBorder:hover {
  -webkit-transition: border 150ms ease-in 0ms;
  -moz-transition: border 150ms ease-in 0ms;
  -o-transition: border 150ms ease-in 0ms;
  transition: border 150ms ease-in 0ms;
}
.imgBorder.greenl4 {
  border: 2px solid #d0dfb3;
}
.imgBorder img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.fright {
  float: right;
}
.fleft {
  float: left;
}
.share .outlinebutton {
  border-color: #0c2247;
  border-width: 1px;
  padding: 8px;
}
.carto-logo {
  background-image: url('img/logo-geographica-carto.svg');
  background-repeat: no-repeat;
  background-position: left;
  width: 204px;
  height: 32px;
  border: none !important;
  display: block;
  background-size: contain;
}
.carto-logo:before,
.carto-logo:after {
  display: none;
}
.global-wrapper {
  position: relative;
}
.top-advice {
  min-height: 64px;
  width: 100%;
  position: relative;
  background-color: #f24440;
  background-image: url('img/advice-top-bg.png');
  display: flex;
  align-items: center;
}
.top-advice .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  width: 100%;
}
.top-advice .carto-logo {
  flex: 0 0 auto;
}
.top-advice .text {
  flex: 0 0 auto;
  display: flex;
}
.top-advice .text .tag {
  margin-right: 16px;
  background-color: #0c2247;
}
.top-advice .text a,
.top-advice .text .info {
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.25;
  letter-spacing: normal;
  color: #fff;
}
.top-advice .text a {
  margin-left: 8px;
  display: block;
  border-bottom: rgba(255, 255, 255, 0.4);
  font-weight: bold;
}
@keyframes slider-bars-1 {
  0% {
    max-width: 1.182em;
  }
  100% {
    max-width: 6.5em;
  }
}
@keyframes slider-bars-2 {
  0% {
    max-width: 1.182em;
  }
  100% {
    max-width: 4.2em;
  }
}
@keyframes slider-bars-3 {
  0% {
    max-width: 1.182em;
  }
  100% {
    max-width: 5.2em;
  }
}
@keyframes appear-from-top {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes open-team-info {
  0% {
    visibility: visible;
    width: 8px;
    height: 8px;
  }
  80% {
    width: auto;
    height: auto;
    font-size: 0;
    color: rgba(0, 0, 0, 0);
  }
  90% {
    font-size: 0;
    color: rgba(0, 0, 0, 0);
  }
  100% {
    padding: 12px;
    width: auto;
    height: auto;
    opacity: 1;
    font-size: 0.75em;
  }
}
@keyframes hide-team-info {
  0% {
    visibility: visible;
    padding: 12px;
    width: auto;
    height: auto;
    opacity: 1;
    font-size: 0.75em;
  }
  30% {
    opacity: 0.6;
    color: rgba(0, 0, 0, 0.6);
  }
  60% {
    opacity: .3;
    color: rgba(0, 0, 0, 0);
  }
  60% {
    display: none;
    opacity: 0;
  }
  100% {
    visibility: hidden;
    padding: 0;
    height: 0;
    width: 0;
  }
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 17px 0;
  color: #15b750;
  z-index: 5;
  will-change: transform;
}
header.light .container geo-logo,
header.light .container .geologo {
  display: none;
}
header.light .container geo-logo[white],
header.light .container .geologo[white] {
  display: block;
}
header.light .container nav .mainmenu li a {
  color: #fff;
}
header.light .container nav .mainmenu:after {
  background: #fff;
}
header.light .container nav .menubtn {
  background-image: url('img/G16_icbt_menu_M-GI-GG_menu-gi.svg');
}
header.light .container nav .languages li {
  color: #bebdbd;
}
header.light .container nav .languages li.current-menu-item {
  color: #fff;
}
header.light .container .menubtn {
  background-image: url('img/G16_icbt_menu_M-GI-GG_menu-gg_white.svg');
}
header.light .container .menubtn span {
  color: #fff;
}
header .container {
  display: flex;
}
header .container nav {
  flex: 1 1 100%;
  margin-top: 6px;
}
header .container nav ul {
  display: inline-block;
}
header .container nav ul li {
  display: inline-block;
}
header .container nav ul.mainmenu {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 24px;
  text-transform: uppercase;
  position: relative;
}
header .container nav ul.mainmenu li {
  margin-right: 36px;
}
header .container nav ul.mainmenu:before {
  content: "";
  display: block;
  width: calc(100% - 36px);
  height: 4px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
}
header .container nav ul.mainmenu:after {
  content: "";
  display: block;
  max-width: 50px;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #15b750;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  transition: transform 0.25s ease-in-out, max-width 0.25s ease-in-out;
}
header .container nav ul.mainmenu.intro:after {
  transform: translateX(0);
  max-width: 50px;
}
header .container nav ul.languages {
  font-size: 13px;
  line-height: 24px;
}
header .container nav ul.languages li {
  color: #7d7b7c;
}
header .container nav ul.languages li + li:before {
  content: '·';
  color: #7d7b7c;
  display: inline-block;
  margin: 0 10px;
}
header .container nav ul.languages li.current-menu-item {
  color: #15b750;
}
header .container .menubtn {
  background-image: url('img/G16_icbt_menu_M-GG.svg');
  background-repeat: no-repeat;
  background-size: 24px;
  padding-left: 32px;
  display: none;
  height: 24px;
  flex: 1 1 auto;
}
header .container .menubtn span {
  vertical-align: middle;
}
header .container h1,
header .container h2 {
  flex: 0 0 auto;
}
header .container geo-logo[white],
header .container .geologo[white] {
  display: none;
}
header .container h2 {
  display: none;
  white-space: nowrap;
  vertical-align: middle;
  color: #fff;
}
header .container h2 img {
  margin-left: 5px;
  vertical-align: middle;
}
header.fixed {
  position: fixed;
  width: 100%;
  background-color: #fff;
  animation: appear-from-top 0.5s ease-out forwards 1;
  animation-play-state: running;
}
header.fixed .top-advice {
  display: none;
}
header.fixed .container {
  align-items: center;
}
header.fixed .container nav {
  margin-top: 0;
}
header.fixed .container nav ul.languages {
  display: none;
}
header.fixed .container h1 {
  display: none;
}
header.fixed .container geo-logo,
header.fixed .container .geologo {
  display: none;
}
header.fixed .container geo-logo[white],
header.fixed .container .geologo[white] {
  display: none;
}
header.fixed .container h2 {
  display: block;
  text-transform: lowercase;
  color: #0c2247;
  font-weight: 400;
  font-family: 'Space Mono', monospace;
}
header.fixed .container h2 span {
  color: #15b750 !important;
  text-transform: capitalize;
  margin-right: 10px;
}
header.fixed .container .mainmenu li a {
  color: #15b750 !important;
}
header.fixed .container .mainmenu:before {
  background-color: rgba(0, 0, 0, 0.1);
}
header.fixed .container .menubtn {
  background-image: url('img/G16_icbt_menu_M-GI-GG_menu-gi.svg');
}
header.fixed .container .menubtn span {
  display: none;
}
header.fixed .container .languages li {
  color: #bebdbd;
}
header.fixed .container .languages li.current-menu-item {
  color: #15b750;
}
section.slider {
  padding: 150px 20px 38px 20px;
  color: #fff;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
section.slider:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(12, 34, 71, 0.8);
}
section.slider > * {
  position: relative;
}
section.slider .video-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
}
section.slider .video-container:before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(12, 34, 71, 0.8);
  position: absolute;
}
section.slider .video-container video {
  height: 100%;
  margin: 0 auto;
}
section.slider h2 {
  font-size: 1.5em;
  line-height: 1.2em;
  font-family: 'Space Mono', monospace;
  font-weight: 400;
}
section.slider h2 span {
  display: block;
  padding: 0 35px;
  border-radius: 60px;
  font-size: 3em;
  line-height: 0.7em;
}
section.slider h2 span:after {
  content: "";
  clear: both;
  display: block;
}
section.slider p {
  font-size: 2.25em;
  line-height: 1.075em;
  font-weight: 300;
  color: #bebdbd;
}
section.slider p.message {
  margin-bottom: 10px;
  font-family: Aileron;
  font-size: 24px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  margin-top: 45px;
  max-width: 630px;
}
section.slider.bars h2 {
  margin-bottom: -20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
section.slider.bars h2 span {
  display: block;
  max-width: 316px;
  color: #15b750;
  width: 100%;
  font-size: 86px;
  line-height: 0.84;
  padding: 0;
  position: relative;
}
section.slider .logos-slide {
  position: relative;
  bottom: -38px;
  padding: 16px 0;
}
section.slider .logos-slide:hover {
  cursor: pointer;
}
section.slider .logos-slide:before {
  content: "";
  display: block;
  background: rgba(255, 255, 255, 0.07);
  position: absolute;
  left: -25px;
  right: -25px;
  height: 100%;
  bottom: 0;
}
section.slider .logos-slide .container {
  overflow: hidden;
  width: 100%;
}
section.slider .logos-slide .container .slide-content {
  display: flex;
  position: relative;
  flex-wrap: nowrap;
  left: 0;
}
section.slider .logos-slide .container .slide-content.move {
  transition: all 1.2s ease-out;
}
section.slider .logos-slide .container .slide-content > div {
  flex: 0 0 calc(100% / 10);
  min-width: 160px;
  align-items: center;
  justify-content: center;
  height: 80px;
  display: flex;
}
section.slider .logos-slide .container .slide-content img {
  max-width: 140px;
  max-height: 90px;
  display: block;
  margin: 25px 10px;
}
@media (max-width: 1900px) {
  section.slider .logos-slide .container .slide-content > div {
    flex: 0 0 calc(100% / 9);
  }
}
@media (max-width: 1700px) {
  section.slider .logos-slide .container .slide-content > div {
    flex: 0 0 calc(100% / 8);
  }
}
@media (max-width: 1500px) {
  section.slider .logos-slide .container .slide-content > div {
    flex: 0 0 calc(100% / 7);
  }
}
@media (max-width: 1200px) {
  section.slider .logos-slide .container .slide-content > div {
    flex: 0 0 calc(100% / 6);
  }
}
@media (max-width: 1000px) {
  section.slider .logos-slide .container .slide-content > div {
    flex: 0 0 calc(100% / 5);
  }
}
@media (max-width: 900px) {
  section.slider .logos-slide .container .slide-content > div {
    flex: 0 0 calc(100% / 4);
  }
}
@media (max-width: 700px) {
  section.slider .logos-slide .container .slide-content > div {
    flex: 0 0 calc(100% / 3);
  }
}
@media (max-width: 500px) {
  section.slider .logos-slide .container .slide-content > div {
    flex: 0 0 calc(100% / 2);
  }
}
.services {
  overflow: hidden;
  transition: background-color 0.5s;
  font-weight: 500;
  background-color: #f8f8f8;
}
.services .box_list {
  display: flex;
}
.services .box_list .box {
  overflow: hidden;
  position: relative;
  flex: 1 1 33%;
  height: 380px;
  padding: 30px;
  cursor: pointer;
  transition: flex 0.25s, opacity 0.25s linear 0.25s, max-height 0.25s linear, background-color 0.25s linear, padding 0.25s linear;
}
.services .box_list .box .links {
  margin-top: 40px;
  opacity: 0;
}
.services .box_list .box .links .filledbutton {
  margin-right: 40px;
}
.services .box_list .box .links .next {
  cursor: pointer;
  text-transform: uppercase;
  font-size: 11px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
}
.services .box_list .box .links .next:after {
  content: url('img/G16_ic_next-WH.svg');
  position: relative;
  top: 1px;
  margin-left: 10px;
}
.services .box_list .box:nth-child(odd) {
  background-color: #f2f2f2;
}
.services .box_list .box:nth-child(even) {
  background-color: #f8f8f8;
}
.services .box_list .box:nth-of-type(1) h3 {
  color: #fb520f;
}
.services .box_list .box:nth-of-type(1) .separator {
  background-color: #fb520f;
}
.services .box_list .box:nth-of-type(2) h3 {
  color: #0091c6;
}
.services .box_list .box:nth-of-type(2) .separator {
  background-color: #0091c6;
}
.services .box_list .box:nth-of-type(3) h3 {
  color: #d4b900;
}
.services .box_list .box:nth-of-type(3) .separator {
  background-color: #d4b900;
}
.services .box_list .box.hiden {
  transition: flex .25s, padding .5s, opacity .1s;
  flex: 0;
  padding: 0;
  width: 0;
  opacity: 0;
  pointer-events: none;
  height: 0;
}
.services .box_list .box.activated {
  background-color: inherit;
  cursor: inherit;
  padding-left: 0;
  padding-right: 0;
}
.services .box_list .box.activated p,
.services .box_list .box.activated .close,
.services .box_list .box.activated .links {
  transition: opacity .25s;
  transition-delay: .3s;
  opacity: 1;
}
.services .box_list .box.activated h3,
.services .box_list .box.activated h4,
.services .box_list .box.activated p {
  color: #fff !important;
}
.services .box_list .box.activated .separator {
  background-color: #fff !important;
}
.services .box_list .box.activated .logo {
  display: none;
}
.services .box_list .box h4 {
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.services .box_list .box h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  font-family: 'Space Mono', monospace;
  font-weight: 400;
}
.services .box_list .box .separator {
  margin-top: 5px;
}
.services .box_list .box .logo {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: auto;
}
.services .box_list .box p {
  font-size: 18px;
  line-height: 24px;
  margin-top: 34px;
  opacity: 0;
}
.services .box_list .box p span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.services .box_list .box .close {
  cursor: pointer;
  position: absolute;
  top: 34px;
  right: 0;
  width: 46px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background-image: url('img/G16_icbt_close_M-WH.svg');
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
}
.projects {
  overflow: hidden;
  display: flex;
  font-weight: 500;
  width: 100%;
}
.projects .showcases {
  flex: 1 1 auto;
}
.projects .showcases h4 {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.75em;
}
.projects .showcases h4:before {
  content: url('img/G16_ic_showcase-ND2.svg');
  position: relative;
  top: 7px;
  margin-right: 10px;
}
.projects .showcases h4 a {
  margin-left: 24px;
}
.projects .showcases .showcases-link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4px 0 8px 0;
}
.projects .showcases .case {
  display: flex;
  width: 100%;
  min-height: 380px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 48px 0;
  margin-bottom: 12px;
}
.projects .showcases .case .container {
  display: flex;
}
.projects .showcases .case:nth-of-type(even) .container {
  justify-content: flex-end;
}
.projects .showcases .case:nth-of-type(1n) .wrapper {
  background: #15b750;
}
.projects .showcases .case:nth-of-type(2n ) .wrapper {
  background: #0091c6;
}
.projects .showcases .case:nth-of-type(3n) .wrapper {
  background: #8e50c5;
}
.projects .showcases .case:nth-of-type(4n) .wrapper {
  background: #4fb797;
}
.projects .showcases .case:nth-of-type(5n) .wrapper {
  background-color: #ec6230;
}
.projects .showcases .case:nth-of-type(6n) .wrapper {
  background-color: #e1b640;
}
.projects .showcases .case .wrapper {
  display: flex;
  flex: 0 0 400px;
  height: 400px;
  border-radius: 4px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px;
}
.projects .showcases .case .wrapper .logo {
  height: 80px;
  width: 140px;
  margin-bottom: 30px;
}
.projects .showcases .case .wrapper .content .client {
  font-size: 0.875em;
  line-height: 1.75em;
  margin-left: 8px;
}
.projects .showcases .case .wrapper .content h5 {
  margin: 8px 0 12px;
  font-size: 2.0em;
  line-height: 1.075em;
  color: #fff;
  font-weight: normal;
}
.projects .showcases .case .wrapper .content p {
  display: block;
  font-size: 1em;
  line-height: 1.25em;
  font-weight: normal;
}
.projects .showcases .case .wrapper .content .outlinebutton {
  position: relative;
  margin-top: 24px;
  padding: 10px 16px 10px 32px;
  color: white;
  border-color: white;
}
.projects .showcases .case .wrapper .content .outlinebutton:before {
  content: "";
  background-image: url('img/icons-16-showcase.svg');
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 8px;
  top: 8px;
}
section.about {
  background-color: #15b750;
  font-weight: 500;
}
section.about .container h4 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.81em;
  line-height: 1.4em;
  font-weight: 600;
}
section.about .container > div {
  padding: 0;
  margin-bottom: 70px;
}
section.about .container > div h4 {
  margin-top: 30px;
}
section.about .container > div > p {
  font-family: 'Space Mono', monospace;
  font-weight: 400;
}
section.about .container > div p {
  margin-top: 5px;
  font-size: 2.25em;
  line-height: 1.075em;
  color: #d5eedc;
}
section.about .container > div p strong {
  color: initial;
  font-weight: 500;
}
section.about .container > div a {
  font-size: 1.5em;
  line-height: 1.2em;
  color: #fff;
  margin-top: 46px;
  display: inline-block;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  position: relative;
  padding-bottom: 4px;
  transition: border-bottom-color 0.25s ease-out;
}
section.about .container > div a:before,
section.about .container > div a:after {
  border-bottom: 2px solid #15b750;
}
section.about .container > div a:before {
  position: relative;
  top: 4px;
  padding-right: 5px;
}
section.about .container > div a:first-child:before {
  content: url('img/G16_icbt_arrow_M-WH.svg');
}
section.about .container > div a:first-child:after {
  content: '\00b7';
  padding: 0 10px 4px 15px;
}
section.about .container > div a:last-child:before {
  content: url('img/G16_icbt_tel_M-WH.svg');
}
section.about .container > div a:hover {
  border-bottom-color: #fff;
}
section.about .container .col-md-4 {
  text-align: right;
}
section.about .container .facts {
  clear: both;
}
section.about .container .facts h4 {
  margin-bottom: 30px;
}
section.about .container .facts .facts_list {
  margin: 0 -15px;
}
section.about .container .facts .facts_list li article {
  margin-bottom: 40px;
}
section.about .container .facts .facts_list li article img {
  display: block;
  margin: 0 auto;
}
section.about .container .facts .facts_list li article h5 {
  color: #fff;
  font-weight: 500;
  font-size: 1.125em;
  line-height: 1.25em;
}
section.about .container .facts .facts_list li article p {
  font-size: 0.875em;
  line-height: 1.3em;
  color: #d5eedc;
}
section.about .container .facts .facts_list li article .separator {
  background-color: #d5eedc;
  margin-top: 26px;
}
section.team .description {
  max-width: 600px;
}
section.team .description p {
  color: #0c2247;
  font-size: 1.5em;
  line-height: 1.33em;
  font-weight: 600;
}
section.team .container {
  margin-top: 28px;
}
section.team .wrapper {
  display: flex;
  flex-flow: row wrap;
}
section.team .wrapper .team-grid {
  display: flex;
  flex-wrap: wrap;
  margin-top: 42px;
}
section.team .wrapper .team-grid .box {
  flex: 0 0 calc(100% / 6);
}
section.team .wrapper .dep-title {
  background-color: #15b750;
  width: 120px;
  height: 120px;
  border-radius: 4px;
  color: #fff;
  padding: 8px 12px;
  line-height: 18px;
  font-family: 'Space Mono', monospace;
}
section.team .wrapper .member {
  margin-bottom: 35px;
  padding-right: 10px;
  transition: all 0.25s;
  position: relative;
}
section.team .wrapper .member:hover .avatar_wrapper .follow a {
  visibility: visible;
  opacity: 1;
  transform: translateX(10px);
}
section.team .wrapper .member:hover .avatar_wrapper .follow a:hover {
  border-color: #15b750;
  background-color: #15b750;
}
section.team .wrapper .member:hover .avatar_wrapper .follow a:hover.linkedin {
  background-image: url('img/G16_icbt_linkedin-WH.svg');
  transition-delay: .1s;
}
section.team .wrapper .member:hover .avatar_wrapper .follow a:hover.twitter {
  background-image: url('img/G16_icbt_twitter-WH.svg');
  transition-delay: 0s;
}
section.team .wrapper .member:hover .avatar_wrapper .follow a:hover.email {
  background-image: url('img/G16_icbt_mail-WH.svg');
  transition-delay: 0.2s;
}
section.team .wrapper .member:hover .avatar_wrapper .follow .quote {
  transition-delay: 0s;
  background-color: #15b750;
  border-color: #15b750;
}
section.team .wrapper .member:hover .avatar_wrapper .follow .linkedin {
  transition-delay: 0.2s;
}
section.team .wrapper .member:hover .avatar_wrapper .follow .twitter {
  transition-delay: 0.3s;
}
section.team .wrapper .member:hover .avatar_wrapper .follow .email {
  transition-delay: 0.1s;
}
section.team .wrapper .member:hover .info {
  opacity: 1;
  visibility: visible;
  height: auto;
  width: auto;
  bottom: calc(100% + 12px);
  animation-name: open-team-info;
  animation-duration: 1s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
}
section.team .wrapper .member .avatar_wrapper {
  display: flex;
  height: 120px;
}
section.team .wrapper .member .avatar_wrapper .avatar {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 120px;
  height: 120px;
  border-radius: 4px;
}
section.team .wrapper .member .avatar_wrapper .follow a {
  width: 24px;
  height: 24px;
  border-radius: 2px;
  border: 1px solid #0c2247;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 7.5px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-15px);
  transition: all 0.25s, opacity 0.25s, visibility 0.25s;
}
section.team .wrapper .member .avatar_wrapper .follow .quote {
  background-image: url('img/icons-16-quote.svg');
  border: 1px solid #15b750;
  transition-delay: .3s;
}
section.team .wrapper .member .avatar_wrapper .follow .linkedin {
  background-image: url('img/G16_icbt_linkedin-GG.svg');
  transition-delay: .1s;
}
section.team .wrapper .member .avatar_wrapper .follow .twitter {
  background-image: url('img/G16_icbt_twitter-GG.svg');
  transition-delay: 0s;
}
section.team .wrapper .member .avatar_wrapper .follow .email {
  background-image: url('img/G16_icbt_mail-GG.svg');
  transition-delay: 0.2s;
}
section.team .wrapper .member h5 {
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #0c2247;
  margin-top: 10px;
  margin-bottom: 0px;
}
section.team .wrapper .member h6 {
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  color: #15b750;
}
section.team .wrapper .member a {
  font-size: .875em;
  line-height: 1.2857125em;
  color: #15b750;
}
section.team .wrapper .member a:hover {
  border-bottom: 1px solid #15b750;
}
section.team .wrapper .member .info {
  max-width: 160px;
  background-color: #f2f2f2;
  color: #3d3b3c;
  font-size: 0;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.33;
  letter-spacing: normal;
  bottom: calc(100% + 12px);
  overflow: hidden;
  position: absolute;
  z-index: 999;
}
section.team .wrapper .member .info.closing {
  animation-name: hide-team-info;
  animation-duration: 0.6s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
}
section.team .wrapper .member .info:before,
section.team .wrapper .member .info:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 4px;
  top: 0px;
  background-image: linear-gradient(#15b750 4px, transparent 4px), linear-gradient(#15b750 4px, transparent 4px);
  background-size: 4px 4px;
  background-position: top center, bottom center;
  background-repeat: no-repeat;
}
section.team .wrapper .member .info:before {
  left: 0px;
}
section.team .wrapper .member .info:after {
  right: 0px;
}
section.team .gallery {
  position: relative;
  width: 100%;
  font-size: 0;
}
section.team .gallery > .type_1 img:first-child {
  filter: brightness(35%);
  -webkit-filter: brightness(35%);
  -moz-filter: brightness(35%);
  -o-filter: brightness(35%);
  -ms-filter: brightness(35%);
}
section.team .gallery .type_1,
section.team .gallery .type_2 {
  font-size: 0;
  width: 50%;
  display: inline-block;
}
section.team .gallery .type_1 {
  float: left;
}
section.team .gallery .type_1 img {
  width: 50%;
  display: block;
  float: left;
}
section.team .gallery .type_1 img:first-child {
  width: 100%;
  float: none;
}
section.team .gallery .type_2 {
  float: left;
}
section.team .gallery .type_2 img {
  width: 50%;
  display: block;
}
section.team .gallery .type_2 img:first-child {
  float: left;
}
section.team .gallery .type_2 img:last-child {
  width: 100%;
}
section.team .gallery .type_3 {
  font-size: 0;
}
section.team .gallery .type_3 img {
  width: 50%;
  float: left;
}
section.team .gallery .type_3 div {
  width: 25%;
  display: flex;
  flex-direction: column;
}
section.team .gallery .type_3 div:first-child {
  float: left;
}
section.team .gallery .type_3 div img {
  width: 100%;
}
section.team .gallery .sendContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 50%;
  height: 40%;
  z-index: 4;
}
section.team .gallery .sendContent .avatar {
  width: 115px;
  height: 90px;
  border-radius: 45px;
  background-color: #bebdbd;
  background-image: url('img/G16_ic_join-WH.svg');
  background-repeat: no-repeat;
  background-position: center;
}
section.team .gallery .sendContent h3,
section.team .gallery .sendContent h4 {
  color: #bebdbd;
  font-weight: 500;
  letter-spacing: initial;
  text-transform: initial;
}
section.team .gallery .sendContent h3 {
  font-size: 24px;
  line-height: 28px;
}
section.team .gallery .sendContent h4 {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 38px;
}
section.team .gallery .sendContent h4 a {
  color: #15b750;
  font-weight: 500;
  border-bottom: 2px solid rgba(21, 183, 80, 0.25);
  transition: border-bottom-color 0.25s ease-out;
}
section.team .gallery .sendContent h4 a:hover {
  border-bottom-color: #15b750;
}
section.team .gallery .sendContent .send {
  border: 2px solid #15b750;
  color: #15b750;
  font-size: 11px;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  section.team .wrapper .team-grid .box {
    flex: 0 0 calc(100% / 5);
  }
}
@media (max-width: 991px) {
  section.team .wrapper .description {
    flex: 1 1 100%;
    margin-bottom: 60px;
  }
  section.team .wrapper .team-grid .box {
    flex: 0 0 calc(100% / 4);
  }
}
@media (max-width: 720px) {
  section.team .wrapper .team-grid .box {
    flex: 0 0 calc(100% / 3);
  }
}
@media (max-width: 600px) {
  section.team .wrapper .team-grid {
    justify-content: center;
  }
  section.team .wrapper .team-grid .box {
    flex: 0 0 calc(100% / 2);
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  section.team .wrapper .team-grid .box.member .avatar_wrapper {
    position: relative;
    left: 20px;
  }
  section.team .wrapper .team-grid .box.member .info {
    left: 40px;
  }
  section.team .wrapper .team-grid .box.member h5,
  section.team .wrapper .team-grid .box.member h6 {
    position: relative;
    left: 6px;
    text-align: center;
  }
}
section.clients {
  margin: 28px 0;
}
section.clients .wrapper {
  display: flex;
  flex-wrap: wrap;
  border-left: 1px solid #dedede;
}
section.clients .wrapper .description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #fff;
  position: relative;
  left: -1px;
}
section.clients .wrapper .client {
  display: flex;
  width: 16.66%;
  height: 190px;
  align-items: center;
  justify-content: center;
  border-width: 0 1px 1px 0;
  border-color: #dedede;
  border-style: solid;
}
section.clients .wrapper .client .logo {
  flex: 0 0 auto;
  transform: scale(0.5);
  max-width: none;
}
section.clients .wrapper .client:nth-of-type(2) {
  position: relative;
  left: -1px;
}
section.clients .wrapper .client.contact {
  background-color: #15b750;
  border-color: #15b750;
  text-align: center;
}
section.clients .wrapper .client.contact p {
  color: #3d3b3c;
  font-size: 18px;
  line-height: 22px;
}
section.clients .wrapper .client.contact p span {
  display: block;
  color: #d5eedc;
  font-size: 14px;
  line-height: 18px;
}
section.clients .wrapper .client.contact p .outlinebutton {
  margin-top: 16px;
  color: #fff;
  border-color: #fff;
}
section.clients .wrapper .description + .client {
  border-left-width: 0;
}
section.clients .quotes {
  margin-bottom: 34px;
}
section.clients .selectors {
  margin-bottom: 24px;
}
.blog_home .post_content {
  width: 100%;
  background-color: #3eba94;
}
.blog_home .post_content .container {
  height: 100%;
  padding: 0;
  display: flex;
  align-items: stretch;
}
.blog_home .post_content .container > div {
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  float: none;
}
.blog_home .post_content .container > div:first-child {
  padding-left: 15px;
}
.blog_home .post_content .container > div:last-child {
  padding: 0;
  border: none;
}
.blog_home .post_content .container > div:last-child .wrapper {
  padding: 30px;
  height: 100%;
  width: 100%;
  background-color: rgba(62, 186, 148, 0.8);
}
.blog_home .post_content .container .title h3,
.blog_home .post_content .container .title h4 {
  color: #3d3b3c;
}
.blog_home .post_content .container .title h3 {
  font-weight: 500;
  font-size: 2.25em;
  line-height: 1.075em;
  margin-bottom: 50px;
}
.blog_home .post_content .container .post {
  display: block;
}
.blog_home .post_content .container .post h3,
.blog_home .post_content .container .post span {
  color: #fff;
}
.blog_home .post_content .container .post h3 {
  font-size: 1.5em;
  line-height: 1.2em;
  font-weight: 500;
  margin-bottom: 20px;
}
.blog_home .post_content .container .post h3 a {
  padding-bottom: 3px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.25) 100%);
  background-repeat: repeat-x;
  background-position: 0 100%;
  background-size: 100% 2px;
}
.blog_home .post_content .container .post h3 a:hover {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.99) 100%);
}
.blog_home .post_content .container .post .date {
  display: block;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}
.blog_home .post_content .container .link {
  margin-left: 18px;
}
.showcase.page-name {
  height: 300px;
  background-color: #0c2247;
  display: flex;
  align-items: flex-end;
  padding: 72px 0;
}
.showcase.page-name .page_title {
  font-size: 3em;
  font-weight: 300;
  color: #fff;
}
.showcase .header {
  position: relative;
  overflow: hidden;
  min-height: 515px;
  height: 1px;
}
.showcase .header .wrapper_image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.showcase .header .wrapper_color {
  height: 100%;
  padding-top: 204px;
  padding-bottom: 68px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: relative;
  display: flex;
  align-items: flex-end;
}
.showcase .header .container .row {
  display: flex;
  align-items: flex-end;
}
.showcase .header .container .row h1 {
  font-size: 3.5em;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.14;
  letter-spacing: normal;
  color: #fff;
}
.showcase .header .container .row a {
  flex: 1 0 auto;
}
.showcase .header .container .row .filledbutton {
  margin-top: 24px;
}
.showcase .content .intro {
  background-color: #f2f2f2;
}
.showcase .content .intro .container .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
}
.showcase .content .intro p {
  color: #7d7b7c;
  font-size: 1.5em;
  line-height: 1.33;
}
.showcase .content .intro .logo {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.showcase .content .intro .logo h4 {
  font-size: 0.75em;
  font-weight: bold;
  line-height: 1.33;
  letter-spacing: 1px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.showcase .content .intro .logo img {
  max-width: 180px;
  max-height: 80px;
}
.showcase .content .post_content p,
.showcase .content .post_content h2,
.showcase .content .post_content h3,
.showcase .content .post_content h4,
.showcase .content .post_content h5,
.showcase .content .post_content h6 {
  max-width: 714px;
  margin: 30px auto 0 auto;
}
.showcase .content .post_content p {
  font-weight: 400;
  font-size: 21px;
  line-height: 28px;
  color: #3d3b3c;
}
.showcase .content .post_content a {
  color: #15b750;
  padding-bottom: 0;
  background-image: linear-gradient(to right, rgba(21, 183, 80, 0.25) 0%, rgba(21, 183, 80, 0.25) 100%);
  background-repeat: repeat-x;
  background-position: 0 100%;
  background-size: 100% 2px;
}
.showcase .content .post_content a:hover {
  background-image: linear-gradient(to right, rgba(21, 183, 80, 0.99) 0%, rgba(21, 183, 80, 0.99) 100%);
}
.showcase .content .post_content h2,
.showcase .content .post_content h3,
.showcase .content .post_content h4,
.showcase .content .post_content h5,
.showcase .content .post_content h6 {
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
}
.showcase .content .post_content h2:before,
.showcase .content .post_content h3:before,
.showcase .content .post_content h4:before,
.showcase .content .post_content h5:before,
.showcase .content .post_content h6:before {
  content: '';
  display: inline-block;
  height: 5px;
  width: 5px;
  border-radius: 100%;
  background-color: #000;
  margin-right: 25px;
}
.showcase .content .post_content h2:after,
.showcase .content .post_content h3:after,
.showcase .content .post_content h4:after,
.showcase .content .post_content h5:after,
.showcase .content .post_content h6:after {
  content: '';
  display: inline-block;
  height: 1px;
  width: 300px;
  background-color: #dedede;
  flex: 1 1 auto;
  margin-left: 30px;
}
.showcase .content .post_content #image_gallery {
  margin-top: 35px;
  width: 100%;
  background-color: #f2f2f2;
  padding: 40px 0;
}
.showcase .content .post_content #image_gallery .images li {
  cursor: pointer;
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}
.showcase .content .post_content #image_gallery .images li.active {
  transition: opacity .5s;
  opacity: 1;
  width: inherit;
  height: inherit;
}
.showcase .content .post_content #image_gallery .images li img {
  display: block;
  margin: 0 auto;
  width: 960px;
}
.showcase .content .post_content #image_gallery .selectors {
  margin-top: 20px;
}
.showcase .content .post_content #image_gallery .selectors .selector {
  border: 2px solid #15b750;
}
.showcase .content .post_content #image_gallery .selectors .selector.active {
  background-color: #15b750;
  border-color: #15b750;
}
.showcase .content .quotes_wrapper {
  margin-top: 50px;
  width: 100%;
  background-color: #f8f8f8;
  padding: 18px 15px 56px;
}
.showcase .content .quotes_wrapper .quotes {
  max-width: 714px;
  margin: 0 auto;
}
.showcase .content .quotes_wrapper .quotes li .quote {
  width: calc(100% - 16.66%);
  max-width: 100%;
}
.showcase .content .contact_share {
  margin-top: 92px;
}
.showcase .content .contact_share .container {
  padding: 0 15px;
}
.showcase .content .contact_share .container .row > div:first-child {
  border-right: 2px solid #bebdbd;
}
.showcase .content .contact_share h5 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 5px;
}
.showcase .content .contact_share .outlinebutton {
  margin-right: 6px;
}
.showcase .content .contact_share .outlinebutton:last-child {
  margin-right: 0;
}
.showcase .content .contact_share .outlinebutton img {
  margin-left: 0;
}
.showcase .content .keep {
  margin-top: 86px;
}
.showcase .cases-list .case {
  display: flex;
  width: 100%;
  min-height: 380px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 48px 0;
  margin-top: 12px;
}
.showcase .cases-list .case .container {
  display: flex;
}
.showcase .cases-list .case:nth-of-type(even) .container {
  justify-content: flex-end;
}
.showcase .cases-list .case:nth-of-type(1n) .wrapper {
  background: #15b750;
}
.showcase .cases-list .case:nth-of-type(2n ) .wrapper {
  background: #0091c6;
}
.showcase .cases-list .case:nth-of-type(3n) .wrapper {
  background: #8e50c5;
}
.showcase .cases-list .case:nth-of-type(4n) .wrapper {
  background: #4fb797;
}
.showcase .cases-list .case:nth-of-type(5n) .wrapper {
  background-color: #ec6230;
}
.showcase .cases-list .case:nth-of-type(6n) .wrapper {
  background-color: #e1b640;
}
.showcase .cases-list .case .wrapper {
  display: flex;
  flex: 0 0 400px;
  height: 400px;
  border-radius: 4px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px;
}
.showcase .cases-list .case .wrapper .logo {
  height: 80px;
  width: 140px;
  margin-bottom: 30px;
}
.showcase .cases-list .case .wrapper .logo img {
  max-width: 100%;
  max-height: 100%;
}
.showcase .cases-list .case .wrapper .content .client {
  font-size: 0.875em;
  line-height: 1.75em;
  margin-left: 8px;
}
.showcase .cases-list .case .wrapper .content h5 {
  margin: 8px 0 12px;
  font-size: 2.0em;
  line-height: 1.075em;
  color: #fff;
  font-weight: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.showcase .cases-list .case .wrapper .content p {
  display: block;
  font-size: 1em;
  line-height: 1.25em;
  font-weight: normal;
}
.showcase .cases-list .case .wrapper .content .outlinebutton {
  position: relative;
  margin-top: 24px;
  padding: 10px 16px 10px 32px;
  color: #fff;
  border-color: #fff;
}
.showcase .cases-list .case .wrapper .content .outlinebutton:before {
  content: "";
  background-image: url('img/icons-16-showcase.svg');
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 8px;
  top: 8px;
}
.showcase .load_more {
  text-transform: uppercase;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.showcase .load_more .button-content {
  padding: 16px 0;
}
.showcase #back_to_top {
  color: #cdcdcd;
  height: auto;
  position: fixed;
  bottom: 65px;
  margin: 0;
  z-index: 10000;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  right: 25px;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.showcase #back_to_top.on {
  opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible;
  right: 25px;
}
.showcase #back_to_top.off {
  opacity: 0;
  filter: alpha(opacity=0);
}
.keep {
  background-color: #7d7b7c;
  padding: 26px 0;
}
.keep.top {
  margin-top: 86px;
}
.keep .container {
  display: flex;
  align-items: center;
}
.keep .container > div {
  padding: 0;
  display: flex;
  height: 100%;
  align-items: center;
}
.keep .container > div.col-md-4 {
  flex: 1 1 33.33%;
}
.keep .container > div.col-md-8 {
  flex: 1 1 66.66%;
  flex-wrap: wrap;
}
.keep .container > div.col-md-8 #subscribeform {
  display: flex;
  flex: 1 1 100%;
}
.keep .container:hover input[type="text"] {
  border-bottom: 2px solid #fff;
}
.keep .container:hover input[type="button"] {
  color: #fff;
  border-bottom: 2px solid #fff;
}
.keep .container h3 {
  font-size: 1.5em;
  line-height: 1.2em;
  color: #fff;
  font-weight: 500;
  display: inline-block;
  position: relative;
  bottom: 2px;
  margin-right: 10px;
}
.keep .container .script {
  flex: 1 1 auto;
  display: inline-block;
  background-image: url('img/G16_icbt_arrowline-WH.svg');
  width: 169px;
  height: 20px;
  background-position: center right;
  background-repeat: no-repeat;
}
.keep .container input[type="text"] {
  padding: 0;
  flex: 1 1 100%;
  margin-left: 30px;
  background-color: #7d7b7c;
  color: #fff;
  font-size: 1.5em;
  line-height: 1.2em;
  border: none;
  border-bottom: 2px solid #9e9c9d;
  border-radius: 0;
  outline: none;
  transition: border 0.25s;
}
.keep .container input[type="text"]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(255, 255, 255, 0.2);
}
.keep .container input[type="text"]::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(255, 255, 255, 0.2);
}
.keep .container input[type="text"]:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(255, 255, 255, 0.2);
}
.keep .container input[type="text"]:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(255, 255, 255, 0.2);
}
.keep .container input[type="button"] {
  padding: 0 6px;
  background: none;
  font-size: 0.6875em;
  color: #9e9c9d;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 2px solid #9e9c9d;
  border-radius: 0;
  outline: none;
  transition: color 0.25s, border 0.25s;
  margin: 0 30px 0 0;
}
.keep .container .thx {
  width: 100%;
  text-align: center;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  line-height: 82px;
}
.keep .container .thx.active {
  transition: opacity .5s;
  opacity: 1;
  width: 100%;
  height: auto;
}
.keep .container #errormessages {
  color: white;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap-reverse;
}
.keep .container .errormessage {
  margin-top: 0;
}
footer {
  background: url('img/G16_bg_footer.jpg') center;
  color: #fff;
  padding: 30px 0 50px;
}
footer .container {
  display: flex;
}
footer .container > div {
  flex: 0 0 33.33%;
  padding: 0;
}
footer .container > div.pushed {
  padding-left: 30px;
}
footer .container > div.col-lg-2 {
  flex: 0 0 16.66%;
}
footer h4 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  color: #7d7b7c;
  margin-bottom: 20px;
}
footer a:not(.no-underline) {
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.25s ease-out;
}
footer a:not(.no-underline):hover {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}
footer ul.sitemap,
footer ul.legal {
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 16px;
}
footer ul.sitemap > li,
footer ul.legal > li {
  font-weight: 600;
}
footer ul.sitemap > li ul,
footer ul.legal > li ul {
  padding-left: 16px;
}
footer ul.sitemap > li ul li,
footer ul.legal > li ul li {
  font-weight: 400;
}
footer p.copy {
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  color: #bebdbd;
}
footer ul.social li {
  margin-bottom: 10px;
}
footer ul.social li a {
  vertical-align: middle;
}
footer ul.social li a i {
  border: 1px solid #fff;
  border-radius: 2px;
  height: 20px;
  width: 20px;
  vertical-align: bottom;
  margin-right: 5px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}
footer ul.social li a span {
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.25s ease-out;
}
footer ul.social li a:hover span {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}
footer p.address {
  font-size: 24px;
  line-height: 28px;
  font-weight: 300;
  color: #bebdbd;
  margin-bottom: 30px;
}
footer p.email {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 4px;
}
footer p.tel {
  font-size: 18px;
  line-height: 28px;
  color: #bebdbd;
  font-weight: 400;
}
footer p.tel a {
  color: #fff;
  font-weight: 500;
}
footer p.tel a span {
  color: #bebdbd;
}
footer p.email a,
footer p.tel a {
  padding-bottom: 1px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  transition: border-color 0.25s ease-out;
}
footer p.email a:hover,
footer p.tel a:hover {
  border-color: #fff;
}
footer .carto-logo {
  margin-bottom: 78px;
  margin-top: 38px;
  height: 28px;
}
#blog_intro {
  padding-bottom: 20px;
}
section.slider .blog_title {
  padding: 0 0 0 0;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
section.slider .blog_title .highlighted {
  color: #15b750;
}
section.slider .blog_title h1 {
  font-size: 72px;
  line-height: 64px;
  font-weight: 500;
}
@media (max-width: 500px) {
  section.slider .blog_title h1 {
    margin-bottom: 0.7em;
  }
  section.slider .blog_title h2 {
    display: none;
  }
}
section.slider .blog_title h2 {
  font-size: 36px;
  font-weight: 500;
  line-height: 38px;
  color: #bebdbd;
  max-width: 750px;
  margin: 1em 0 1em 0;
}
section.slider .blog_title h5 {
  font-size: 13px;
  font-weight: 800;
  line-height: 18px;
  letter-spacing: .15em;
  color: #7d7b7c;
  margin: 0 0 1em 0;
}
.category_blog_list {
  list-style: none;
  max-width: 1100px;
}
.category_blog {
  color: #000;
  cursor: pointer;
  display: inline-block;
  margin: 0 1.2em 1.2em 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  padding: 1px 10px 1px 10px;
  border-radius: 10px;
}
.category_blog .amount {
  margin-left: .4em;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
.category_blog .category_separator {
  margin-left: .4em;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
.category_blog-active {
  color: #000;
  cursor: pointer;
  display: inline-block;
  margin: 0 1.2em 1.2em 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  padding: 1px 10px 1px 10px;
  border-radius: 10px;
  background-color: #15b750;
}
.category_blog-active .amount {
  margin-left: .4em;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
.category_blog-active .category_separator {
  margin-left: .4em;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
.category_blog-inactive {
  color: #000;
  cursor: pointer;
  display: inline-block;
  margin: 0 1.2em 1.2em 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  padding: 1px 10px 1px 10px;
  border-radius: 10px;
  background-color: #7d7b7c;
}
.category_blog-inactive .amount {
  margin-left: .4em;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
.category_blog-inactive .category_separator {
  margin-left: .4em;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
.publisher_ {
  display: flex;
  align-items: center;
  font-size: 24px;
  margin-top: 24px;
  margin-bottom: 17px;
}
.publisher_ .publisher__text {
  color: #7d7b7c;
  font-weight: 300;
  margin-left: 15px;
}
.publisher_ .publisher__text a {
  font-weight: 500;
  color: #15b750;
}
.publisher_ .closebutton.small {
  position: relative;
  top: 2px;
}
.publisher_tag {
  position: relative;
  margin-bottom: 3px;
  height: 38px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.publisher_thumbnail {
  width: 47px;
  height: 36px;
  border-radius: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.publisher_tag_text {
  margin-left: 15px;
  font-size: 24px;
  font-weight: 100;
  color: #7d7b7c;
}
.publisher_tag_text .publisher_name {
  color: #15b750;
  font-weight: 400;
}
.publisher_close {
  margin-left: 6px;
  opacity: .8;
}
.publisher_close:hover {
  opacity: 1;
}
.blog_separator {
  width: 100%;
  height: 1px;
  background-color: #dedede;
}
.post {
  padding: 40px 0 55px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.post-left-col {
  width: 325px;
}
.post-left-col .post-titles {
  margin-bottom: 34px;
}
.post-left-col .post-titles h5.second_title {
  font-size: 13px;
  line-height: 18px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15em;
}
.post-left-col .post-titles a.title {
  cursor: pointer;
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  color: #15b750;
  border-bottom: 2px solid #c4edd3;
}
.post-left-col .post-titles a.title:hover {
  border-color: #15b750;
}
.post-left-col .post-more-info .publisher_link {
  font-size: 18px;
  font-weight: 300;
  color: #9e9c9d;
}
.post-left-col .post-more-info .publisher_name {
  font-size: 18px;
  color: #15b750;
  font-weight: 600;
}
.post-left-col .post-more-info .post_publish_date {
  display: block;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.025em;
  color: #7d7b7c;
}
.post-right-col .post_content {
  margin: 0 0 0 52px;
}
@media (max-width: 1100px) {
  .post-right-col .post_content {
    margin: 10px 0 10px 0;
  }
}
.post-right-col .post_content p {
  color: #7d7b7c;
  max-width: 720px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  margin-top: 27px;
}
.post-right-col .post_content p:first-child {
  margin-top: 0;
}
.post-right-col .post_content div.continue_reading {
  margin-top: 30px;
  cursor: pointer;
}
.post-right-col .post_content div.continue_reading a {
  line-height: 22px;
  letter-spacing: .15em;
  font-size: 12px;
  color: #15b750;
  text-transform: uppercase;
  font-weight: 600;
}
.blog_button {
  font-size: 11px;
  font-weight: 900;
  line-height: 24px;
  letter-spacing: .15em;
  margin: 55px 0 35px 445px;
}
#blog_general .keep {
  margin-top: 86px;
}
.post_slider {
  padding: 236px 0 22px 0;
  min-width: 450px;
}
@media (max-width: 420px) {
  .img_post {
    max-width: calc(100vw - 30px);
  }
}
.img_post {
  height: 290px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 4px;
  border-top-right-radius: 18px;
}
#post_separator_no_image {
  height: 143px;
}
.post_general {
  padding: 22px 0 0 0;
}
.post_general h5 {
  font-size: 13px;
  font-weight: 800;
  line-height: 18px;
  letter-spacing: .15em;
  color: #7d7b7c;
}
.post_general .cat_post_list {
  margin-bottom: 3px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.post_general .cat_post_list .alignment_left {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
.post_general .cat_post_list .alignment_left .cat_post {
  color: #000;
  cursor: pointer;
  display: inline-block;
  margin: 0 1.2em 1.2em 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  padding: 1px 10px 1px 10px;
  border-radius: 10px;
  background-color: #15b750;
  margin: 0 0 0 10px;
}
.post_general .cat_post_list .alignment_left .cat_post .amount {
  margin-left: .4em;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
.post_general .cat_post_list .alignment_left .cat_post .category_separator {
  margin-left: .4em;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
.post_general .cat_post_list .go_back_blog {
  font-size: 11px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  color: #15b750;
  letter-spacing: 0.15em;
}
.post_general .tag_post_list {
  font-weight: bold;
  line-height: 18px;
  padding-top: 20px;
}
.post_general .tag_post_list span {
  text-transform: uppercase;
  font-size: 13px;
  color: #7d7b7c;
}
.post_general .tag_post_list a {
  font-size: 14px;
  display: inline-block;
  border: none !important;
}
.post_general .tag_post_list a:before {
  content: '·';
  color: #7d7b7c;
  margin: 0 10px;
}
.post_general .post_intro {
  margin-top: 8px;
  margin-bottom: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-bottom: 1px solid #dedede;
  padding-bottom: 48px;
}
.post_general .post_intro h1 {
  font-size: 36px;
  line-height: 38px;
  font-weight: 400;
  margin-bottom: 28px;
  max-width: 560px;
  text-align: center;
  font-weight: 500;
}
.post_general .post_intro .publisher_container {
  display: flex;
  flex-direction: row;
}
.post_general .post_intro .publisher_container .publisher_thumbnail_big {
  width: 74px;
  height: 60px;
  border-radius: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
  background-color: rgba(222, 222, 222, 0.6);
}
.post_general .post_intro .publisher_container .publisher_content {
  margin-left: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.post_general .post_intro .publisher_container .publisher_content .publisher_text {
  padding-top: 5px;
  display: table;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #7d7b7c;
}
.post_general .post_intro .publisher_container .publisher_content .publisher_text .publisher_name {
  color: #15b750;
}
.post_general .post_intro .publisher_container .publisher_content .publish_date {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #7d7b7c;
  padding-bottom: 5px;
}
.post_general .post_content {
  margin-top: 45px;
  font-size: 21px;
  font-weight: 400;
  line-height: 30px;
  color: #3d3b3c;
}
.post_general .post_content > p,
.post_general .post_content ul,
.post_general .post_content ol,
.post_general .post_content h2,
.post_general .post_content h3,
.post_general .post_content h4,
.post_general .post_content h5,
.post_general .post_content h6 {
  max-width: 742px;
  margin: 0 auto 27px auto;
}
.post_general .post_content ul li,
.post_general .post_content ol li {
  position: relative;
  padding-left: 18px;
}
.post_general .post_content ul li:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  border: 2px solid #15b750;
  margin-right: 12px;
  position: absolute;
  left: 0;
  top: 11px;
}
.post_general .post_content ol {
  counter-reset: counter_ol;
  list-style-type: none;
}
.post_general .post_content ol li:before {
  content: counter(counter_ol);
  counter-increment: counter_ol;
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 18px;
  color: #7d7b7c;
}
.post_general .post_content h2 {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  margin-top: 57px;
}
.post_general .post_content h2:after {
  content: '';
  display: inline-block;
  height: 1px;
  background-color: #dedede;
  flex: 1 1 auto;
  margin-left: 30px;
}
.post_general .post_content h3,
.post_general .post_content h4,
.post_general .post_content h5,
.post_general .post_content h6 {
  font-size: 18px;
  font-weight: 600;
}
.post_general .post_content .wp-caption,
.post_general .post_content > img {
  width: 100% !important;
  margin: 42px auto 60px auto;
}
.post_general .post_content .wp-caption p,
.post_general .post_content > img p {
  font-size: 14px;
  line-height: 18px;
  color: #7d7b7c;
  padding: 11px 0;
  border-bottom: 1px solid #dedede;
}
.post_general .post_content a {
  color: #15b750;
  border-bottom: 1px solid #c4edd3;
}
.post_general .post_content a:hover {
  border-bottom: 1px solid #15b750;
}
.post_general .post_content img {
  display: block;
  width: 100%;
  height: auto;
}
.post_general .post_content .quote {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  color: #15b750;
  position: relative;
  padding: 0 64px;
  width: 56%;
  min-width: 639px;
  margin: 90px auto;
  text-align: center;
}
.post_general .post_content .quote:before,
.post_general .post_content .quote:after {
  display: block;
  position: absolute;
}
.post_general .post_content .quote:before {
  content: url(img/G16_comilla_a_grey.svg);
  top: 0;
  left: 0;
}
.post_general .post_content .quote:after {
  content: url(img/G16_comilla_c_grey.svg);
  bottom: 0;
  right: 0;
}
.post_general .post_content figcaption {
  text-align: left;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #7d7b7c;
  border-bottom: solid 1px #dedede;
  padding-bottom: 10px;
}
@media (max-width: 670px) {
  .post_general .post_content .quote {
    min-width: 100%;
  }
}
.contact_share {
  margin-top: 92px;
}
.contact_share .container {
  padding: 0 15px;
}
.contact_share .container .row > div:first-child {
  border-right: 2px solid #bebdbd;
}
.contact_share h5 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 10px;
}
.contact_share .outlinebutton {
  margin-right: 6px;
}
.contact_share .outlinebutton:last-child {
  margin-right: 0;
}
.contact_share .outlinebutton img {
  margin-left: 0;
}
@media screen and (max-width: 1199px) {
  header .container nav ul.mainmenu:before {
    width: calc(100% - 20px);
  }
  header .container nav ul.mainmenu li {
    margin-right: 20px;
  }
  section.slider p.message {
    margin-bottom: 20px;
  }
  section.clients .wrapper .description {
    flex: 0 0 50%;
  }
  section.clients .wrapper .client {
    width: 25%;
  }
}
@media screen and (max-width: 1024px) {
  .keep .container > div .script {
    width: 50px;
  }
  footer .container.col-lg-2 {
    flex: 0 0 50%;
  }
}
@media screen and (max-width: 991px) {
  header.fixed .container geo-logo,
  header.fixed .container .geo-logo {
    display: none;
  }
  header .container {
    flex-wrap: wrap;
  }
  header .container nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    margin-top: 0;
  }
  header .container nav li {
    padding: 15px 0;
  }
  header .container nav ul.mainmenu {
    display: block;
  }
  header .container nav ul.mainmenu:before,
  header .container nav ul.mainmenu:after {
    content: none;
  }
  header .container nav ul.mainmenu li {
    display: block;
  }
  header .container geo-logo,
  header .container .geo-logo {
    margin-top: -18px;
    position: relative;
    left: 16px;
  }
  header .container .menubtn {
    display: block;
    margin-top: 7px;
  }
  header.open nav {
    max-height: 100vh;
    flex: 1 1 100%;
  }
  header.open .menubtn {
    background-image: url('img/G16_icbt_menu_M-GI-GG_close-gg.svg');
  }
  header.open.light .menubtn,
  header.open.fixed .menubtn {
    background-image: url('img/G16_icbt_menu_M-GI-GG_close-gg.svg');
  }
  header.open.light nav ul.languages,
  header.open.fixed nav ul.languages {
    display: block;
  }
  header.open:not(.fixed) {
    position: fixed;
    top: 0;
    padding: 0;
  }
  header.open:not(.fixed) .container {
    height: 100vh;
    width: 100%;
    padding-bottom: 20px;
    background-color: #1e1c1d;
  }
  header.open:not(.fixed) .container nav {
    overflow-y: auto;
  }
  .showcase .header .container .row {
    flex-direction: column;
    align-items: baseline;
  }
  .showcase .header .container .row .filledbutton {
    margin-top: 20px;
  }
  footer .container > div.col-lg-2,
  footer .container > div.pushed {
    flex: 0 0 33.33%;
  }
  footer .container .mapLink {
    display: none;
  }
  section.about .container {
    position: relative;
  }
  section.about .container .col-md-8 {
    margin-top: 50px;
  }
  section.about .container .col-md-4 {
    position: absolute;
    right: 12px;
    top: -2px;
  }
}
@media screen and (max-width: 768px) {
  section.slider > .container,
  section.services > .container {
    padding: 0;
  }
  section.services .box_list .box {
    padding: 30px 15px;
  }
  section.services .box_list .box.activated {
    padding-left: 15px;
    padding-right: 15px;
  }
  section.services .box_list .box.activated .close {
    right: 15px;
  }
  .projects .showcases .case .content .client {
    display: block;
    margin: 10px 0;
  }
  .showcase .cases-list .container .case .page_title {
    font-size: 2.5em;
  }
  .showcase .cases-list .container .case {
    width: 100%;
  }
  .showcase .load_more .button-content {
    padding-bottom: 60px;
  }
  section.team .wrapper .member {
    flex: 0 0 33.33%;
  }
  section.clients .wrapper .description {
    flex: 0 0 66.66%;
  }
  section.clients .wrapper .client {
    width: 33.33%;
  }
  section.clients .quotes,
  .showcase .content .quotes_wrapper .quotes {
    height: 245px;
  }
  section.clients .quotes .quote,
  .showcase .content .quotes_wrapper .quotes .quote {
    height: 140px;
  }
  section.blog_home .post_content .container {
    flex-wrap: wrap;
  }
  section.blog_home .post_content .container:before {
    display: none;
  }
  section.blog_home .post_content .container > div {
    padding: 30px 15px;
  }
  section.blog_home .post_content .container > div:first-child,
  section.blog_home .post_content .container > div:nth-child(2) {
    flex: 0 0 50%;
  }
  section.blog_home .post_content .container > div:last-child {
    flex: 0 0 100%;
  }
  section.blog_home .post_content .container > div:last-child .wrapper {
    padding: 30px 15px;
  }
  .showcase .header {
    min-height: 100vh;
  }
  .showcase .header .container .row h1 {
    font-size: 16px;
    line-height: inherit;
    margin-top: 10px;
  }
  .showcase .header .container .row h4 {
    display: none;
  }
  .showcase .header .container .row .filledbutton {
    display: none;
  }
  .showcase .content .intro p {
    font-size: 1.5em;
    line-height: 1.2em;
  }
  .showcase .content .post_content {
    margin: 0 15px;
  }
  .showcase .content .post_content p {
    font-size: 18px;
    line-height: 22px;
  }
  .showcase .content .contact_share .textright {
    text-align: left !important;
    margin-top: 20px;
  }
  .showcase .content .quotes li .quote {
    font-size: 18px;
    line-height: 22px;
  }
  footer .container {
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
    padding: 0 15px;
  }
  footer .container > div.col-lg-2,
  footer .container > div.pushed {
    flex: 0 0 50%;
    padding-left: 0;
  }
  footer .container > div.col-lg-2:first-child {
    flex: 0 0 100%;
    margin-top: 50px;
  }
  footer .container > div.col-lg-2:first-child ul.sitemap > li ul,
  footer .container > div.col-lg-2:first-child ul.legal > li ul {
    padding-left: 0;
  }
  footer .container > div.col-lg-2:first-child ul.legal > li {
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .projects .showcases .case .wrapper {
    padding-left: 15px;
  }
}
@media screen and (max-width: 991px) {
  section.services .box_list .box:not('active') {
    height: 340px;
  }
  .top-advice .container {
    flex-direction: column;
    align-items: center;
    padding: 12px;
  }
  .top-advice .container .text {
    flex-direction: column;
    align-items: center;
  }
  .top-advice .container .text > * {
    margin: 3px auto;
    text-align: center;
  }
}
@media screen and (max-width: 650px) {
  .showcase .cases-list .case .wrapper,
  .projects .showcases .case .wrapper {
    flex: 0 0 calc(100% - 96px);
    margin: 0 auto;
  }
  .showcase .cases-list .case:nth-of-type(1n) .wrapper,
  .projects .showcases .case:nth-of-type(1n) .wrapper {
    background: rgba(21, 183, 80, 0.9);
  }
  .showcase .cases-list .case:nth-of-type(2n ) .wrapper,
  .projects .showcases .case:nth-of-type(2n ) .wrapper {
    background: rgba(0, 145, 198, 0.9);
  }
  .showcase .cases-list .case:nth-of-type(3n) .wrapper,
  .projects .showcases .case:nth-of-type(3n) .wrapper {
    background: rgba(142, 80, 197, 0.9);
  }
  .showcase .cases-list .case:nth-of-type(4n) .wrapper,
  .projects .showcases .case:nth-of-type(4n) .wrapper {
    background: rgba(79, 183, 151, 0.9);
  }
  .showcase .cases-list .case:nth-of-type(5n) .wrapper,
  .projects .showcases .case:nth-of-type(5n) .wrapper {
    background-color: rgba(236, 98, 48, 0.9);
  }
  .showcase .cases-list .case:nth-of-type(6n) .wrapper,
  .projects .showcases .case:nth-of-type(6n) .wrapper {
    background-color: rgba(225, 182, 64, 0.9);
  }
}
@media screen and (max-width: 620px) {
  section.services > .container {
    padding: 0;
  }
  section.services .box_list {
    flex-wrap: wrap;
  }
  section.services .box_list .box {
    flex: 0 0 100%;
    height: 355px;
    padding: 30px 15px;
  }
  section.services .box_list .box .logo {
    display: block;
    margin: 24px auto 0 auto;
  }
  section.services .box_list .box.activated {
    max-height: 360px;
    padding-left: 15px;
    padding-right: 15px;
  }
  section.services .box_list .box.hiden {
    max-height: 0;
  }
  section.about .container > div .contact a:first-child:after {
    content: "";
    clear: both;
    padding: 0;
  }
  section.team .gallery .sendContent,
  section.team .gallery .type_1,
  section.team .gallery .type_2,
  section.team .gallery .type_3 {
    width: 100%;
  }
  section.team .gallery .sendContent {
    height: 380px;
  }
  section.clients .wrapper .description {
    flex: 0 0 100%;
  }
  section.clients .wrapper .client {
    width: 50%;
  }
  section.clients .quotes,
  .showcase .content .quotes_wrapper .quotes {
    height: 270px;
  }
  section.clients .quotes .quote,
  .showcase .content .quotes_wrapper .quotes .quote {
    height: 150px;
    width: calc(100% - 80px);
    max-width: calc(100% - 80px);
  }
  .keep .container {
    flex-wrap: wrap;
  }
  .keep .container > div.col-md-4 {
    flex: 0 0 100%;
  }
  .keep .container .script {
    display: none;
  }
  .keep .container input[type="text"] {
    font-size: 15px;
    height: 28px;
    margin-left: 0;
  }
  .keep .container input[type="button"] {
    margin-right: 0;
    height: 28px;
  }
}
@media screen and (max-width: 580px) {
  header h1 img {
    max-width: 50%;
    float: right;
  }
  .projects {
    flex-wrap: wrap;
    width: 100%;
    height: auto !important;
  }
  .projects .showcases {
    flex: 0 0 100%;
  }
  section.clients .wrapper {
    overflow-x: auto;
    flex-flow: row;
    border: none;
  }
  section.clients .wrapper .description {
    left: 15px;
    position: absolute;
  }
  section.clients .wrapper .description + .client {
    border-left-width: 1px;
  }
  section.clients .wrapper .client {
    flex: 0 0 auto;
    margin-top: 240px;
    margin-right: 20px;
    border-width: 0 1px 1px 1px;
  }
  section.clients .wrapper .client:nth-of-type(2) {
    left: 0;
  }
  section.blog_home .post_content .container {
    flex-wrap: wrap;
  }
  section.blog_home .post_content .container > div:first-child,
  section.blog_home .post_content .container > div:nth-child(2) {
    flex: 0 0 100%;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
  footer .container > div.col-lg-2,
  footer .container > div.pushed {
    flex: 0 0 100%;
  }
  footer .container > div.col-lg-2 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 490px) {
  section.services .box_list .box.activated {
    height: auto;
    max-height: 620px;
  }
  section.services .box_list .box.activated h3,
  section.services .box_list .box.activated h4 {
    padding-right: 50px;
  }
  section.services .box_list .box.activated p {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
  .projects .industries .wrapper article {
    flex: 0 0 60%;
  }
  .projects .industries .wrapper article:last-child {
    flex: 0 0 calc(60% + 15px);
  }
  section.team .gallery .sendContent {
    height: 270px;
  }
  section.team .gallery .sendContent .avatar {
    display: none;
  }
  section.clients .wrapper .client {
    width: 100%;
  }
  section.clients .quotes,
  .showcase .content .quotes_wrapper .quotes {
    height: 270px;
  }
  section.clients .quotes .quote,
  .showcase .content .quotes_wrapper .quotes .quote {
    height: 148px;
    width: calc(100% - 80px);
    max-width: calc(100% - 80px);
  }
  .keep .container .form {
    font-size: .9em;
  }
}
@media screen and (max-width: 420px) {
  section.slider {
    font-size: 0.6em;
  }
  .projects .showcases .case .content,
  section.about,
  section.team,
  section.clients,
  section.blog_home,
  section.industries {
    font-size: 0.9em;
  }
  section.about .container .facts .facts_list li article {
    font-size: 1.1em;
  }
  section.clients .wrapper .client {
    width: 100%;
  }
  section.clients .quotes,
  .showcase .content .quotes_wrapper .quotes {
    height: 300px;
  }
  section.clients .quotes .quote,
  .showcase .content .quotes_wrapper .quotes .quote {
    height: 170px;
    width: calc(100% - 80px);
    max-width: calc(100% - 80px);
  }
  .keep .container .form {
    font-size: .8em;
  }
  footer .container > div.col-lg-2:first-child ul.sitemap {
    flex-direction: column;
  }
  footer .container > div.col-lg-2:first-child ul.sitemap > li ul,
  footer .container > div.col-lg-2:first-child ul.legal > li ul {
    padding-left: 16px;
  }
  footer .container > div.col-lg-2:first-child ul.legal > li {
    display: block;
  }
}
@media screen and (max-width: 360px) {
  .projects .industries .wrapper article {
    flex: 0 0 80%;
  }
  .projects .industries .wrapper article:last-child {
    flex: 0 0 calc(80% + 15px);
  }
  .projects .showcases .case .content,
  section.about,
  section.team,
  section.clients,
  section.blog_home,
  section.industries {
    font-size: 0.8em;
  }
  section.about .container .facts .facts_list li article {
    font-size: 1.2em;
  }
  section.team .gallery .sendContent {
    height: 220px;
  }
  section.clients .quotes,
  .showcase .content .quotes_wrapper .quotes {
    height: 420px;
  }
  section.clients .quotes .quote,
  .showcase .content .quotes_wrapper .quotes .quote {
    height: 260px;
    width: calc(100% - 80px);
    max-width: calc(100% - 80px);
  }
  .keep .container .form {
    font-size: 0.95em;
  }
}
#fastContact {
  overflow: auto;
  position: fixed;
  top: 0;
  height: 100%;
  min-height: 100%;
  left: 0;
  right: 0;
  background-color: #f2f2f2;
  z-index: 6;
  -webkit-transform: translate3d(0, -200%, 0);
  transform: translate3d(0, -200%, 0);
  transition: -webkit-transform 0.5s linear;
  transition: transform 0.5s linear;
  color: #7d7b7c;
}
#fastContact.open {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}
#fastContact label {
  font-size: 11px;
  font-weight: 600;
  line-height: 10px;
}
#fastContact .closebutton {
  position: absolute;
  right: 18px;
}
#fastContact .container {
  margin-top: 18px;
  width: 100%;
  max-width: 660px;
}
#fastContact .container .header {
  display: flex;
  justify-content: flex-end;
  min-height: initial;
}
@media (max-width: 800px) {
  #fastContact .container .header {
    justify-content: flex-start;
  }
}
#fastContact .content {
  margin-top: 90px;
}
#fastContact .content .title h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 18px;
  color: #15b750;
  margin-bottom: 9px;
  max-width: 690px;
}
#fastContact .content .title h3 {
  font-size: 14px;
  font-weight: 400;
  line-height: 10px;
  margin-bottom: 40px;
}
form.contactform input[type="text"],
form.contactform textarea {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  width: 100%;
  height: 30px;
  font-size: 24px;
  padding-right: 30px;
  border: 0;
  background: transparent;
  border-bottom: 2px solid #d0dfb3;
  line-height: 28px;
  outline: none;
  background-color: #f2f2f2;
  resize: none;
}
form.contactform input[type="text"]:focus,
form.contactform textarea:focus {
  border-bottom-color: #15b750;
  font-weight: 500;
  color: #3d3b3c;
}
form.contactform input[type="text"].error,
form.contactform textarea.error {
  border-bottom: 2px solid #ff4900;
  background-color: #ffece5;
}
form.contactform input[type="text"]::-webkit-input-placeholder,
form.contactform textarea::-webkit-input-placeholder {
  color: #9e9c9d;
}
form.contactform input[type="text"]:-moz-placeholder,
form.contactform textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #9e9c9d;
}
form.contactform input[type="text"]::-moz-placeholder,
form.contactform textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #9e9c9d;
}
form.contactform input[type="text"]:-ms-input-placeholder,
form.contactform textarea:-ms-input-placeholder {
  color: #9e9c9d;
}
form.contactform input[type="button"] {
  margin-top: 20px;
  float: right;
}
form.contactform input[type="button"].error {
  opacity: 0.4;
}
.errormessage {
  color: #ff4900;
  font-size: 14px;
  line-height: 18px;
  margin-top: 20px;
}
p#emailsent,
p#sending {
  color: #15b750;
  font-size: 24px;
  line-height: 28px;
  margin-top: 40px;
  display: none;
}
.esc {
  font-size: 12px;
  margin-top: 35px;
  color: #bebdbd;
  padding-right: 10px;
  text-align: right;
}
.link,
.outlinebutton {
  display: inline-block;
  border: 2px solid #15b750;
  padding: 10px 16px;
  border-radius: 2px;
  text-transform: uppercase;
  font-size: 0.75em;
  line-height: 1em;
  font-weight: 600;
  color: #15b750;
  letter-spacing: 2px;
}
.link img,
.outlinebutton img {
  margin-left: 5px;
  vertical-align: bottom;
}
.link.white,
.outlinebutton.white {
  border: 2px solid #fff;
  color: #fff;
}
.link.no-border,
.outlinebutton.no-border {
  border: 0;
}
.filledbutton {
  background-color: #15b750;
  display: inline-block;
  padding: 10px 16px;
  border-radius: 2px;
  text-transform: uppercase;
  font-size: 0.75em;
  line-height: 1em;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
}
.filledbutton img {
  margin-left: 5px;
  vertical-align: bottom;
}
.closebutton {
  cursor: pointer;
  width: 46px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background-image: url('img/G16_icbt_close_M-WH.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.closebutton.small {
  border: 2px solid #7d7b7c;
  width: 30px;
  height: 24px;
  border-radius: 12px;
  background-image: url('img/G16_icbt_close-WH-grey.svg');
}
.closebutton.greenl4 {
  border: 2px solid #d0dfb3;
  background-image: url('img/GW_icon_g_close.svg');
  background-size: 20px;
}
.closebutton img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.load_more {
  text-transform: uppercase;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.load_more .button-content {
  padding: 60px 0 120px 0;
}
#back_to_top {
  color: #cdcdcd;
  height: auto;
  position: fixed;
  bottom: 32px;
  margin: 0;
  z-index: 10000;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  right: 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(50px);
}
#back_to_top.on {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}
#back_to_top.off {
  opacity: 0;
  filter: alpha(opacity=0);
}
