/* ---------->>> NORMALIZE <<<-----------*/
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "museo-sans", sans-serif;
}

* {
  box-sizing: border-box;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

figure {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-weight: 400;
  margin: 0;
  padding: 0;
}

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

li {
  list-style-type: none;
}

p a {
  color: #e60000;
  text-decoration: underline;
}

input[type="radio"] {
  border: 0;
  -webkit-appearance: none;
  display: none;
}

input:focus,
select:focus {
  outline: 0;
}

select {
  text-indent: 1px;
  text-overflow: '';
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
[type='submit'] {
  padding: 0;
  cursor: pointer;
  border: 0;
  outline: 0;
  background-color: transparent;
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

[type='checkbox'],
[type='radio'] {
  box-sizing: border-box;
  padding: 0;
}

::-webkit-input-placeholder {
  opacity: .54;
  color: inherit;
}

textarea {
  overflow: auto;
}

button,
select {
  text-transform: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

td {
  padding: 0;
}

.clear:before,
.clear:after {
  display: table;
  content: ' ';
}

.clear:after {
  clear: both;
}

.is-hidden {
  display: none !important;
}

/* ---------->>> GLOBAL <<<-----------*/
.panel {
  position: relative;
  display: none;
  height: inherit;
  margin: 0 auto;
  text-align: center;
}

.panel h1 {
  text-align: center;
  letter-spacing: .04em;
}

.panel:before, .panel:after {
  content: " ";
  display: table;
}

.panel:after {
  clear: both;
}

html, body {
  width: 100%;
}

body {
  position: relative;
  padding-bottom: 70px;
}

.browserupgrade {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 50px;
  text-align: center;
  background: #fff;
}

.browserupgrade a {
  text-decoration: underline;
  color: #a52a2a;
}

/* START */
header,
main,
footer {
  width: 100%;
}

.container {
  max-width: 1230px;
  margin: 0 auto;
}

.container_main {
  margin: 0 auto;
}

/* HEADER */
header {
  height: 100px;
  background-color: #333;
  position: relative;
}

header .container {
  height: 100%;
  position: relative;
}

header .container .homepage-link {
  display: block;
  width: 110px;
  height: 100%;
  float: left;
  background: url("../images/index/havas_showroom_logo_rgb_white.png") center no-repeat;
  background-size: 101px auto;
}

header nav {
  float: right;
}

header nav > ul {
  float: right;
}

header nav.language ul {
  display: block;
  padding-left: 35px;
}

header nav.language a {
  text-transform: uppercase;
}

header nav.language li.active {
  border: 0;
}

header nav.language ul span {
  color: #9e9e9e;
}

header nav li {
  display: inline-block;
  height: 100px;
  line-height: 100px;
  padding: 0 10px;
  position: relative;
}

header nav li.parent:first-of-type {
  position: absolute;
  left: 120px;
}

header nav li a,
header nav li p {
  color: #fff;
  font-size: 16px;
}

header nav li p {
  cursor: default;
}

header nav li.active > a,
header nav li.active > p {
  color: #e60000;
}

header nav li.active {
  border-bottom: 2px solid #e60000;
}

header nav li.submenu.active {
  border-bottom: 1px solid #b4b4b4;
}

/* Burger */
header .burger {
  display: none;
  position: absolute;
  right: 23px;
  top: 23px;
  width: 28px;
  height: 24px;
  z-index: 10;
  overflow: hidden;
}

header .burger .burger-container,
header .burger .burger-container .foreground,
header .burger .burger-container .background {
  width: 100%;
  height: 100%;
  position: relative;
}

header .burger span:after,
header .burger span:before {
  content: "";
  position: absolute;
  left: 0;
  top: -9px;
}

header .burger span:after{
  top: 9px;
}

header .burger span {
  position: absolute;
  display: block;
  top: 10px;
}

header .burger span,
header .burger span:after,
header .burger span:before {
  width: 100%;
  height: 5px;
  background-color: #000;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, -o-transform 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, transform 0.3s, -webkit-transform 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}

header .burger .gray span,
header .burger .gray span:after,
header .burger .gray span:before {
  background-color: #282828;
  -webkit-transition: background-color 0s, -webkit-transform 0s, -webkit-transform 0s;
  transition: background-color 0s, -o-transform 0s, -webkit-transform 0s;
  transition: background-color 0s, transform 0s, -webkit-transform 0s;
}

header .burger .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}

header .burger .foreground {
  z-index: 2;
}

header.on .burger span {
  background-color: transparent;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, -o-transform 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

header.on .burger span:before {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
  -ms-transform: rotate(45deg) translate(5px, 5px);
  -o-transform: rotate(45deg) translate(5px, 5px);
  transform: rotate(45deg) translate(5px, 5px);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #282828;
}

header.on .burger span:after {
  -webkit-transform: rotate(-45deg) translate(7px, -8px);
  -ms-transform: rotate(-45deg) translate(7px, -8px);
  -o-transform: rotate(-45deg) translate(7px, -8px);
  transform: rotate(-45deg) translate(7px, -8px);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #282828;
}

/* Dropdown */
header nav li > ul {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 100;
  transform: translateY(100%);
  -ms-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -webkit-box-shadow: 0px 3px 5px 0px rgba(50, 50, 50, 0.75);
  -moz-box-shadow:    0px 3px 5px 0px rgba(50, 50, 50, 0.75);
  box-shadow:         0px 3px 5px 0px rgba(50, 50, 50, 0.75);
  display: none;
  width: 400px;
}

header nav li > ul:after {
  content: " ";
  display: table;
  clear: both;
}

header nav li:hover > ul {
  display: block;
}

header nav li:hover > a,
header nav li:hover > p {
  color: #e60000;
}

header nav li > ul li {
  display: block;
  width: auto;
  height: 50px;
  width: 50%;
  background-color: #fff;
  text-align: left;
  line-height: 50px;
  padding-left: 20px;
  border-bottom: 1px solid #b4b4b4;
  float: left;
}

header nav li > ul li:nth-of-type(odd) {
  border-right: 1px solid #b4b4b4;
}

header nav li > ul li:last-of-type {
  border-bottom: 0;
}

header nav li > ul li a:hover {
  color: #e60000;
}

header .icons {
  width: 35px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #eae9e9;
  z-index: 10;
  transform: translateY(-20%);
}

header .icons > div {
  height: 35px;
  border-bottom: 1px solid #c6c6c6;
  cursor: pointer;
  position: relative;
}

header .icons > div:last-of-type {
  border-bottom: 0;
}

header .icons .globe {
  background: url("../images/index/icon-globe.png") center no-repeat;
  background-size: 18px auto;
}

header .icons .envelope {
  background: url("../images/index/icon-envelope.png") center no-repeat;
  background-size: 16px auto;
}

header .icons .logout {
  background: url("../images/index/icon-logout.png") center no-repeat;
  background-size: 16px auto;
}

header .icons .changepass {
  background: url("../images/index/icon-password.png") center no-repeat;
  background-size: 16px auto;
}

header .icons .envelope.active {
  background: url("../images/index/icon-envelope-active.png") center no-repeat;
  background-size: 16px auto;
}

header .icons .facebook {
  background: url("../images/index/icon-facebook.png") center no-repeat;
  background-size: 18px auto;
}

.optinbox {
  width: 312px;
  height: 450px;
  border: 1px solid #c6c6c6;
  background-color: #eae9e9;
  position: absolute;
  top: -1px;
  left: -312px;
  cursor: default;
  padding: 20px 25px 0;
  display: none;
}

.contact-form .optinbox {
  width: auto;
  height: auto;
  border: 0;
  background-color: transparent;
  position: relative;
  top: unset;
  left: unset;
  cursor: default;
  padding: unset;
  display: block;
  padding-bottom: 10px;
}

.contact-form .optinbox a {
  color: #e60000;
  font-weight: bold;
}

.contact-form .optinbox a:hover {
  text-decoration: underline;
}

.contact-form .optinbox input[type=checkbox].css-checkbox + label.css-label {
  padding-top: 12px;
}

.contact-form .has-error .optinbox input[type=checkbox].css-checkbox + label.css-label,
.contact-form .has-error .optinbox input[type=checkbox].css-checkbox + label.css-label a
 {
  color: red;
}

.contact-form .input.optinboxHolder span.error.show {
  bottom: -12px;
}

.career-form .optinbox {
  width: auto;
  height: auto;
  border: 0;
  background-color: transparent;
  position: relative;
  top: unset;
  left: unset;
  cursor: default;
  padding: unset;
  display: block;
  padding-bottom: 10px;
  margin-left: 12px;
}

.career-form .optinbox a {
  color: #e60000;
  font-weight: bold;
}

.career-form .optinbox a:hover {
  text-decoration: underline;
}

.career-form .optinbox input[type=checkbox].css-checkbox + label.css-label {
  padding-top: 12px;
}

.career-form .has-error .optinbox input[type=checkbox].css-checkbox + label.css-label,
.career-form .has-error .optinbox input[type=checkbox].css-checkbox + label.css-label a
 {
  color: red;
}

.job_application .has-error .optinbox input[type=checkbox].css-checkbox + label.css-label,
.job_application .has-error .optinbox input[type=checkbox].css-checkbox + label.css-label a
 {
  color: red;
}

.career-form .input.optinboxHolder span.error.show {
  bottom: -12px;
}

.job_application .input.has-error span.error.show {
  position: relative;
  bottom: -5px;
  font-style: normal;
  text-align: left;
}

.job_application .input.has-error input{
	border-color: red;
}

.optinbox h3 {
  font-size: 35px;
  text-align: center;
  font-weight: 300;
  color: #58585a;
  line-height: 40px;
  padding-bottom: 25px;
}

.optinbox input[type="text"],
.optinbox textarea {
  width: 100%;
  margin-bottom: 15px;
  border: 0;
  font-size: 16px;
}

.optinbox input[type="text"] {
  height: 30px;
  padding-left: 12px;
  padding-right: 12px;
}

.optinbox input.error {
  border: 1px solid #e60000;
}

.optinbox textarea {
  padding: 12px;
  outline: none;
  resize: none;
}

.optinbox input[type=checkbox].css-checkbox {
  position:absolute;
  z-index:-1000;
  left:-1000px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height:1px;
  width:1px;
  margin:-1px;
  padding:0;
  border:0;
}

.optinbox input[type=checkbox].css-checkbox + label.css-label {
  padding-left: 38px;
  height: 50px;
  display: inline-block;
  line-height: 25px;
  background-repeat: no-repeat;
  background-position: left center;
  font-size: 25px;
  vertical-align: middle;
  cursor: pointer;
  background-size: 25px auto;
  font-size: 16px;
  font-weight: 300;
  color: #58585a;
}

.optinbox input[type=checkbox].css-checkbox:checked + label.css-label {
  background-image: url("../images/index/checkbox-checked.jpg");
}

.optinbox label[for="checkboxG1"].error {
  color: #e60000 !important;
}

.optinbox label.css-label {
  background-image: url("../images/index/checkbox.jpg");
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.optinbox button {
  display: block;
  height: 90px;
  width: -webkit-calc(100% + 2px);
  width:    -moz-calc(100% + 2px);
  width:         calc(100% + 2px);
  border: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  background-color: #e60000;
  position: absolute;
  bottom: -1px;
  left: -1px;
}

header .icons > div.optinbox {
  height: auto;
}

.icons .optinbox button {
  position: relative;
  margin-top: 10px;
  height: 60px;
}

/* MAIN */
/* Slider */
main .slider {
  height: 500px;
  background-color: #e60000;
  position: relative;
  overflow: hidden;
}

main .slider .slide {
  width: 100%;
  height: 100%;
  position: absolute;
  display: none;
  background-color: #fff;
}

main .slider .slide:before {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

main .slider .slide#canvas-slide:before {
  display: none;
}

main .slider .wrapper {
  width: 100%;
  height: 100%;
}

main .slider .slide:first-of-type {
  display: block;
}

main .slider .slide h1 {
  font-size: 48px;
  font-weight: 700;
  display: table-cell;
  padding: 18px 30px;
  color: #fff;
  /*background-color: #eae9e9;*/
  /*border-bottom: 8px solid #e60000;*/
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

#canvas-slide {
  background: url('../images/index/canvas-slide-bg.png') center bottom no-repeat #e60000;
  background-size: auto 100%;
}

#canvas-slide canvas {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  filter: blur(1px);
  opacity: 0.6;
}

#canvas-slide .mobile-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}

#canvas-slide .mobile-overlay h1 {
  background-color: transparent;
  border: 0;
  color: #fff;
  font-size: 50px;
  padding: 0 0 20px 0;
}

main .slider .pagination {
  display: block;
  width: 100%;
  height: 25px;
  position: absolute;
  bottom: 20px;
  text-align: center;
  z-index: 10;
}

main .slider .pagination li {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid #fff;
  border-radius: 50px;
  margin: 0 8px;
  background-color: #c6c6c6;
  cursor: pointer;
}

main .slider .pagination li.active {
  background-color: #ffffff;
}

/* Content */
main .content {
  background-color: #eae9e9;
}

main .content h1 {
  font-weight: 300;
  font-size: 50px;
  text-align: center;
  color: #58585a;
  padding: 50px 0;
}

/* Tiles */
main .content .tiles > a {
  display: block;
  position: relative;
}

main .content .tiles .square {
  width: 300px;
  height: 300px;
}

main .content .tiles .square:before {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: 0.3s;
}

main .content .tiles .square:hover:before {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

main .content .tiles .square.right {
  float: right;
  margin-left: 30px;
}

main .content .tiles .square.left {
  float: left;
  margin-right: 30px;
}

main .content .tiles .square.content-marketing:before {
  background: url("../images/index/tile-2.jpg") center no-repeat;
  background-size: 300px;
}

main .content .tiles .square.content-marketing > div {
  color: #bfd730;
}

main .content .tiles .square.video-network:before {
  background: url("../images/index/tile-3.jpg") center no-repeat;
  background-size: 300px;
}

main .content .tiles .square.video-network > div {
  color: #fcaf17;
}

main .content .tiles .square.edm:before {
  background: url("../images/index/tile-6.jpg") center no-repeat;
  background-size: 300px;
}

main .content .tiles .square.edm > div {
  color: #dc6fab;
}

main .content .tiles .square,
main .content .tiles .auto {
  margin-bottom: 30px;
}

main .content .tiles .auto {
  height: 300px;
  width: auto;
  overflow: hidden;
  padding: 25px;
}

main .content .tiles .auto:before {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: 0.3s;
}

main .content .tiles .auto:hover:before {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

main .content .tiles .auto.display-network:before {
  background: url("../images/index/tile-1.jpg") center right no-repeat;
  background-size: auto 300px;
}

main .content .tiles .auto.display-network .border > div {
  color: #92326c;
}

main .content .tiles .auto.mobile-network:before {
  background: url("../images/index/tile-4.jpg") center right no-repeat;
  background-size: auto 300px;
}

main .content .tiles .auto.mobile-network .border > div {
  color: #ef4130;
}

main .content .tiles .auto.programmatic:before {
  background: url("../images/index/tile-5.jpg") center no-repeat;
  background-size: auto 300px;
}

main .content .tiles .auto.programmatic .border > div {
  color: #b49f5b;
}

main .content .tiles .square > div {
  height: 110px;
  line-height: 110px;
  padding: 0 25px;
  min-width: 50px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  font-size: 35px;
  font-weight: 700;
  background-color: #fff;
}

main .content .tiles .square > div.two-line {
  line-height: 40px;
  padding-top: 14px;
}

main .content .tiles .auto .border {
  border: 10px solid #fff;
  width: 100%;
  height: 100%;
  position: relative;
}

main .content .tiles .auto .border > div {
  height: 65px;
  line-height: 65px;
  min-width: 50px;
  padding: 0 30px 0 15px;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  font-size: 35px;
  background-color: #fff;
}

/* FOOTER  */
footer {
  height: 70px;
  background-color: #fff;
  text-align: center;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  box-shadow: 0px -2px 5px 0px rgba(0, 0, 0, 0.1);
}

footer nav li {
  display: inline-block;
  height: 70px;
  line-height: 70px;
  font-size: 15px;
  color: #838383;
  font-weight: 300;
  padding: 0 8px;
}

footer nav li a {
  font-weight: 700;
  color: #e60000;
}

footer nav li.logo {
  width: 100px;
}

footer nav li.logo a {
  display: block;
  height: 60px;
  background: url("../images/index/havas_showroom_logo_rgb.png") center no-repeat;
  background-size: 75px auto;
  position: relative;
  top: 2px;
}

footer nav li.footer-social {
  text-align: left;
  box-sizing: border-box;
  position: relative;
  width: 155px;
  padding: 0;
}

footer nav li.footer-social a {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: 0 5px -5px;
}

footer nav li.footer-social a.fb {
  background: url("../images/blog/old/icon-fb.png") center no-repeat;
  background-size: contain;
}

footer nav li.footer-social a.yt {
  background: url("../images/blog/old/icon-yt.png") center no-repeat;
  background-size: contain;
}

footer nav li.footer-social a.instagram {
  background: url("../images/blog/old/icon-instagram-grey.png") center no-repeat;
  background-size: contain;
}

footer nav li.footer-social a.linkedin {
  background: url("../images/blog/old/icon-linkdin.png") center no-repeat;
  background-size: contain;
}

/* Industry pages */
.industry .slider .slide.default {
  background: #fff url("../images/industry/slider-image.jpg?") center top no-repeat;
  background-size: cover;
}

.gridtype-1 {
  background-color: #eae9e9;
}

.gridtype-1 .container {
  padding-top: 45px;
}

.gridtype-1 .container .top-text,
.gridtype-1 .container .top-text p {
  line-height: 25px;
  color: #58585a;
  /*text-align: center; */
  font-size: 20px;
  padding: 0 20px 50px;
  font-weight: 300;
}

.gridtype-1 .container .grid .line {
  padding-bottom: 70px;
  clear: both;
}

.gridtype-1 .container .grid .line:last-of-type {
  padding-bottom: 56px;
}

.container  .line:after {
  content: " ";
  display: table;
  clear: both;
}

.gridtype-1 .container .grid .line > div {
  width: 600px;
  position: relative;
}

.gridtype-1 .container .grid .line > div:nth-of-type(odd) {
  float: left;
}

.gridtype-1 .container .grid .line > div:nth-of-type(even) {
  float: right;
}

.gridtype-1 .container .grid .line > div h3 {
  display: block;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  font-weight: 700;
  color: #58585a;
  background-color: #bfd730;
  padding-left: 198px;
}

.gridtype-1 .container .grid .line > div p {
  padding: 12px 0 0 198px;
  font-size: 18px;
  line-height: 23px;
  font-weight: 300;
  color: #58585a;
}

.gridtype-1 .container .grid .line > div .icon {
  width: 198px;
  height: 198px;
  position: absolute;
  left: 0;
  top: -40px;
}

.gridtype-1 .container .grid .line .v1 .icon {
  background: url("../images/industry/icon-clock-1.png") left 26px top no-repeat;
  background-size: 148px auto;
}

.gridtype-1 .container .grid .line .v2 .icon {
  background: url("../images/industry/icon-screwdriver.png") left 16px top 25px no-repeat;
  background-size: 162px auto;
}

.gridtype-1 .container .grid .line .v3 .icon {
  background: url("../images/industry/icon-magnifyer.png") left 29px top no-repeat;
  background-size: 146px auto;
}

.gridtype-1 .container .grid .line .v4 .icon {
  background: url("../images/industry/icon-award.png") left 30px top 14px no-repeat;
  background-size: 152px auto;
}

/* 2 column layout with title border overlapping with image */
.column-2 {
  background-color: #fff;
  padding-top: 120px;
}

.column-2 .container .line {
  padding-bottom: 110px;
}

.column-2 .container .line:last-of-type {
  padding-bottom: 55px;
}

.column-2 .container .line > div {
  width: 600px;
  position: relative;
}

.column-2 .container .line > div p {
  font-size: 18px;
  color: #58585a;
  padding-top: 135px;
  font-weight: 300;
  line-height: 23px;
}

.column-2 .container .left {
  float: left;
}

.column-2 .container .right {
  float: right;
}

.column-2 .container .line > div .image {
  width: 100%;
  height: 290px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.column-2 .container .line > div .title-box {
  height: 165px;
  width: 116%;
  display: table;
  text-align: center;
  border: 5px solid #bfd730;
  position: absolute;
  top: -50px;
  z-index: 10;
}

.column-2 .container .right .title-box {
  right: 0;
}

.column-2 .container .left .title-box {
  left: 0;
}

.column-2 .container .line > div .title-box h3 {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  font-weight: 700;
  font-size: 35px;
  color: #58585a;
  padding: 0 80px;
}

/* Grid type2 - 4 image boxes in a row */
.gridtype-2 {
  background-color: #eae9e9;
}

.gridtype-2 h2 {
  font-size: 50px;
  line-height: 48px;
  color: #58585a;
  padding: 55px 20px 25px;
  font-weight: 700;
  text-align: center;
}

.gridtype-2 .container > p {
  color: #58585a;
  font-size: 20px;
  line-height: 25px;
  font-weight: 300;
  text-align: center;
  padding: 0 20px;
}

.gridtype-2 .grid {
  padding: 50px 0 55px;
  text-align: center;
  margin: 0 auto;
  width: 820px;
}

.gridtype-2 .grid > div {
  display: inline-block;
  width: 170px;
  height: 230px;
  position: relative;
  margin: 15px;
}

.gridtype-2 .grid > div:nth-of-type(1) {
  background: url("../images/portfolio/1.jpg") right bottom no-repeat;
  background-size: cover;
}

.gridtype-2 .grid > div:nth-of-type(2) {
  background: url("../images/portfolio/2.jpg") right bottom no-repeat;
  background-size: cover;
}

.gridtype-2 .grid > div:nth-of-type(3) {
  background: url("../images/portfolio/3.jpg") right bottom no-repeat;
  background-size: cover;
}

.gridtype-2 .grid > div:nth-of-type(4) {
  background: url("../images/portfolio/4.jpg") right bottom no-repeat;
  background-size: cover;
}

.gridtype-2 .grid > div:nth-of-type(5) {
  background: url("../images/portfolio/5.jpg") right bottom no-repeat;
  background-size: cover;
}

.gridtype-2 .grid > div:nth-of-type(6) {
  background: url("../images/portfolio/6.jpg") right bottom no-repeat;
  background-size: cover;
}

.gridtype-2 .grid > div:nth-of-type(7) {
  background: url("../images/portfolio/7.jpg") right bottom no-repeat;
  background-size: cover;
}

.gridtype-2 .grid > div:nth-of-type(8) {
  background: url("../images/portfolio/8.jpg") right bottom no-repeat;
  background-size: cover;
}

.gridtype-2 .grid > div .title {
  display: table;
  width: 100%;
  position: relative;
  top: 0;
  background-color: #e60000;
  min-height: 50px;
}

.gridtype-2 .grid > div .title p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  text-align: center;
  display: table-cell;
  width: 100%;
  vertical-align: middle;
  padding: 5px 10px;
}

.gridtype-2 .grid > div .bottom {
  background-color: rgba(88, 88, 90, 0.8);
  height: 55px;
  text-align: center;
  display: table;
  width: 100%;
  vertical-align: middle;
  font-weight: 300;
  position: absolute;
  bottom: 0;
}

.gridtype-2 .grid > div .bottom p {
  color: #fff;
  font-size: 16px;
  padding: 5px 10px;
  display: table-cell;
  vertical-align: middle;
}

.gridtype-2 .grid > div .bottom p span {
  display: block;
  font-weight: 700;
}

/* Bottom slider - slider with partner brand icons */
.bottom-slider {
  background-color: #fff;
  min-height: 290px;
  border-bottom: 30px solid #eae9e9;
  overflow: hidden;
}

.bottom-slider h2 {
  font-size: 50px;
  font-weight: 300;
  color: #58585a;
  text-align: center;
  padding: 55px 20px 25px;
}

.bottom-slider .wrapper {
  height: 100px;
  position: relative;
}

.bottom-slider .wrapper .block {
  height: 100%;
  width: 100%;
  position: absolute;
  overflow: hidden;
  text-align: center;
  display: none;
}

.bottom-slider .wrapper .block:first-of-type {
  display: block;
}

.bottom-slider .wrapper .block .tile {
  height: 100px;
  width: 170px;
  display: inline-block;
}

.bottom-slider .wrapper .block .tile:nth-of-type(1) {
  background: url("../images/bottomslider/1.png") center center no-repeat;
  background-size: 82px auto;
}

.bottom-slider .wrapper .block .tile:nth-of-type(2) {
  background: url("../images/bottomslider/2.png") center center no-repeat;
  background-size: 107px auto;
}

.bottom-slider .wrapper .block .tile:nth-of-type(3) {
  background: url("../images/bottomslider/3.png") center center no-repeat;
  background-size: 103px auto;
}

.bottom-slider .wrapper .block .tile:nth-of-type(4) {
  background: url("../images/bottomslider/4.png") center center no-repeat;
  background-size: 64px auto;
}

.bottom-slider .wrapper .block .tile:nth-of-type(5) {
  background: url("../images/bottomslider/5.png") center center no-repeat;
  background-size: 108px auto;
}

.bottom-slider .wrapper .block .tile:nth-of-type(6) {
  background: url("../images/bottomslider/6.png") center center no-repeat;
  background-size: 113px auto;
}

.bottom-slider .wrapper .block .tile:nth-of-type(7) {
  background: url("../images/bottomslider/7.png") center center no-repeat;
  background-size: 108px auto;
}

.bottom-slider .wrapper .block .tile:nth-of-type(8) {
  background: url("../images/bottomslider/8.png") center center no-repeat;
  background-size: 89px auto;
}

/* Gridtype 3 - Two column horizontal grid with image + line of text */
.gridtype-3 {
  background-color: #eae9e9;
}

.gridtype-3 .container {
  padding: 55px 20px 10px;
}

.gridtype-3 .container h2 {
  font-size: 50px;
  font-weight: 300;
  text-align: center;
  color: #58585a;
}

.gridtype-3 .container .grid {
  width: 1040px;
  margin: 45px auto 0;
}

.gridtype-3 .container .grid .cell {
  height: 70px;
  width: 50%;
  float: left;
  position: relative;
  margin-bottom: 30px;
}

.gridtype-3 .container .grid:after {
  content: "";
  display: table;
  clear: both;
}

.gridtype-3 .container .grid .cell .thumbnail {
  width: 70px;
  height: 70px;
  float: left;
  background-color: #aeb5b6;
}

.gridtype-3 .container .grid .cell .right {
  overflow: hidden;
  height: 70px;
  width: auto;
  padding: 0 25px;
}

.gridtype-3 .container .grid .cell .right .inner {
  display: table;
  width: 100%;
  height: 100%;
}

.gridtype-3 .container .grid .cell .right .inner p {
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  font-size: 18px;
  text-align: left;
  font-weight: 700;
  color: #58585a;
}

.gridtype-3 .container .btn-more {
  display: block;
  height: 95px;
  width: 375px;
  line-height: 95px;
  color: #fff;
  background-color: #e60000;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 35px auto 0;
  text-align: center;
}

/* Career list */
.career_list {
  background: url('../images/career_list.jpg');
  background-size: cover;
  background-position: 50% 50%;
  margin-top: -70px;
  padding-top: 80px;
  padding-bottom: 160px;
  padding-left: 40px;
  padding-right: 40px;
}

.arrowdown {
  -webkit-animation: mover 1.5s infinite  alternate;
  animation: mover 1.5s infinite  alternate;
  width: 40px !important;
  height: auto !important;
}

@-webkit-keyframes mover {
  0% { transform: translateY(0); }

  100% { transform: translateY(-15px); }

}

@keyframes mover {
  0% { transform: translateY(0); }

  100% { transform: translateY(-15px); }

}

.career_list .job {
  background-color: #e60000;
  height: 160px;
  float: left;
  width: 22%;
  margin: 20px 1.0%;
  display: table;
  transition: all 0.15s;
  padding: 0px 0px 10px;
  cursor: pointer;
  overflow: hidden;
}

.career_list .job:hover {
  background-color: #0075b8;
}

.career_list .bigger .job {
  height: 190px;
  width: 31%;
}

.just1 {
  margin-left: 36.666% !important;
}

.just2 {
  margin-left: 16.666% !important;
}

.career_list .job img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin: 0px auto 20px;
  transition: all 0.55s;
}

.career_list .job:hover img {
  transform: scale(1.05);
}

.career_list .job h3 {
  font-size: 20px;
  color: white;
  font-weight: bold;
  line-height: 20px;
  min-height: 40px;
  text-align: center;
  text-transform: uppercase;
  display: table-cell;
  vertical-align: middle;
  transition: all 0.15s;
}

.career_list a:hover .job h3 {
  color: white;
}

.career_list .job-social {
  margin: 0 auto;
  width: 100%;
}

.career_list .job-social li {
  display: block;
  height: 30px;
  margin: 7px auto 0px;
  width: 28px;
}

.career_list .job-social .fb {
  background: url(../images/career/facebook.png) center no-repeat;
  background-size: contain;
}

.career_list .job-social .twitter {
  background: url(../images/career/twitter.png) center no-repeat;
  background-size: contain;
}

.job_description {
  background: url('../images/job_bg.jpg') #eae9e9;
  padding: 100px 60px;
  background-size: 1200px auto;
  background-repeat: no-repeat;
  background-position: bottom right;
}

.job_description img {
  margin-right: 30px;
  margin-bottom: 30px;
  height: auto !important;
}

.job_description ul {
  margin-top: 5px;
}

.job_description li {
  list-style-type: disc;
  line-height: 21px;
  margin-left: 20px;
}

.job_description p {
  line-height: 21px;
}

.job_application {
  background: url('../images/career_list.jpg');
  background-size: cover;
  background-position: 50% 50%;
  padding: 80px 80px 120px 80px;
}

.job_application .form {
  background-color: white;
  border: 2px solid #eae9e9;
  padding: 40px 150px 70px;
  max-width: 1200px;
  margin: 0 auto;
}

.job_application .form h3 {
  font-size: 20px;
  margin: 20px 0px 40px;
}

.job_application .col1, .job_application .col2 {
  width: 47%;
  float: left;
}

.job_application .col1 {
  margin-right: 6%;
}

.job_application input[type=text], .job_application input[type=email] {
  display: block;
  width: 100%;
  border: 1px solid #58585a;
  padding: 15px 15px;
  color: black;
  margin-top: 5px;
}

.job_application .form .group {
  margin-bottom: 25px;
}

.job_application .form .group span {
  font-style: italic;
}

.job_application textarea {
  display: block;
  width: 100%;
  height: 213px;
  border: 1px solid #58585a;
  margin-top: 5px;
  padding: 15px 15px;
  outline: none;
}

.job_application input[type=text]:focus, .job_application input[type=email]:focus, .job_application textarea:focus {
  border: 1px solid #000000;
  background-color: #fafafa;
  outline: none;
}

.nojobs {
  text-align: center;
  font-size: 28px;
  margin-top: 40px;
}

.fileholder {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  cursor: pointer;
  background: #d2d1d1;
  border-radius: 5px;
  padding: 12px 38px;
  text-align: center;
  width: 190px;
  transition: all 0.3s;
  float: left;
}

.fileholder:hover {
  background-color: #e60000;
}

.fileholder:hover span {
  color: #ffffff;
}

.fileholder span {
  cursor: pointer;
  font-style: initial !important;
  color: #58585a;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  transition: all 0.3s;
}

.fileholder input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
  height: 40px;
}

#filetext {
  float: left;
  font-size: 11px;
  margin-top: 10px;
  padding: 15px 10px;
}

.job_application .form input[type='submit'] {
  background-color: #e60000;
  color: white;
  text-transform: uppercase;
  padding: 20px 60px;
  font-size: 18px;
  transition: all 0.3s;
  border-radius: 5px;
}

.job_application .form input[type='submit']:hover {
  background-color: #0183bd;
}

.error input[type=text], .error input[type=email] {
  border: 1px solid #ff0000 !important;
}

.error .error-msg {
  color: #ff0000;
  font-style: italic;
  font-size: 13px;
  margin-top: 4px;
}

.error .fileholder {
  background-color: #ff0000;
}

.error .fileholder span {
  color: white;
}

#message_sent {
  display: none;
}

#message_sent .check {
  width: 40px;
  height: 40px;
  background: url('../images/ok.png');
  background-size: cover;
  float: left;
  margin-right: 10px;
}

#message_sent .text {
  color: #00a651;
  line-height: 20px;
}

/* Contact page */
.contact .slide.default {
  background: #fff url("../images/contact/slider-image.jpg?") center top no-repeat;
  background-size: cover;
}

.contact-info {
  background-color: #eae9e9;
  padding: 28px 0;
}

.contact-info:after {
  content: " ";
  display: table;
  clear: both;
}

.contact-info .container .right,
.contact-info .container .left {
  width: 600px;
  height: 320px;
  background-color: #fff;
}

.contact-info .container:after {
  content: " ";
  display: table;
  clear: both;
}

.contact-info .container .right {
  float: right;
}

.contact-info .container .left {
  float: left;
  position: relative;
  padding: 18px 15px 0;
}

.contact-info .container .right h2 {
  color: #e60000;
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  padding-top: 70px;
}

.contact-info .container .right h3 {
  font-size: 20px;
  color: #58585a;
  text-align: center;
  font-weight: 300;
  padding-bottom: 20px;
}

.contact-info .container .right p {
  font-size: 20px;
  line-height: 25px;
  color: #58585a;
  text-align: center;
  font-weight: 300;
}

.contact-info .container .right p span {
  font-weight: 700;
}

/* Blog */
.blog-navigation {
  background-color: #e60000;
  height: 104px;
}

.blog-navigation nav {
  position: relative;
}

.blog-navigation nav li {
  display: inline-block;
  height: 104px;
  line-height: 104px;
  margin: 0 11px;
}

.blog-navigation nav li:first-of-type {
  margin-left: 0;
}

.blog-navigation nav li a {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}

.blog-navigation nav li a.active {
  font-weight: 700;
}

.blog-navigation nav .search {
  position: absolute;
  right: 0;
  top: 40px;
}

.blog-navigation nav .search input {
  border: 0;
  background: transparent;
  color: #fff;
  float: left;
  border-bottom: 2px solid #fff;
}

.blog-navigation nav .search button {
  margin: 0 0 0 10px;
  width: 21px;
  height: 22px;
  float: left;
  background: url('../images/blog/icon-search.png') 0 0 no-repeat;
  background-size: cover;
}

.blog .container {
  max-width: 1170px;
}

.blog .latest {
  background-color: #eae9e9;
}

.blog .latest .container {
  padding: 60px 0 0;
}

.blog .latest .container .wrapper:after {
  content: " ";
  display: table;
  clear: both;
}

.blog .latest .container .wrapper {
  margin: 0 -15px;
}

.blog .latest .box {
  width: 370px;
  float: left;
  margin: 0 15px;
  position: relative;
}

.blog .latest .box .top {
  height: 250px;
  background: url("../images/blog/filler-image.jpg") center bottom no-repeat;
  background-size: cover;
  position: relative;
}

.blog .latest .box .category {
  background-color: #e60000;
  min-height: 30px;
  display: table;
  width: 100%;
}

.blog .latest .box .category p {
  text-align: center;
  color: #fff;
  display: table-cell;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 300;
}

.blog .latest .box .top .title {
  min-height: 80px;
  display: table;
  width: 100%;
  background-color: rgba(88, 88, 90, 0.8);
  position: absolute;
  left: 0;
  bottom: 0;
}

.blog .latest .box .top .title p {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.blog .latest .box .bottom {
  padding-top: 15px;
}

.blog .latest .box .bottom p {
  font-size: 16px;
  line-height: 20px;
  color: #58585a;
  font-size: 300;
}

.blog .posts {
  background-color: #eae9e9;
  padding: 50px 0 90px;
}

.blog .posts .left {
  width: 770px;
  float: left;
  position: relative;
}

.blog .posts .left.fullwidth {
  width: 100% !important;
}

.blog .posts .left.fullwidth .post-img {
  height: 350px;
}

.blog .posts .right {
  width: 370px;
  float: right;
  top: 0;
  position: relative;
}

.blog .posts .container:after {
  content: " ";
  display: table;
  clear: both;
}

.blog .posts .left .post-img {
  height: 250px;
}

.blog .posts .left .post:nth-of-type(1) .post-img {
  background: url("../images/blog/blogpost-header-1.png") center bottom no-repeat;
  background-size: cover;
  background-position: center center !important;
}

.blog .posts .left .post:nth-of-type(2) .post-img {
  background: url("../images/blog/blogpost-header-2.png") center bottom no-repeat;
  background-size: cover;
  background-position: center center !important;
}

.blog .posts .left .post {
  margin-top: 30px;
}

.blog .posts .left .post:first-of-type {
  margin-top: 0;
}

.blog .posts .left .post .post-content {
  background-color: #fff;
  padding: 20px 30px 28px;
}

.blog .posts .left .post .post-content h2 {
  font-weight: 700;
  font-size: 35px;
  color: #58585a;
  padding-bottom: 20px;
}

.blog .posts .left .post .post-content .date {
  color: #e60000;
  font-size: 16px;
  font-weight: 300;
  padding-bottom: 20px;
}

.blog .posts .left .post .post-content .preview {
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  color: #58585a;
  padding-bottom: 20px;
}

.blog .posts .left .post .post-content .read-more {
  color: #e60000;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.blog .posts .left .show-more {
  display: block;
  width: 370px;
  height: 96px;
  border: 2px solid #d4d4d4;
  margin: 30px auto 0;
  font-size: 18px;
  font-weight: 700;
  color: #838383;
  text-transform: uppercase;
}

.blog .posts .right .box {
  padding: 25px 15px 15px;
  background-color: #fff;
  margin-bottom: 2px;
}

.blog .posts .right .box h3 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 300;
  padding-bottom: 10px;
  text-align: center;
  color: #58585a;
}

.blog .posts .right .box p {
  color: #58585a;
}

.blog .posts .right .box .featured-img {
  height: 250px;
  background-color: #d5d5d5;
}

.blog .posts .right .box .sub-title {
  font-size: 18px;
  font-weight: 700;
  padding-top: 10px;
  color: #58585a;
}

.blog .posts .right .box .source {
  font-size: 16px;
  font-weight: 300;
  text-align:  right;
  padding-top: 20px;
  color: #58585a;
}

.blog .posts .right .portfolio-signup {
  display: inline-block;
  width: 100%;
  height: 95px;
  line-height: 95px;
  text-align: center;
  color: #fff;
  background-color: #e60000;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  margin-top: 25px;
}

.blog .posts .right .social:after {
  display: table;
  content: " ";
  clear: both;
}

.blog .posts .right .social h3 {
  font-size: 35px;
  font-weight: 700;
  color: #58585a;
  text-align: center;
  padding: 55px 0 35px;
}

/*
.blog .posts .right .social .block.fb {
  background: url("../images/blog/icon-fb.png") right 15px center no-repeat;
  background-size: 50px;
  padding-right: 80px;
  text-align: right;
}

.blog .posts .right .social .block.linkedin {
  background: url("../images/blog/icon-linkdin.png") right 15px center no-repeat;
  background-size: 50px;
  padding-right: 80px;
  text-align: right;
}

.blog .posts .right .social .block.yt {
  background: url("../images/blog/icon-yt.png") left 15px center no-repeat;
  background-size: 50px;
  padding-left: 80px;
}

.blog .posts .right .social .block.rss {
  background: url("../images/blog/icon-rss.png") left 15px center no-repeat;
  background-size: 50px;
  padding-left: 80px;
}

*/
.blog .posts .right .social .wrap {
  text-align: center;
}

.blog .posts .right .social .wrap a {
  display: inline-block;
  width: 45px;
  height: 45px;
  margin: 0 5px;
}

.blog .posts .right .social .wrap a.fb {
  background: url("../images/blog/icon-fb.png") center no-repeat;
  background-size: contain;
}

.blog .posts .right .social .wrap a.yt {
  background: url("../images/blog/icon-yt.png") center no-repeat;
  background-size: contain;
}

.blog .posts .right .social .wrap a.linkedin {
  background: url("../images/blog/icon-linkedin.png") center no-repeat;
  background-size: contain;
}

.blog .posts .right .social .wrap a.instagram {
  background: url("../images/blog/icon-instagram.png") center no-repeat;
  background-size: contain;
}

.blog .posts .right .social .wrap a.rss {
  background: url("../images/blog/icon-rss.png") center no-repeat;
  background-size: contain;
}

/* Blog view */
.blog.view .posts {
  padding-top: 60px;
}

.blog.view .posts .left .post .post-content p:not(.date) {
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  color: #58585a;
  padding-bottom: 20px;
}

.blog.view .posts .left .post .post-content p:last-of-type {
  padding-bottom: 0;
}

.blog.view .posts .left .related-posts {
  padding: 55px 0 90px;
}

.blog.view .posts .left .related-posts h2 {
  font-weight: 700;
  font-size: 35px;
  color: #58585a;
}

.blog.view .posts .left .related-posts .box {
  height: 250px;
  margin-top: 30px;
}

.blog.view .posts .left .related-posts .box .post-img {
  height: 250px;
  width: 250px;
  background: url("../images/blog/filler-image.jpg") center top no-repeat;
  background-size: cover;
  float: left;
}

.blog.view .posts .left .related-posts .box .text {
  width: auto;
  height: 250px;
  overflow: hidden;
  padding: 30px;
  background-color: #fff;
}

.blog.view .posts .left .related-posts:after {
  content: " ";
  display: table;
  clear: both;
}

.blog.view .posts .left .related-posts .box .text .title {
  font-weight: 700;
  padding-bottom: 20px;
  color: #58585a;
  font-size: 18px;
}

.blog.view .posts .left .related-posts .box .text .preview {
  padding-bottom: 20px;
  font-weight: 300;
  color: #58585a;
  font-size: 16px;
}

.blog.view .posts .left .related-posts .box .text > a {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  color: #e60000;
}

/* About page */
main.about:after {
  content: " ";
  display: table;
  clear: both;
}

main.about .slider {
  height: auto;
  background-color: #fff;
  /*overflow: visible;*/
}

main.about .slider .wrapper {
  height: auto;
  padding-top: 68.65%;
  position: relative;
}

main.about .slider .slide {
  position: absolute;
  top: 0;
  overflow: auto;
}

main.about .slider .slide:before {
  display: none;
}

.about .slider .slide.default {
  background: #fff url("../images/about/about-header-new.jpg") center top no-repeat;
  background-size: contain;
  overflow: hidden;
  border-top: 2px #ded7d7 solid;
}

.about .slider .slide.default .intro-text {
  width: 100%;
  text-align: center;
  margin: 505px auto 0;
  padding: 140px 0 50px;
  background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,0) 1%, rgba(236,235,235,1) 52%, rgba(234,233,233,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 1%,rgba(236,235,235,1) 52%,rgba(234,233,233,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 1%,rgba(236,235,235,1) 52%,rgba(234,233,233,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#eae9e9',GradientType=0 ); /* IE6-9 */
  position: absolute;
  bottom: 0;
}

.about .slider .slide.default .intro-text p {
  color: #000;
  font-weight: 300;
  font-size: 20px;
  max-width: 1000px;
  display: block;
  margin: 0 auto;
}

.about .slider .slide.default .intro-text p span {
  display: block;
  font-weight: 700;
}

.team {
  background-color: #eae9e9;
  padding: 0;
}

.team .container:after {
  content: " ";
  display: table;
  clear: both;
}

.team h1 {
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  color: #58585a;
  padding-bottom: 40px;
}

.team .wrapper {
  width: 771px;
  margin: 0 auto;
  text-align: center;
  overflow: visible;
}

.team .wrapper:after {
  content: " ";
  display: table;
  clear: both;
}

.team .wrapper:last-of-type {
  padding-bottom: 0;
}

.team .wrapper .box {
  width: 170px;
  height: 345px;
  height: 120px;
  float: left;
  margin: 0 15px;
  position: relative;
  overflow: visible;
}

.team .wrapper .box:first-child {
  margin-left: 0;
}

.team .wrapper .box:last-child {
  margin-right: 0;
}

.team .wrapper .box .profile-pic {
  height: 240px;
  cursor: pointer;
}

.team .wrapper .box.empty .profile-pic {
  display: none;
  cursor: default;
}

.team .wrapper .box .profile-pic.m {
  background: url("../images/about/filler-profile-1.jpg") center top no-repeat;
  background-size: cover;
}

.team .wrapper .box .profile-pic.f {
  background: url("../images/about/filler-profile-2.jpg") center top no-repeat;
  background-size: cover;
}

.team .wrapper .box .name {
  padding: 10px 5px 0;
  font-size: 20px;
  font-weight: 700;
  color: #58585a;
}

.team .wrapper .box .position {
  font-size: 16px;
  font-weight: 300;
  color: #58585a;
  padding: 3px 5px 0;
}

.team .wrapper .box .inner {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.team .wrapper .box .info {
  background-color: #fff;
  height: 345px;
  width: 570px;
  position: absolute;
  top: 0;
  z-index: 2;
  display: none;
  transition: 0.5s;
}

.team .wrapper .box.left .info {
  padding: 30px 60px 30px 30px;
  left: 0;
}

.team .wrapper .box.right .info {
  padding: 30px 30px 30px 60px;
  right: 0;
}

.team .wrapper .box .info p {
  font-size: 16px;
  color: #58585a;
  font-weight: 300;
  text-align: left;
}

.team .wrapper .box .info .exit {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 15px;
  background: url("../images/about/icon-x.png") center no-repeat;
  background-size: 20px;
}

.team .wrapper .box.left .info .exit {
  right: 15px;
}

.team .wrapper .box.right .info .exit {
  left: 15px;
}

.team .wrapper .box.active .info {
  display: block;
  z-index: 4;
}

.team .wrapper .box .info .placeholder {
  width: 170px;
  height: 300px;
}

.team .wrapper .box.left .info .placeholder {
  float: left;
}

.team .wrapper .box.right .info .placeholder {
  float: right;
}

.team .wrapper .box.active .inner {
  z-index: 5;
}

footer nav ul li {
  position: relative;
}

footer nav ul li #media-popup {
  width: 280px;
  padding: 10px 20px 10px 20px;
  background: #fff;
  border: 1px solid #dcdcdc;
  color: #332f2f;
  text-align: left;
  font-weight: 400;
  line-height: normal;
  position: absolute;
  content: " ";
  right: 15px;
  top: -81px;
  display: none;
}

footer nav ul li #media-popup:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 15px 0 15px;
  border-color: #ffffff transparent transparent transparent;
  line-height: 0px;
  _border-color: #ffffff #000000 #000000 #000000;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
  position: absolute;
  content: " ";
  bottom: -20px;
  right: 30px;
}

footer nav ul li #media-popup a {
  color: #332f2f;
  font-weight: 600;
}

/* Private blog */

header nav li.supersecret a {
  color: #e60000;
  font-weight: bold;
}

.login-button {
  float: right;
  background: #e60000;
  color: white;
  padding: 6px 18px;
  margin-left: 10px;
  margin-top: 34px;
  transition: all 0.22s;
}

.login-button:hover {
  background: #58585a;
}

.login-button-mobile {
  display: none;
}

.infinety-passinput {
  display: block;
  margin: 0 auto 10px;
  min-width: 260px;
  padding: 10px;
}

.infinety-button {
    background-color: #e60000;
    color: #fff;
    border: 1px solid #e60000;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    min-width: 260px;
    display: block;
    margin: 0 auto;
}

.input span.error.show {
    text-align: center;
    display: block;
    color: red;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 10px;
}

.passchangesuccess {
      width: 100%;
    background-color: #00d844;
    color: black;
    width: 260px;
    font-size: 14px;
    display: block;
    padding: 10px 20px;
    margin: 0 auto 30px;
    text-transform: uppercase;
    text-align: center;
}

/* Contact form 2020 */

.contact-form {
  background-color: #fff;
  width: 100%;
  margin-top: 35px;
  padding: 60px 20px;
}

.contact-form h2 {
  color: #e60000;
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 0px;
}

.contact-form p {
  font-size: 20px;
  color: #58585a;
  text-align: center;
  font-weight: 300;
  padding-bottom: 40px;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=number],
.contact-form input[type=tel]  {
  display: block;
  width: 100%;
  border: 1px solid #98989a;
  padding: 15px 15px;
  color: black;
  margin-top: 5px;
}

.contact-form form {
  max-width: 700px;
  margin: 0 auto;
  display: block;
}

.contact-form .input {
  margin-bottom: 30px;
  position: relative;
}

.contact-form .input.input-left {
  width: 48%;
  float: left;
}

.contact-form .input.input-right {
  width: 48%;
  float: right;
}

.contact-form label span {
  font-weight:bold;
  color: #e60000;
  margin-left: 5px;
}

.contact-form textarea {
  display: block;
  width: 100%;
  border: 1px solid #98989a;
  margin-top: 5px;
  padding: 15px 15px;
  outline: none;
}

.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=number]:focus,
.contact-form input[type=tel]:focus,
 .contact-form textarea:focus {
  border: 1px solid #000000;
  background-color: #fafafa;
  outline: none;
}

.contact-form input[type='submit'] {
  background-color: #e60000;
  color: white;
  text-transform: uppercase;
  padding: 20px 60px;
  font-size: 18px;
  transition: all 0.3s;
  border-radius: 5px;
  display: block;
  margin: 10px auto;
  width: 100%;
}

.contact-form input[type='submit']:hover {
  background-color: #0183bd;
}

.contact-form .input span.error.show {
  position: absolute;
  bottom: -25px;
}

.contact-form .input.has-error input[type=text],
.contact-form .input.has-error input[type=email],
.contact-form .input.has-error input[type=number],
.contact-form .input.has-error input[type=tel] {
  border-color: red;
}

.contact-form #message_sent {
  margin: 0 auto;
  width: 280px;
}

.contact-form #message_sent .text {
  line-height: 40px;
}

.contact-form .weblink-input select {
  border: 1px solid #98989a;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50px;
  padding-left: 10px;
  color: black;
  width: 75px;
}

.contact-form .weblink-input input[type=text] {
  padding-left: 85px;
}

.iti {
  width: 100%;
}

/* --- Fileuploader --- */
main .dropzone .dz-preview .dz-error-message {
  font-size: 10.7px;
  text-align: center;
}

main .dropzone .dz-preview.dz-file-preview.dz-error .dz-image {
  background: linear-gradient(to bottom, #be2626, #a92222);
}

#confirmUpload {
  background-color: #e60000;
  color: white;
  text-transform: uppercase;
  padding: 20px 60px;
  font-size: 18px;
  transition: all 0.3s;
  border-radius: 5px;
  margin: 30px auto;
  max-width: 300px;
  text-align: center;
  display: none;
  transition: all 0.25s;
}

#confirmUpload.success {
  background-color: #408140;
}

.filesTable {
  font-size: 17px;
  padding-top: 25px;
}

.filesTable th {
  background-color: #e60000;
  color: white;
  line-height: 32px;
}

table.dataTable.filesTable tbody th, table.dataTable tbody td {
  padding: 18px 8px 12px !important;
}

table.dataTable.filesTable tbody td {
  border-bottom: 1px solid #343434;
}

.filesTable span.icon {
  display: inline-block;
  width: 50px;
  height: 50px;
}
.filesTable span.icon.csv {
  background-image: url('/upload/fileshare/icons/csv.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.filesTable span.icon.doc {
  background-image: url('/upload/fileshare/icons/doc.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.filesTable span.icon.docx {
  background-image: url('/upload/fileshare/icons/docx.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.filesTable span.icon.gif {
  background-image: url('/upload/fileshare/icons/gif.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.filesTable span.icon.jpeg {
  background-image: url('/upload/fileshare/icons/jpeg.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.filesTable span.icon.jpg {
  background-image: url('/upload/fileshare/icons/jpg.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.filesTable span.icon.mp3 {
  background-image: url('/upload/fileshare/icons/mp3.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.filesTable span.icon.mp4 {
  background-image: url('/upload/fileshare/icons/mp4.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.filesTable span.icon.pdf {
  background-image: url('/upload/fileshare/icons/pdf.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.filesTable span.icon.png {
  background-image: url('/upload/fileshare/icons/png.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.filesTable span.icon.ppt {
  background-image: url('/upload/fileshare/icons/ppt.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.filesTable span.icon.pptx {
  background-image: url('/upload/fileshare/icons/pptx.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.filesTable span.icon.psd {
  background-image: url('/upload/fileshare/icons/psd.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.filesTable span.icon.svg {
  background-image: url('/upload/fileshare/icons/svg.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.filesTable span.icon.txt {
  background-image: url('/upload/fileshare/icons/txt.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.filesTable span.icon.xls {
  background-image: url('/upload/fileshare/icons/xls.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.filesTable span.icon.xlsx {
  background-image: url('/upload/fileshare/icons/xlsx.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.filesTable span.icon.zip {
  background-image: url('/upload/fileshare/icons/zip.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.filesTable span.filename {
  display: inline-block;
  line-height: 64px;
  position: relative;
  top: -18px;
  margin-left: 5px;
  margin-bottom: -32px;
}

main .dataTables_wrapper .dataTables_paginate .paginate_button.current, main .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background-color: #e60000 !important;
  background: #e60000 !important;
  color: white !important;
}

.filesTable .btns {
  text-align: center;
}
.filesTable .btn {
  color: white;
  text-transform: uppercase;
  padding: 12px 30px;
  font-size: 15px;
  transition: all 0.3s;
  border-radius: 5px;
  text-align: center;
  transition: all 0.25s;
  margin-left: 3px;
  margin-right: 3px;
}
.filesTable .centerme {
  text-align: center;
}
.filesTable .btn.btnDownload {
  background-color: #e60000;
}
.filesTable .btn.btnDownload:hover {
  background-color: #0075b8;
}
.filesTable .btn.btnDelete {
  background-color: #d81200;
  touch-action: none;
}
.filesTable .btn.btnDelete:hover {
  background-color: #b80000;
}

.filesTable a.fileDownload:hover span {
  text-decoration: underline;
}

@media screen and (max-width: 880px) {
  .filesTable span.icon {
    width: 16px;
    height: 18px;
  }
  .filesTable {
    font-size: 15px;
  }
  .filesTable span.filename {
    line-height: 16px;
    top: -4px;
    font-size: 13px;
    margin-left: 4px;
    margin-bottom: -32px;
  }
  table.dataTable.filesTable tbody th, table.dataTable tbody td {
    padding: 14px 6px 10px !important;
  }
  .filesTable .btn {
    padding: 10px 12px;
    font-size: 10px;
  }
  .hideOnMobile {
    display: none;
  }
  table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td.dtr-control:before, table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th.dtr-control:before {
    display: none !important;
  }
}


/* Media query */
@media screen and (min-width: 1400px) {
	.container_main {
    width: 97%;
    left: center;
    margin-left: 30px;
  }


  main .content .tiles .auto {
    height: 300px;
    width: auto;
    overflow: hidden;
    padding: 25px;
  }

  main .content .tiles .square.content-marketing:before {
    background: url("../images/index/tile-2.jpg") center left;
    background-size: 400px;
  }

  main .content .tiles .square.video-network:before {
    background: url("../images/index/tile-3.jpg") center no-repeat;
    background-size: 400px;
  }

  main .content .tiles .square.edm:before {
    background: url("../images/index/tile-6.jpg") center no-repeat;
    background-size: 400px;
  }

  main .content .tiles .auto.display-network:before {
    background: url("../images/index/tile-1.jpg") center right no-repeat;
    background-size: auto auto;
  }

  main .content .tiles .auto.mobile-network:before {
    background: url("../images/index/tile-4.jpg") center right no-repeat;
    background-size: auto auto;
  }

  main .content .tiles .auto.programmatic:before {
    background: url("../images/index/tile-5.jpg") center no-repeat;
    background-size: auto auto;
  }

  main .content .tiles .square {
    width: 400px;
    height: 300px;
  }

}

@media screen and (max-width: 1367px) {
  .container_main {
    max-width: 1230px;
  }

}

@media screen and (max-width: 1280px) {
  .gridtype-1 .container .grid .line > div {
    /*width: 550px;*/
    float: left;
    width: 50%;
  }


  .container_main {
    max-width: 1230px;
  }

  .gridtype-1 .container .grid .line > div:nth-of-type(odd) {
    padding-right: 15px;
  }

  .gridtype-1 .container .grid .line > div:nth-of-type(even) {
    padding-left: 15px;
  }

  .gridtype-1 .container .grid .line > div h3 {
    font-size: 16px;
  }

  .column-2 .container .right,
  .column-2 .container .left {
    /*
    float: none;
    margin: 0 auto;
    */
  }

  .column-2 .container .line > div .title-box {
    /*
    width: 100%;
    position: static;
    top: auto;
    */
  }

  .column-2 .container .line > div {
    width: 50%;
  }

  .column-2 .container .line:nth-of-type(even) > div {
    float: left;
  }

  .column-2 .container .line > div p {
    padding-left: 20px;
    padding-right: 20px;
  }

  .column-2 .container .line {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-info {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-info .container > div:first-of-type {
    margin-top: 0 !important;
  }

  .contact-info .container {
    width: 1022px;
  }

  .contact-info .container .right,
  .contact-info .container .left {
    float: right;
    width: 500px;
  }

  .contact-info .container .right {
    margin-left: 20px;
  }

  .gridtype-1 .container .grid .line {
    padding-left: 20px;
    padding-right: 20px;
  }

}

@media screen and (max-width: 1225px) {
  .blog .latest .container {
    width: 100%;
  }


  .container_main {
    max-width: 1230px;
  }

  .blog .latest .container .wrapper {
    width: 800px;
    margin: 0 auto;
  }

  .blog .blog-navigation .container {
    padding-left: 20px;
  }

  .blog .latest .box {
    margin-bottom: 30px;
  }

  .blog .posts .right,
  .blog .posts .left {
    float: none;
    margin: 0 auto;
  }

  .blog .posts .left .show-more {
    margin-bottom: 30px;
  }

  .blog .posts .right .box {
    margin-bottom: 20px;
  }

}

@media screen and (max-width: 1145px) {
  /*
  .gridtype-1 .container .grid .line > div:nth-of-type(odd),
  .gridtype-1 .container .grid .line > div:nth-of-type(even) {
    float: none;
  }

  .gridtype-1 .container .grid .line {
    padding-bottom: 0;
  }

  .gridtype-1 .container .grid .line > div {
    padding-bottom: 50px;
    margin: 0 auto;
  }

  */
  .container_main {
    max-width: 1230px;
  }

  .gridtype-3 .container .grid {
    width: 100%;
  }

  .about .slider .slide.default .intro-text p {
    padding-left: 20px;
    padding-right: 20px;
  }

}

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

  .job_application {
    padding: 50px 40px 60px 40px;
  }

  .job_application .col1, .job_application .col2 {
    width: 100%;
    margin: 0 0 10px;
  }

  .column-2 .container .line > div {
    width: 600px;
    float: none;
    margin: 0 auto;
  }

  .column-2 .container .line > div .title-box {
    width: 100%;
    top: auto;
    position: static;
  }

  .column-2 .container .line > div p {
    padding: 20px 0;
  }

  .column-2 .container .line:nth-of-type(even) > div {
    float: none;
  }

  .column-2 .container .line {
    padding-bottom: 25px;
  }

  .container_main {
    max-width: 1230px;
  }

  header {
    height: auto;
  }

  header nav {
    display: none;
    float: none;
    width: 100%;
  }

  header .container .homepage-link {
    height: 110px;
    float: none;
    margin: 0 auto;
  }

  header nav li {
    display: block;
    width: 100%;
    text-align: center;
    height: auto;
    padding: 0;
  }

  header nav li a,
  header nav li p {
    display: block;
    text-align: center;
    height: 50px;
    line-height: 50px;
  }

  header nav li ul li {
    padding: 0;
  }

  header nav li:hover > ul {
    display: none;
  }

  header .burger {
    display: block;
  }

  header nav li > ul {
    position: relative;
    left: auto;
    bottom: auto;
    transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    /*display: block;*/
  }


  header nav li.parent:first-of-type {
    position: static;
    left: auto;
  }

  header nav > ul {
    float: none;
  }

  header nav.language ul {
    padding: 0;
    text-align: center;
  }

  header nav.language ul li {
    display: inline-block;
    width: auto;
  }

  footer nav li {
    display: block;
    line-height: 22px;
    height: auto;
    padding-bottom: 5px;
  }

  footer nav li.logo {
    width: 100%;
    padding-top: 5px;
  }

  footer nav li.logo a {
    top: 0px;
  }

  footer nav li.footer-social {
    width: 100%;
    padding: 10px 0 20px;
    text-align: center;
  }

  .contact-info .container {
    width: 822px;
  }

  .contact-info .container .right,
  .contact-info .container .left {
    width: 400px;
    height: 250px;
  }

  .bottom-slider .wrapper {
    height: 200px;
    width: 600px;
    margin: 0 auto;
  }

  .login-button {
    display: none;
  }

  .login-button-mobile {
    display: block;
  }

  .login-button-mobile a {
    color: #e60000 !important;
  }

}

@media screen and (max-width: 1000px) {
  .gridtype-1 .container .grid .line > div:nth-of-type(odd),
  .gridtype-1 .container .grid .line > div:nth-of-type(even) {
    float: none;
  }

  .container_main {
    max-width: 1230px;
  }

  .gridtype-1 .container .grid .line {
    padding-bottom: 0;
  }

  .gridtype-1 .container .grid .line > div {
    padding-bottom: 50px;
    margin: 0 auto;
    width: 550px;
  }

  .gridtype-1 .container .grid .line > div:nth-of-type(odd) {
    padding-right: 0;
  }

  .gridtype-1 .container .grid .line > div:nth-of-type(even) {
    padding-left: 0;
  }

  .column-2 {
    padding-top: 40px;
  }

}

@media screen and (max-width: 900px) {
  .job_application .form {
    padding: 40px 50px 70px;
  }

  .blog-navigation nav .search {
    position: static;
    right: auto;
    top: auto;
    text-align: center;
    height: 22px;
  }

  .blog-navigation nav .search input {
    float: none;
  }

  .blog-navigation nav .search button {
    float: none;
  }

  .blog-navigation {
    height: auto;
    padding: 10px 0;
  }

  .blog .blog-navigation .container {
    padding-left: 0;
  }

  .blog-navigation nav li {
    display: block;
    height: auto;
    line-height: normal;
    margin: 10px 0;
    text-align: center;
  }

  footer nav ul li #media-popup {
    right: 50%;
    margin-right: -140px;
    top: -70px;
  }

  footer nav ul li #media-popup:after {
    right: 125px;
  }

  .contact-info .container {
    width: 100%;
  }

  .contact-info .container .right,
  .contact-info .container .left {
    float: none;
    width: auto;
    max-width: 600px;
    height: auto;
    padding-bottom: 10px;
    margin: 0 auto 20px;
  }

  .contact-info .container .left {
    margin-bottom: 0;
  }

  .blog .posts .left.fullwidth .post-img {
    height: 330px;
  }

}

@media screen and (max-width: 840px) {
  .career_list .job {
    width: 44%;
    margin: 20px 3.0%;
  }

  .career_list .job h3 {
    font-size: 18px;
  }

  .gridtype-2 .grid {
    width: 100%;
  }

  .gridtype-2 h2 {
    font-size: 40px;
  }

  .bottom-slider .wrapper {
    height: 300px;
    width: 525px;
  }

  main .slider .slide h1 {
    font-size: 35px;
    padding: 18px 25px;
  }

  .blog .latest .container .wrapper {
    width: 100%;
    margin: 0;
  }

  .blog .latest .box {
    float: none;
    margin: 0 auto 30px;
  }

  .blog .posts .left {
    width: 90%;
  }

  .blog .posts .left .post .post-content h2 {
    font-size: 25px;
  }

  .blog.view .posts .left .related-posts .box {
    height: auto;
  }

  .blog.view .posts .left .related-posts .box .post-img {
    float: none;
    width: 100%;
  }

  .blog.view .posts .left .related-posts .box .text {
    height: auto;
  }

  .blog.view .posts .left .related-posts h2 {
    font-size: 25px;
  }

  /* Team page */
  .team .wrapper {
    width: 400px;
  }

  .team .wrapper .box {
    margin: 0 15px !important;
  }

  .team .wrapper .box.left .info {
    padding-right: 45px;
  }

  .team .wrapper .box.right .info {
    padding-left: 45px;
  }

  .team .wrapper .box .info {
    height: auto;
    width: 370px;
  }

  main.about .slider .wrapper {
    padding-top: 94.65%;
  }

}

@media screen and (max-width: 745px) {
  main .content .tiles .auto:not(.programmatic) .border > div {
    height: 110px;
    max-width: 200px;
    line-height: 40px;
    padding-top: 15px;
  }

  main .content .tiles .auto.programmatic .border > div {
    width: 200px;
    font-size: 25px;
  }

  .gridtype-3 .container .grid .cell {
    float: none;
    width: 75%;
    margin: 0 auto 30px;
  }

  .gridtype-3 .container h2 {
    font-size: 40px;
  }

  main.about .slider .wrapper {
    padding-top: 105.65%;
  }

  .blog .posts .left .post-img {
    height: 230px;
  }

}

@media screen and (max-width: 660px) {
  .job_application .form {
    padding: 30px 15px 30px;
  }

  .contact-info .container .left,
  .contact-info .container .right {
    width: 100%;
  }

  main.about .slider .wrapper {
    padding-top: 125.65%;
  }

}

@media screen and (max-width: 640px) {
  main .content .tiles .auto {
    width: 300px;
  }

  main .content .tiles .square.right,
  main .content .tiles .square.left,
  main .content .tiles .auto {
    margin: 0 auto 30px;
  }

  main .content .tiles .square.right,
  main .content .tiles .square.left {
    float: none;
  }

  .column-2 .container .line > div {
    width: 100%;
    margin: 0;
    padding: 0 20px;
  }

  .column-2 .container .line > div .title-box {
    height: auto;
    min-height: 100px;
  }

  .column-2 .container .line > div .title-box h3 {
    font-size: 26px;
    padding: 0 20px;
  }

  .gridtype-3 .container h2 {
    font-size: 25px;
  }

}

@media screen and (max-width: 570px) {
  .gridtype-1 .container .grid .line > div {
    width: 100%;
    padding-top: 190px;
    padding-bottom: 0;
  }

  .gridtype-1 .container .grid .line > div:after {
    content: " ";
    display: table;
    clear: both;
  }

  .gridtype-1 .container .grid .line > div h3 {
    text-align: center;
    display: table;
    width: 100%;
    vertical-align: middle;
    height: auto;
    padding-left: 0;
  }

  .gridtype-1 .container .grid .line > div h3 span {
    padding: 10px 20px;
    display: block;
    line-height: normal;
  }

  .gridtype-1 .container .grid .line > div .icon {
    /*
    position: relative;
    top: auto;
    left: auto;
    background-position: center bottom !important;
    float: left;
    */
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }

  .gridtype-1 .container .grid .line > div .icon:after {
    content: " ";
    display: table;
    clear: both;
  }


  .gridtype-1 .container .grid .line > div p {
    padding: 12px 20px 0px;
  }

  .gridtype-3 .container .grid .cell {
    width: 100%;
  }

  .gridtype-3 .container .grid .cell .right .inner p {
    font-size: 16px;
  }

  .gridtype-3 .container .btn-more {
    width: 100%;
  }

}

@media screen and (max-width: 525px) {
  .gridtype-1 .container .grid .line:last-of-type {
    padding-bottom: 15px;
  }

  .bottom-slider .wrapper {
    height: 350px;
    width: 350px;
  }

  .gridtype-1 .container .top-text p {
    padding: 0 20px 0 !important;
  }


  .gridtype-1 .container .top-text {
    padding: 0 20px 0 !important;
  }

  .bottom-slider h2 {
    font-size: 40px;
    padding: 0 20px 25px;
  }

  .contact-info .container .right h2 {
    font-size: 25px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .contact-info .container .right h3,
  .contact-info .container .right p {
    font-size: 16px;
    padding-right: 20px;
    padding-left: 20px;
  }

  main.about .slider .wrapper {
    padding-top: 0 !important;
  }

  .about .slider .slide.default {
    overflow: visible;
    position: static;
    padding-top: 50.65%;
  }

  .about .slider .slide.default .intro-text {
    padding-top: 40px;
    margin-top: 0;
    position: static;
  }

  .about .slider .slide.default .intro-text p {
    font-size: 17px;
  }

  main .slider .slide h1 {
    font-size: 25px;
  }

  .career_list {
    margin-top: 0px;
  }

  .arrowdown {
    margin-top: 30px;
  }

}

@media screen and (max-width: 490px) {
	.contact-form h2 {
    font-size: 30px;
  }
}

@media screen and (max-width: 460px) {
  .job_description {
    padding: 90px 30px;
  }
  .job_application {
    padding: 50px 20px 60px 20px;
  }
  #message_sent .text {
    font-size: 13px;
  }
  .career_list .job {
    width: 100% !important;
    margin: 15px auto !important;
    height: 130px !important;
  }
  .job_application .form .group {
    margin-bottom: 30px;
    font-size: 14px;
  }

}

@media screen and (max-width: 430px) {
	.contact-form h2 {
    font-size: 25px;
  }
}

@media screen and (max-width: 425px) {
  .gridtype-1 .container .top-text {
    padding: 0 20px 0 !important;
  }

  .gridtype-1 .container .top-text p {
    padding: 0 20px 0 !important;
  }


  .gridtype-2 .grid > div {
    width: 300px;
    height: 330px;
  }

  .gridtype-1 .container .grid .line:last-of-type {
    padding-bottom: 15px;
  }

  .blog .latest .box {
    width: 90%;
  }

  .blog .latest .box .top .title p {
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog .posts .left .show-more {
    width: 100%;
  }

  .blog .posts .right {
    width: 90%;
  }

  .blog .posts .right .portfolio-signup {
    padding: 0 20px;
  }

  main.about .slider .wrapper {
    padding-top: 160%;
  }

  .team .wrapper {
    width: 100%;
  }

  .team .wrapper .box {
    float: none;
    margin: 0 auto 90px !important;
    width: 300px;
  }

  .team .wrapper .box .info {
    width: 100%;
    padding: 450px 20px 30px 20px;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.3);
    -moz-box-shadow:    0px 2px 5px 0px rgba(50, 50, 50, 0.3);
    box-shadow:         0px 2px 5px 0px rgba(50, 50, 50, 0.3);
  }

  .team .wrapper .box .info .placeholder {
    display: none;
  }

  .team .wrapper .box .profile-pic {
    height: 340px;
  }

  .team .wrapper .box .info .exit {
    display: block;
    position: absolute;
    top: 420px;
    right: 20px;
  }

}

@media screen and (max-width: 365px) {
  .optinbox {
    width: 280px;
    top: 35px;
    left: -245px;
    z-index: 15;
  }

  .optinbox input[type=checkbox].css-checkbox + label.css-label {
    font-size: 13px;
  }

  .blog .posts .right .social .block.fb {
    background: url("../images/blog/icon-fb.png") right 5px center no-repeat;
    background-size: 50px;
    padding-right: 70px;
  }

  .blog .posts .right .social .block.yt {
    background: url("../images/blog/icon-yt.png") left 5px center no-repeat;
    background-size: 50px;
    padding-left: 70px;
  }

  .blog .posts .right .social .block.linkedin {
    background: url("../images/blog/icon-linkdin.png") right 5px center no-repeat;
    background-size: 50px;
    padding-right: 70px;
  }

  .blog .posts .right .social .block.rss {
    background: url("../images/blog/icon-rss.png") left 5px center no-repeat;
    background-size: 50px;
    padding-left: 70px;
  }

  .blog .posts .right .social .block {
    margin-bottom: 10px;
  }

  .column-2 .container .line > div .title-box h3 {
    font-size: 17px;
  }

  main.about .slider .wrapper {
    padding-top: 195%;
  }

  .contact-form h2 {
    font-size: 20px;
  }
  
  .contact-form p {
    font-size: 16px;
  }

  .contact-form p.intro {
    font-size: 16px;
  }

  .contact-form input[type=text], .contact-form input[type=email] {
    padding: 10px 10px;
    font-size:14px;
  }

}

@media screen and (max-width: 350px) {
  .bottom-slider .wrapper {
    height: 820px;
    width: 170px;
  }

  .gridtype-2 .grid > div {
    width: 270px;
    height: 300px;
  }

  .gridtype-3 .container .btn-more {
    font-size: 14px;
    height: 50px;
    line-height: 50px;
  }

  .blog .posts .right .social .wrap {
    width: 210px;
    margin: 0 auto;
  }

  .blog .posts .right .social .wrap a {
    margin: 5px;
  }

}
.opened-prodplan {
  display: inline-block;
  line-height: 110px;
  margin-left: 30px;
  color: #fff;
}

.dataTables_wrapper.no-footer {
  zoom: 0.9 !important;
}