/*-----------------------------
COLOURS

  Orange * #FE5000
  Pink #FF0B64
  Black #212721
  Greys: #75787B - Light #F7F7F7 - lines #D1D1D1

-----REMOVE---------------------------*/

a.comingsoon{
 cursor: default;
 font-style: italic;
 opacity: 0.33;
}

/*------------------------------
BASE STYLES
------------------------------*/

*, *:before, *:after{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.error{color:#FF0B64;padding:10px;font-size:12px;}
.emptyField{border:1px solid #FF0B64 !important;}
#book-submit{margin-top:15px;}
html,body{
  height: 100%;
  min-width: 320px;
}

body{
  font-family: 'F37 Ginger', sans-serif;
  font-size: 18px;
  font-weight: 300;
  background-color: #fff;
  color: #212721;
  -webkit-font-smoothing: antialiased;
  -mos-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
body.noScroll{overflow:hidden;}
 img{max-width:100%;}

 .animated {
   animation-duration: 1s;
   animation-fill-mode: both;
 }
 @keyframes fadeIn {
   from {
     opacity: 0;
   }

   to {
     opacity: 1;
   }
 }

 .fadeIn {
   animation-name: fadeIn;
 }



 /*------------------------------
 WOW
 ------------------------------*/

.wow {visibility: hidden;}

/*------------------------------
LOADER
------------------------------*/

#loader{
    display:block;
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9999999;
    background: #FFFFFF;
    text-align: middle;
    vertical-align: middle;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transform: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
/**#loader .loader-overlay{
    display:block;
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9999999;
    background-image:url('../img/overlay.png');
    background-position: top left;
    background-repeat: repeat;
    pointer-events: none;
}*/
#loader .middle{
  text-align: middle;
  vertical-align: middle;
  top:calc(50% - 30px);
  left:calc(50% - 30px);
  display: block;
  width: 100%;
  max-width: 90px;
  height:18px;
  margin: 0 auto;
  position:absolute;
}

#loader .loading{
  display: block;
  width: 100%;
  max-width: 60px;
  height: 18px;
  margin: 0 auto;
}

#loader.loaded{
  opacity: 0;
  visibility: hidden;
}

#load-in{
  opacity: 0;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
}

#load-in.loaded{
  opacity: 1;
}

.nonclickable,
.nonclickable > a{
  cursor: default;
}
.looping-rhombuses-spinner, .looping-rhombuses-spinner * {
  box-sizing: border-box;
}

.looping-rhombuses-spinner {
  width: calc(15px * 4);
  height: 15px;
  position: relative;
}

.looping-rhombuses-spinner .rhombus {
  height: 15px;
  width: 15px;
  background-color: #FE5000;
  left: calc(15px * 4);
  position: absolute;
  margin: 0 auto;
  border-radius: 2px;
  transform: translateY(0) rotate(45deg) scale(0);
  animation: looping-rhombuses-spinner-animation 2500ms linear infinite;
}

.looping-rhombuses-spinner .rhombus:nth-child(1) {
  animation-delay: calc(2500ms * 1 / -1.5);
}

.looping-rhombuses-spinner .rhombus:nth-child(2) {
  animation-delay: calc(2500ms * 2 / -1.5);
}

.looping-rhombuses-spinner .rhombus:nth-child(3) {
  animation-delay: calc(2500ms * 3 / -1.5);
}

@keyframes looping-rhombuses-spinner-animation {
  0% {
    transform: translateX(0) rotate(45deg) scale(0);
  }
  50% {
    transform: translateX(-233%) rotate(45deg) scale(1);
  }
  100% {
    transform: translateX(-466%) rotate(45deg) scale(0);
  }
}



.wrapper{
    position: relative;
    width: 100%;
    max-width:100%;
    min-height: 100%;
    overflow: hidden;
}

header,
section,
footer{
  min-width: 320px;
  position: relative;
  clear: both;
}

header{z-index:500;height:150px;width:100%;position:fixed;top:0;left:0;overflow:visible;}

header,
header > .header-upper,
#main-navigation,
#main-navigation > ul.nav{
    -webkit-transition: all 0.5s ease;
       -moz-transition: all 0.5s ease;
         -o-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
            transition: all 0.5s ease;

}

header{background-color:#FFFFFF;height:195px;}

header > .header-upper{
  background-color: ;
  text-align: right;
  font-size: 0;
  padding: 0;
  overflow:hidden;
   height:45px;
  line-height:45px;
  background-color: #212721;
  /*
  background: rgba(255,11,100,1);
  background: -webkit-linear-gradient(left, rgba(255,11,100,1), rgba(254,80,0, 1)); /* For Safari 5.1 to 6.0 */
  /*background: -o-linear-gradient(right, rgba(255,11,100,1), rgba(254,80,0, 1)); /* For Opera 11.1 to 12.0 */
  /*background: -moz-linear-gradient(right, rgba(255,11,100,1), rgba(254,80,0, 1)); /* For Firefox 3.6 to 15 */
  /*background: linear-gradient(to right, rgba(255,11,100,1), rgba(254,80,0, 1)); /* Standard syntax */
}
header > .header-upper li:first-child .button a{
    background-color:#212721;
    border-color:#212721;
    min-width:80px;
}
header > .header-upper li:first-child .button a:hover{
    background-color:#FF0B64;
    border-color:#FF0B64;
}
header > .header-upper .button a{
  color: rgba(255,255,255,1);
    margin:0;
    border-radius:0;
    line-height:45px;
    height:45px;
    padding:0 35px 0 35px;
    font-size:16px;
}

header > .header-upper .button a:hover{
  color: rgba(255,255,255,0.5);
}

.content-container{width:100%;max-width:1245px;margin:auto;}
.content-container.wide{max-width:1400px;}

header .content-container {height:100%;padding:0 2% 0 2%;}
main{
    position:relative;
    z-index:1;
    -webkit-transition: all 0.5s ease;
   -moz-transition: all 0.5s ease;
     -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
        transition: all 0.5s ease;
}
.no-header main{padding-top:50px;}

#main-navigation {width:100%;height:150px;margin:0 auto 0 auto;z-index:501;}
#main-navigation a{font-family: 'F37 Ginger', sans-serif;color:#212721;}

#main-navigation > ul.nav{
  display: block;
  position: relative;
  list-style: none;
  font-size: 0;
  margin: 80px 0 20px 0;
  padding: 0;
  z-index:501;
  float:right;
  max-width:800px;
}
#main-navigation > ul.nav > li{
  display: inline-block;
  position: relative;
  font-size: 18px;
  font-weight:normal;
  vertical-align: top;
  text-align: center;
  height: 130px;
  letter-spacing:0.5px;
  padding: 0 16px 0 16px;
}
#main-navigation > ul.nav > li.menu-item-has-children{padding: 0 20px 0 10px;}
#main-navigation > ul.nav > li.menu-item-has-children:after{
    content:'';
    background-image:url('../img/svgs/arrow-nav-down.svg');
    background-position:center center;
    background-repeat: no-repeat;
    background-size:contain;
    position:absolute;
    left:0px;
    top: 23px;
    width:8px;
    height:8px;
    -webkit-transition: all 0.5s ease;
   -moz-transition: all 0.5s ease;
     -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
        transition: all 0.5s ease;
}
.scrolled #main-navigation > ul.nav > li.menu-item-has-children:after{top: 43px;}
#main-navigation > ul.nav > li.menu-item-has-children:hover:after{background-image:url('../img/svgs/arrow-nav-down-orange.svg');}

#main-navigation > ul.nav > li:hover a{color:#FE5000;}
#main-navigation > ul.nav > li:hover > ul > li a{color:#FFFFFF;}
#main-navigation > ul.nav > li > a{
  display: block;
  margin: 0;
  padding: 0;
  height: 50px;
  line-height: 50px;
  white-space: nowrap;
  font-size: 18px;
  text-align: center;
  color: #212721;
}

/*- DROPDOWN -*/

#main-navigation ul.nav > li > ul{
	list-style: none;
	position: absolute;
	margin: 0;
	padding: 0;
	top: 50px;
	left:3px;
	text-align: left;
    min-width:160px;
    background-color:rgba(0,0,0,0.8);
    border-left:3px solid #FE5000;
    opacity:0;
    display:none;
    -webkit-transition: all 0.5s ease;
   -moz-transition: all 1s ease;
     -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
        transition: all 1s ease;
}
.scrolled #main-navigation ul.nav > li > ul{top: 90px;}

#main-navigation ul.nav > li > ul > li{
	position: relative;
    height:40px;
}

#main-navigation ul.nav > li > ul > li > a{
	display: block;
	padding: 0 15px;
	line-height: 40px;
	color: #fff;
	white-space: nowrap;
    font-size:12px;
    text-align:left;
    z-index:2;
    position:relative;
}
#main-navigation ul.nav > li > ul > li::after{
    content:'';width:0px;height: 40px;
    position:absolute;top:0;left:-1px;
    z-index:1;
    background: #FE5000;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #FE5000, #FF0B64);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #FE5000, #FF0B64); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    -webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
       -o-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
          transition: all 0.5s ease;
}

#main-navigation ul.nav > li > ul > li.sfHover > a,
#main-navigation ul.nav > li > ul > li.sfHover > a:hover,
#main-navigation ul.nav > li > ul > li > a:hover{
	color: #FFFFFF;
}
#main-navigation ul.nav > li > ul > li:hover::after{width:calc(100% + 1px);}

/*- THIRD TIER DROPDOWN -*/

#main-navigation ul.nav > li > ul > li > ul{
	top: 0;
	left: 100%;
	list-style: none;
	position: absolute;
	margin: 0;
	padding: 0;
	text-align: left;
	background-color: #FE5000;
    border-bottom:3px solid #a7aaaf;
    display:none;
    opacity:0;
}

#main-navigation ul.nav > li > ul > li > ul > li{
	position: relative;
}

#main-navigation ul.nav > li > ul > li > ul > li > a{
	display: block;
	padding: 0 15px;
	line-height: 40px;
	color: #fff;
	white-space: nowrap;
}

#main-navigation ul.nav > li > ul > li > ul > li > a:hover{
	background-color: #24191F;
	color: #fff;
}

#main-navigation > ul.nav > li:hover > ul{display: block;opacity:1;}
#main-navigation > ul.nav > li > ul > li:hover > ul{display: block;opacity:1;}

/*------------------------------
LOGO
------------------------------*/

h2#logo{
display:inherit;
  width: 300px;
  height: 140px;
  float:left;
  -webkit-transition: all 0.5s ease;
 -moz-transition: all 0.5s ease;
   -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
      transition: all 0.5s ease;
      margin:0;
}
h2#logo a{
  display: block;
  width: 100%;
  height:100%;
  margin:auto;
  position:relative;
  max-width:245px;
  margin:15px 20px 0 20px;
}

h2#logo .st0,
h2#logo .st1{
    -webkit-transition: all 0.5s ease;
   -moz-transition: all 0.5s ease;
     -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
        transition: all 0.5s ease;
}

h2#logo .st0{fill:#FE5000;stroke: none;}
h2#logo .st1{fill:#75787B;}

h2#logo a:hover .st1{
    fill:#FE5000;
}

@keyframes heartpulsate {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

h2#logo a:hover .st0,
h2#logo a:hover .st1{
    fill:#75787B;
    opacity:0.5;
}
h2#logo a:hover .shape{
    animation: heartpulsate 2s ease-in-out infinite;
    opacity:1;
    fill:#FE5000;
}


header .yScroll{overflow-x:hidden;overflow-y: scroll !important}
.customer-details{display:none;padding-top:20px;}
.customer-details:before{content:'';top:0;width:200px;left:calc(50% - 100px);}

.sidr-open header,
.scrolled header{box-shadow:0 0 10px rgba(0,0,0,0.2);height:90px;}
.sidr-open header > .header-upper,
.scrolled header > .header-upper{height:0;overflow:hidden;}

.scrolled header #main-navigation > ul.nav > li > a,
.scrolled header #main-navigation > ul.nav > li{height: 90px;line-height: 90px;font-size:14px;}

.sidr-open #logo,
.scrolled #logo{width: 300px;height: 90px;}

.sidr-open #logo a,
.scrolled #logo a{margin:10px 20px 0 20px; max-width:166px;}

.sidr-open h2#logo .st1,
.scrolled h2#logo .st1{opacity:0;}

.sidr-open #main-navigation,
.scrolled #main-navigation {height:90px;}

.sidr-open  #main-navigation > ul.nav,
.scrolled #main-navigation > ul.nav{margin: 0px 0 20px 0;}

/*------------------------------
HAMBURGER
------------------------------*/

.hamburger {
  padding: 5px 5px;
  display: none;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  position:fixed;
  right:15px;
  top:75px;
  z-index: 99999;
}
.sidr-open .hamburger,
.scrolled .hamburger {top:30px;}
.hamburger-box {
  width: 36px;
  height: 16px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
  -webkit-transition: all 0.5s ease;
 -moz-transition: all 0.5s ease;
   -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
      transition: all 0.5s ease;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 36px;
    height: 2px;
    background-color: #212721;
    border-radius: 3px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.5s;
    transition-timing-function: ease;
}

.hamburger:hover .hamburger-inner, .hamburger:hover  .hamburger-inner::before, .hamburger:hover  .hamburger-inner::after {
    background-color:#FE5000;
}


  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -8px; }
  .hamburger-inner::after {
    bottom: -8px; }


.hamburger--spin-r .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.25s ease, opacity 0.1s ease; }
.hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
    transform: rotate(-225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-name: changeColor;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-play-state: running;
}
.hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-name: changeColor;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-play-state: running;
}

@keyframes changeColor {
  20% {
    background-color: #212721;
  }
  40% {
    background-color: #344217;
  }
  60% {
    background-color: #625700;
  }
  80% {
    background-color: #a86000;
  }
  100% {
    background-color:#FE5000;
  }
}

/*********************
bits and bobs
*********************/

a i, a, button, a:link, .easing, ul li, .button, .hamburger, .arrow{
    -webkit-transition: all 0.5s ease;
   -moz-transition: all 0.5s ease;
     -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
        transition: all 0.5s ease;
    -webkit-appearance: none;
}

/*-- HORIZONTAL LISTS --*/

ul.horizontal{
  display: block;
  position: relative;
  list-style: none;
  font-size: 1em;
  margin: 0;
  padding: 0;
}

ul.horizontal > li{
  display: inline-block;
  position: relative;
  font-size: 18px;
  margin: 0;
  padding: 0;
  line-height: normal;
  vertical-align: top;
}

/*-- VERTICAL LISTS --*/

ul.list{
  display: block;
  position: relative;
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0;
}

ul.list > li{
  display: block;
  position: relative;
  vertical-align: top;
  margin: 0;
  padding: 0;
}
footer ul.sub-menu,
ul.vertical{
  display: block;
  position: relative;
  list-style: none;
  font-size: 0;
  text-align: left;
  margin: 0;
  padding:8px  0;
  line-height: 0;
}
footer ul.sub-menu li,
ul.vertical li{
  display: block;
  position: relative;
  margin:10px 0 10px 0;
  padding:0;
  line-height:2;
  font-size:14px;
  letter-spacing: 1px;
}

ul.horizontal.buttons li{
    padding:10px 10px 10px 10px ;
}

ul.button-group{
  text-align: inherit;
  margin-bottom: -10px;
  padding:30px 0 30px 0 ;
  display:relative;
}

ul.button-group > li{
  margin-right: 20px;
  margin-bottom: 10px;
  width:auto;
}

ul.button-group > li > .button{margin-top: 0;}
ul.button-group > li:nth-child(even) > .button a{
    background-color: transparent;
    color:#75787B;
    border:2px solid #75787B;
}
ul.button-group > li:nth-child(even) > .button a:hover{
    background-color: #75787B;
    color:#FFFFFF;
}

ul.button-group > li:last-child{margin-right: 0;}

/*-- ANCHOR --*/

.anchor{
  display: block;
  width: 100%;
  height: 1px;
  padding: 0;
  margin: 0;
  font-size: 0;
  line-height: 0;
  margin-bottom: -1px;
}

.anchor > a{
  display: block;
  width: 100%;
  height: 1px;
  padding: 0;
  margin: 0;
  font-size: 0;
  line-height: 0;
}

/*-- ALIGNMENT --*/

.left{
  float: left;
  text-align: left;
}

.right{
  float: right;
  text-align: right;
}

.align-left{
  text-align: left;
}

.align-right{
  text-align: right;
}

.align-center{
  text-align: center;
}

.middle{
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*-- VIDEOS IN POSTS --*/

.video{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  margin: 20px 0;
}

.video > iframe{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*------------------------------
TEXT STYLES
------------------------------*/

strong,
b{
  font-weight: 500;
}

em,
i{
  font-weight: 100;
}
strong em{font-weight: 500;}

small{
  font-size: 0.8em;
}

/*-- HEADINGS --*/

h1,h2,h3,h4,h5,h6{
    line-height:1.4;
    font-weight:normal;
    position:relative;
    font-weight: 300;
    font-family: 'F37 Ginger', sans-serif;}
}

.align-left h1,
.align-left h2,
.align-left h3,
.align-left h4,
.align-left h5,
.align-left h6{text-align:left;}

.align-right h1,
.align-right h2,
.align-right h3,
.align-right h4,
.align-right h5,
.align-right h6{text-align:right;}

h2.h1,h1{font-size:38px;}
h3.h2,h2{font-size:38px;}
h3{font-size:30px;}
h4{font-size:28px;}
h5{font-size:24px;}
h6{font-size:20px;font-weight:normal;}

.article .article-content .paragraph h6 {margin-top:0;font-size:12px;}

.font12{font-size:12px;}
.font14{font-size:14px;}
.font16{font-size:16px;}
.font18{font-size:18px;}

.lineheight15{line-height: 1.5;}
.lower{text-transform: lowercase;}

.paragraph address{font-weight: bold;font-style: normal;}
.paragraph ul li,
.paragraph ol li{text-align:left;padding:10px 5px 5px 5px;}

.paragraph h1{font-size:30px;}
.paragraph h2{font-size:26px;}
.paragraph h3{font-size:24px;}
.paragraph h4{font-size:22px;}
.paragraph h5{font-size:20px;}
.paragraph h6{font-size:18px;}

.paragraph p{margin:10px 0 15px 0;}

.paragraph h1,
.paragraph h2,
.paragraph h3,
.paragraph h4,
.paragraph h5,
.paragraph h6{text-align: inherit;margin:15px 0 0px 0;}

.article .paragraph h1,
.article .paragraph h2,
.article .paragraph h3,
.article .paragraph h4,
.article .paragraph h5,
.article .paragraph h6{
    margin:25px 0 15px 0;
}

.clear{clear: both;}
.left{float: left;}
.right{float: right;}
.flip{
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}
.flipV{
    -moz-transform: scaleY(-1);
    -o-transform: scaleY(-1);
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
    filter: FlipV;
    -ms-filter: "FlipV";
}
.row{clear:both;position:relative;}
.border-top{border-top:1px solid #D1D1D1;}
.line-height30{line-height:30px;}
.uppercase{text-transform: uppercase;}
.bold{font-weight:bold;}

/* Extra Margins */
.no-pad{padding:0;margin:0;}
.margin-auto{margin:auto;}
.pad-top10{padding-top:10px;}
.pad-top20{padding-top:20px;}
.pad-top30{padding-top:30px;}
.pad-top40{padding-top:40px;}
.pad-top50{padding-top:50px;}
.pad-top60{padding-top:60px;}
.pad-bottom10{padding-bottom:10px;}
.pad-bottom20{padding-bottom:20px;}
.pad-bottom30{padding-bottom:30px;}
.pad-bottom40{padding-bottom:40px;}
.pad-bottom50{padding-bottom:50px;}
.pad-bottom60{padding-bottom:60px;}

.zindex1{z-index:1;}

hr{border:none;border-top:1px solid #D1D1D1;}
hr.grey{border:none;border-top:1px solid #F7F7F7;}
hr.white{border:none;border-top:1px solid #FFFFFF;}
hr.black{border:none;border-top:1px solid #B1B3B3;}
hr.orange{border:none;border-top:1px solid #FE5000;}

.orange-text{color:#FE5000;}
.black-text{color:#212721;}
.grey-text{color:#75787B;}
.pinktext{color:#FF0B64;}

/************
Backgrounds
*************/

.bg-grey{background-color:#F7F7F7;}
.bg-orange{background-color:#FE5000;}
.bg-black{background-color:#212721;}
.bg-white{background-color:#FFFFFF;}
.bg-gradient{
    background: rgba(255,11,100,1);
    background: -webkit-linear-gradient(left, rgba(255,11,100,1), rgba(254,80,0, 1)); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, rgba(255,11,100,1), rgba(254,80,0, 1)); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, rgba(255,11,100,1), rgba(254,80,0, 1)); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, rgba(255,11,100,1), rgba(254,80,0, 1)); /* Standard syntax */
}
.bg-orange,
.bg-gradient,
.bg-black,
.bg-black,
.bg-orange,
.bg-gradient,
.bg-black h1,
.bg-orange h1,
.bg-gradient h1,
.bg-black h3,
.bg-orange h3,
.bg-gradient h3,
.bg-black h4,
.bg-orange h4,
.bg-gradient h4,
.bg-black h5,
.bg-orange h5,
.bg-gradient h5,
.bg-black h6,
.bg-orange h6,
.bg-gradient h6,
.bg-black p,
.bg-orange p,
.bg-gradient p,
.bg-black a:link,
.bg-black a:visited,
.bg-orange a:link,
.bg-orange a:visited,
.bg-gradient a:link,
.bg-gradient a:visited{color:#FFFFFF;}
.bg-black a:hover,
.bg-gradient a:hover{color:#FE5000;}

.bg-orange a:hover,{
    color:#212721;
}
.black-text p{color:#212721;}
p{color:#212721;line-height:1.6;}
.bg-black p{color:#FFFFFF;}
.bg-gradient p{color:#FFFFFF;}
.bg-orange p{color:#FFFFFF;}
.bg-grey p{color:#212721;}

section.bg-gradient.header .section-header p{color:#FFFFFF;}

/*-- LINKS --*/

a, a:link,a div{
	outline: none;
	color: #FE5000;
	text-decoration: none;
    -webkit-transition: all 0.5s ease;
   -moz-transition: all 0.5s ease;
     -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
        transition: all 0.5s ease;
}

a:hover, a:focus {color: #212721;}

.pointer-none{pointer-events: none;}
.pointer-auto{pointer-events: auto;}

.bg-gradient .paragraph ol li,
.bg-orange .paragraph ol li,
.bg-black .paragraph ol li{color:#FFFFFF;}
.bg-grey .paragraph ol li{color:#212721;}

/**********************
POPUP
***********************/

#modalframe{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:999999;
}
.modal-overlay{
    background: rgba(255,11,100,0.8);
    background: -webkit-linear-gradient(left, rgba(255,11,100,0.8), rgba(254,80,0, 0.8)); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, rgba(255,11,100,0.8), rgba(254,80,0, 0.8)); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, rgba(255,11,100,0.8), rgba(254,80,0, 0.8)); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, rgba(255,11,100,0.8), rgba(254,80,0, 0.8)); /* Standard syntax */
    position:fixed;
    top:0;
    left:0;
    margin:0;
    padding:0;
    width:100%;
    height:100vh;
    min-height:100vh;
    pointer-events: auto;
}
.modal-inner{
    width:80%;
    max-width:700px;
    margin:auto;
    position:absolute;
    top:90px;
    left:calc(50% - 350px);
    pointer-events: none;
    background-color: #FFFFFF;
    border-radius:4px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    padding-bottom:20px;
}
.modal-close{
    position:absolute;
    top:8px;
    right:20px;
    width:20px;
    height:20px;
    background-image:url('../img/svgs/close-grey.svg');
    background-repeat: no-repeat;
    background-size:20px 20px;
    background-position:center center;
    cursor:pointer;
    pointer-events: auto;
    z-index:201;
    border-radius:50%;
    -webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
       -o-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
          transition: all 0.5s ease;
}
.modal-close:hover{opacity:0.5;}
.modal-content{padding:30px;pointer-events: auto;}
.pop-content{display:none !important;position:relative;}
.trigger{cursor:pointer;}

@media (max-width: 1080px){
    .modal-inner{
        top:80px;
        left:10%;
    }
}

@media (max-width: 500px){
    .modal-inner{
        top:95px;
    }
}

/******************
Tool tip
******************/
#tip-content{padding:10px;text-align:center;}
#tip-content span{font-size:20px;border:1px solid #FFFFFF;padding:2px 8px 2px 8px;margin:0 10px 0 10px;border-radius:50%;}
.tip-close{
    position:absolute;
    top:8px;
    right:8px;
    width:20px;
    height:20px;
    background-image:url('../img/svgs/close-white.svg');
    background-repeat: no-repeat;
    background-size:20px 20px;
    background-position:center center;
    cursor:pointer;
    pointer-events: auto;
    z-index:201;
    border-radius:50%;
    -webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
       -o-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
          transition: all 0.5s ease;
}
.tip-close:hover{opacity:0.5;}
#tip-container{display:none;width:100%;position:fixed;bottom:0;left:0;z-index:50;}

/***********************
BUTTONS
************************/

.bg-gradient .bg-white input[type="submit"],
input[type="submit"],
.button a{
	font-size:18px;
	display: inline-block;
	background-color: transparent;
	background-color: #FE5000;
    color:#FFFFFF;
	white-space: nowrap;
	line-height: 44px;
	margin: 0;
    height:44px;
	padding: 0px 26px 0 26px;
    -webkit-appearance: none;
    -webkit-transition: all 0.5s ease;
   -moz-transition: all 0.5s ease;
     -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
        transition: all 0.5s ease;
    border-radius:4px;
    border:1px solid #FE5000;
    cursor:pointer;
    min-width:172px;
    text-align:center;
    font-weight:500;
}
.alt.button a{
    background-color: transparent;
    color:#FE5000;
    border:1px solid #FE5000;
}
.alt.button a:hover{
    background-color: #FE5000;
    color:#FFFFFF;
    border:1px solid #FE5000;
}

.bg-orange .alt.button a,
.bg-black .alt.button a,
.bg-gradient .alt.button a{
    background-color: transparent;
    color:#FFFFFF;
    border:1px solid #FFFFFF;
}
.bg-orange .alt.button a:hover,
.bg-black .alt.button a:hover{
    background-color: #FFFFFF;
    color:#212721 !important;
    border:1px solid #FFFFFF;
}
.bg-gradient input[type="submit"],
.bg-orange input[type="submit"],
.black.button a{
    background-color: #212721;
    border:1px solid #212721;
    color:#FFFFFF;
}
section.bg-gradient .button a{
    background-color: #FFFFFF;
    border:1px solid #FFFFFF;
    color:#FE5000;
    font-weight:normal;
}
section.bg-gradient .button a:hover,
.bg-gradient .alt.button a:hover{
    background-color: #212721;
    color:#FFFFFF;
    border:1px solid #212721;
}

.bg-gradient .bg-white input[type="submit"]:hover,
input[type="submit"]:hover,
.button a:hover{background-color:#FF0B64;color:#FFFFFF !important;border:1px solid #FF0B64;}

.bg-gradient input[type="submit"]:hover,
.bg-orange input[type="submit"]:hover{
    background-color:#FFFFFF;color:#FF0B64 !important;border:1px solid #FFFFFF;
}

section.bg-grey .button.subtle a,
section.bg-black .button.subtle a,
.button.subtle a{background-color:transparent;color:#75787B;padding:0;margin:0;border:0;min-width:10px;}

section.bg-gradient .button.subtle a,
section.bg-orange .button.subtle a{background-color:transparent;color:#FFFFFF;padding:0;margin:0;border:0;min-width:10px;}

section.bg-black .button.subtle a:hover,
section.bg-grey .button.subtle a:hover,
.button.subtle a:hover{background-color:transparent;color:#FE5000 !important;}

section.bg-gradient .button.subtle a:hover,
section.bg-orange .button.subtle a:hover{background-color:transparent;color:#212721;padding:0;margin:0;border:0;min-width:10px;}

/***************
VIDEO
****************/
video {
  width: 100%    !important;
  height: auto   !important;
}
.video-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
}
.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*------------------------------
GALLERY SLIDESHOW
------------------------------*/
.cycle-slideshow{
  display: block;
  width: 100%;
  height: 100%;
  position:relative;
}

.cycle-slideshow > .slide{
  display: block;
  width: 100%;
  height: 100%;
  min-height:500px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.cycle-slideshow > .slide.align-top{
  background-position: center top;
}

.cycle-slideshow > .slide.align-middle{
  background-position: center center;
}

.cycle-slideshow > .slide.align-bottom{
  background-position: center bottom;
}

.slideshow-controls{
  position: absolute;
  width: 100%;
  height: 70px;
  left: 0;
  right: 0;
  top: calc(50% - 35px);
  z-index: 480;
  pointer-events: none;
}

.slideshow-controls .slideshow-arrow{
  position: absolute;
  width: 40px;
  height: 70px;
  pointer-events: all;
  background-size:contain;
}

.slideshow-controls .slideshow-arrow.slideshow-prev{
    background-image: url('../img/svgs/arrow-left.svg');
    left: 40px;
}

.slideshow-controls .slideshow-arrow.slideshow-next{
    background-image: url('../img/svgs/arrow-right.svg');
    right: 40px;
}

.slideshow-arrow,
.slick-arrow{
    display: block;
    position: absolute;
    width: 70px;
    height: 70px;
    background-color:rgba(0,0,0,0.5);
    border-radius:50%;
    top: calc(50% - 45px);
    border: none;
    outline: none;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 30%;
    text-align: left;
    text-indent: -9999px;
    overflow: hidden;
    font-size: 0;
    cursor: pointer;
    -webkit-transition: all 250ms;
    -moz-transition: all 250ms;
    -ms-transform: all 250ms;
    -o-transition: all 250ms;
    transition: all 250ms;
    z-index: 100;
}

/*-- PREV ARROW --*/

.slideshow-arrow.slideshow-prev,
.slick-arrow.slick-prev{
    left: -45px;
    background-image: url('../img/svgs/arrow-left.svg');
    background-position: 40px center;
}

.slideshow-arrow.slideshow-prev:hover,
.slick-arrow.slick-prev:hover{
    background-image: url('../img/svgs/arrow-left.svg');
}

.slideshow-arrow.slideshow-next,
.slick-arrow.slick-next{
    right: -45px;
    background-position: 10px center;
    background-image: url('../img/svgs/arrow-right.svg');
}

.slideshow-arrow.slideshow-next:hover,
.slick-arrow.slick-next:hover{
    background-image: url('../img/svgs/arrow-right.svg');
}

.slideshow-controls .slideshow-arrow.slideshow-prev:hover{background-image: url('../img/svgs/arrow-left-orange.svg');}
.slideshow-controls .slideshow-arrow.slideshow-next:hover{background-image: url('../img/svgs/arrow-right-orange.svg');}

.logos-cont .slick-prev,
.logos-cont .slick-next{display:none !important;}

.slideshow-arrow:hover,
.slick-arrow:hover{background-color:#FE5000;}

/*------------------------------
PAGINATION
------------------------------*/

.pagination{
  margin: 40px 0 40px 0;
  display: block;
  text-align: center;
  font-size: 0;
}

.pagination > a,
.pagination > span{
  display: inline-block;
  font-size: 14px;
  height: 35px;
  line-height: 33px;
  padding: 0 10px;
  margin: 0 2.5px;
  min-width: 35px;
  text-align: center;
  color: #fff;
  border: 1px solid #fd5000;
  background-color: #fd5000;
}

.pagination > a:hover,
.pagination > a.current,
.pagination > span.current{
  color: #fd5000;
  background-color: #fff;
}


/***********************************
Sections
**********************************/

section{position:relative;clear:both;}
main section .content-container{padding:40px 2% 40px 2%;overflow:hidden;position:relative;z-index:5;}

section.header .content-container{padding:210px 0 0px 0;max-width:900px;text-align:center;}
section.header .content-container ul.button-group{padding-bottom:0;}
section.header h2.h1,
section.header h1{margin:0;}
section.header h3.h2,
section.header h2{color:#75787B;font-size:20px;}
section.header h2.h1{color:#212721;}

section.header .button{margin:50px 0 20px 0;}
section.header .gif{min-width:100%;}

section.strip{min-height:270px;}
section.strip-section h4{margin:10px 0 10px 0;font-size:22px;}
section.strip-section .paragraph h5{font-weight:100;font-size:18px;margin-bottom:;}
section.strip-section h4 em{font-weight: 300;}
section.strip-section h4 strong em{font-weight: 500;}
section.strip-section .buttons{margin-bottom:10px;}

section.strip-section.bg-gradient .section-header p{color:#FFFFFF;}
section.strip-section .strip-bg.strip-bg-deep-sea{
}

section .base-animation,
section .header-animation {
    width:100%;
    position:relative;
    padding-top:40px;
}
section .header-animation::before,
section .header-animation::after{
    content:'';
    height:2px;
    background-color:#C0C0C0;
    width:100%;
    bottom:32px;
    left:0;
    position:absolute;
    z-index:1;
}
section .header-animation::before{
    width:0px;
    right:0;
    left:auto;
}
section .base-animation .graphic,
section .header-animation .graphic{
    background-position:bottom center;
    background-size: contain;
    margin:auto;
    display:block;
    max-width:1558px;
    height:250px;
    z-index:2;
    position:relative;
    background-color:#FFFFFF;
}
section .base-animation.footer .graphic{
    margin-top:-120px;
    height:220px;
    background-image:url('../img/svgs/animations/large/footer.svg');
}

/* Selected banner animations */

section .header-animation.brain-circle-blue{
    padding-top: 0px;
}
section .header-animation.brain-circle-blue .graphic{
    height:200px;
}

section .header-animation.home{
    padding-top: 0px;
}
section .header-animation.home .graphic{
    height:382px;
    max-width:1400px;
}
section .header-animation.home::after{
    bottom:3px;
    background-color:#B0B2B2;
    height:1px;
}
.mobile-phones-slider{display:none;}
.home-phone{max-width:300px;width:80%;margin:auto;}

/* ---------------------------------------- */
section .header-animation.mobile .graphic{
    height:134px;
    background-size:1558px;
}
section .header-animation.mobile::after{
    bottom:32px;
}
/* ---------------------------------------- */
section .header-animation.mail .graphic{
    height:120px;
    background-size:1558px;
}
section .header-animation.mail::after{
    bottom:0px;
    width:50%;
}
section .header-animation.mail::before{
    width:50%;
    bottom:1px;
}
/* ---------------------------------------- */
section .header-animation.facebook .graphic{
    height:144px;
    background-size:1558px 144px;
}
section .header-animation.facebook::after{
    bottom:12.6px;
    width:50%;
}
section .header-animation.facebook::before{
    width:50%;
    bottom:14px;
}
/* ---------------------------------------- */
section .header-animation.book-a-demo .graphic{
    height:130px;
}
section .header-animation.book-a-demo::after{
    bottom:6px;
    width:50%;
}
section .header-animation.book-a-demo::before{
    width:50%;
    bottom:2px;
}
/* ---------------------------------------- */
section .header-animation.lightbulb .graphic{
    height:146px;
}
section .header-animation.lightbulb::after{
    bottom:20px;
    width:50%;
}
section .header-animation.lightbulb::before{
    width:50%;
    bottom:15px;
}
/* ---------------------------------------- */
section .header-animation.purchase .graphic{
    height:145px;
    background-size:1558px;
}
section .header-animation.purchase::after{
    bottom:0px;
    width:100%;
}
/* ---------------------------------------- */
section .header-animation.sun-rays .graphic{
    height:145px;
    background-size:1558px;
}
section .header-animation.sun-rays::after{
    bottom:0px;
    width:100%;
}
/* ---------------------------------------- */
section .header-animation.brain {margin-top:-80px;}

section .header-animation.brain .graphic{
    height:180px;
    margin-bottom:50px;
}
section .header-animation.brain::after{
    bottom:22px;
    width:100%;
}
/* ---------------------------------------- */
section .header-animation.contact .graphic{
    height:130px;
    margin-bottom:25px;
}
section .header-animation.contact::after{
    bottom:21px;
    width:50%;
    background-color:#D3D3D3;
}
section .header-animation.contact::before{
    width:50%;
    bottom:48px;
    height:9px;
    border-top:#D8D8D8 2px solid;
    border-bottom:#D8D8D8 2px solid;
    background-color:#FFFFFF;
}
/* ---------------------------------------- */
section .header-animation.cctv .graphic{
    height:150px;
    background-size:1558px;
}
section .header-animation.cctv::after{
    bottom:71px;
    width:50%;
    height:2.5px;
}
section .header-animation.cctv::before{
    width:50%;
    bottom:0px;
    height:2.5px;
}
/* ---------------------------------------- */
section .header-animation.heart .graphic{
    height:164px;
    background-size:1558px;
}
section .header-animation.heart::after{
    bottom:1px;
    width:50%;
}
section .header-animation.heart::before{
    bottom:0px;
    width:50%;
}
/* ---------------------------------------- */
section .header-animation.bar-chart .graphic{
    height:180px;
    margin-bottom:0px;
    background-size:1558px;
}
section .header-animation.bar-chart::after{
    bottom:0px;
    width:100%;
}
/* ---------------------------------------- */

@media (max-width: 1100px){
    section .header-animation.home .graphic{
        width:1400px;
        margin-left:calc(50% - 700px);
    }
}

@media (max-width: 900px){

    @keyframes moveAnii {
      1% {
        background-position:left bottom;
      }
      50% {
        background-position:right bottom;
      }
      100% {
        background-position:left bottom;
      }
    }
    section .header-animation.brain-circle-blue .graphic{
        background-size:1558px;
        background-position:center center;
    }
    section .header-animation.brain .graphic,
    section .base-animation.footer .graphic,
    section .header-animation.book-a-demo .graphic,
    section .header-animation.lightbulb .graphic,
    section .header-animation.contact .graphic{
        background-size:1558px;
        background-position:left bottom;
        animation-name: moveAnii;
        animation-duration: 50s;
        animation-timing-function: linear;
        animation-delay: 1s;
        animation-direction: alternate;
        animation-iteration-count: infinite;
        animation-fill-mode: none;
        animation-play-state: running;
    }
    section .header-animation.book-a-demo .graphic{background-size:1200px;animation-duration: 40s;}
    section .header-animation.brain .graphic{margin-top:20px;}
    section .base-animation.footer .graphic{margin-top:0;}

    section .header-animation.home .graphic{
        width:1000px;
        margin-left:calc(50% - 500px);
        height:300px;
    }
    section .base-animation.footer{display:none;}

}
@media (max-width: 600px){
    section .header-animation.home::after,
    section .header-animation.home .graphic{
        display:none;
    }
    .mobile-phones-slider{display:inherit;position:relative;margin-bottom:0px;border-bottom:1px solid #C0C0C0;}
    .mobile-phones-slider ul li{margin-bottom:-32px;}
    .mobile-phones-slider ul li .home-phone{
        opacity:0;
        -webkit-transition: all 0.4s ease;
           -moz-transition: all 0.4s ease;
             -o-transition: all 0.4s ease;
            -ms-transition: all 0.4s ease;
                transition: all 0.4s ease;
    }
    .mobile-phones-slider ul li.slick-current .home-phone{
        opacity:1 !important;
    }

/* PHONE 1 */
    @keyframes showWindow {
        from {
            opacity: 0;
            transform: scale(0);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    @keyframes moveNotifications {
        to {
            transform: none;
        }
    }

    .slick-active #window1 {
        opacity: 0;
    }
    .slick-active #window1 {
        animation: showWindow 0.3s 3s ease-out forwards;
        transform-origin: 143px 229px;
    }

    .slick-active #window2,
    .slick-active #window3, .slick-active #window4 {
        transform: translate(0px, -78px);
        animation: moveNotifications 0.3s 2.8s ease-out forwards;
    }

/* PHONE 2 */

	.slick-active #chat2 {
		opacity: 0;
		animation: showWindow 0.3s 1.1s ease forwards;
		transform-origin: 142px 199px;
	}

	.slick-active #chat3,
	.slick-active #chat4,
	.slick-active #chat4,
	.slick-active #chat5 {
		transform: translate(0px, -74px);
		animation: moveNotifications 0.3s 1s ease-out forwards;
	}

	@keyframes showWindow {
		from {
			opacity: 0;
			transform: scale(0);
		}

		to {
			opacity: 1;
			transform: scale(1);
		}
	}

	@keyframes moveNotifications {
		to {
			transform: none;
		}
	}

/* phone 3 */

    .slick-active #noti1 {
        opacity: 0;
        animation: showWindow 0.3s 1.1s ease-out forwards;
        transform-origin: 158.25px 178px;
    }

    .slick-active #noti2,
    .slick-active #noti3,
    .slick-active #noti4,
    .slick-active #noti5,
    .slick-active #noti6,
    .slick-active #lines {
        transform: translate(0px, -50px);
        animation: moveNotifications 0.3s 1s ease-out forwards;
    }

    @keyframes showWindow {
        from {
            opacity: 0;
            transform: scale(0);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    @keyframes moveNotifications {
        to {
            transform: none;
        }
    }

}

/* ****************************************** */

section.icons-section .content-container,
section.strip .content-container{width:90%;padding:50px 5% 50px 5%;text-align:center;}
section.cards-section{position:relative;z-index:1;background-color:#FFFFFF;}

/*section.cards-section::after{height:120px;position:absolute;bottom:0;left:0;width:100%;content:'';background-color:#F7F7F7;z-index:1;}*/

.overlap .the-overlap{display:none;}
.overlap .the-overlap{display:inherit;height:120px;position:absolute;bottom:0;left:0;width:100%;content:'';z-index:1;}
.overlap .the-overlap.bg-grey{background-color:#F7F7F7;}
.overlap .the-overlap.bg-white{background-color:#FFFFFF;}
.overlap .the-overlap.bg-black{background-color:#212721;}
.overlap .the-overlap.bg-orange{background-color:#FE5000;}

section.cards-section .content-container{position:relative;z-index:2;padding-bottom:40px;}
section.cards-section ul{margin-top:-20px;}
section.cards-section ul.horizontal li{
    background-color:#FFFFFF;
    box-shadow:3px 3px 4px rgba(0,0,0,0.07);
    width:23%;
    margin:20px 1% 0 1%;
    min-height:350px;
}
section.cards-section ul.horizontal ul.slick-dots li{
    min-height:20px;
    height:20px;
    width:20px;
    box-shadow:none;
}

section.cards-section .card-content{width:100%;padding:60px 10% 60px 10%;overflow:hidden;}
section.cards-section .card-content .stat{font-size:50px;font-weight:100;color:#FE5000;}
section.cards-section .card-content .card-logo .graphic{background-size:contain;width:80%;margin:26px auto 0 auto;min-height:100px;}
section.cards-section .card-content .card-sub p{font-size:26px;margin-bottom:0;max-width:220px;margin:10px auto 0 auto;}
section.cards-section .slick-track{padding-bottom:20px !important;}
section.centered-text .content-container{max-width:1000px;}

.section-header{min-height:100px;}
.section-header.lonely{min-height:30px;}
.section-header h2.h1,
.section-header h1{font-size:42px;}
.section-header h4,
.section-header h3{font-size:38px;margin-bottom:0px;}
.section-header p{font-size:20px;margin-top:5px;color:#75787b;}

section.header .section-header p{font-size:20px;margin-top:15px;}
section.triangle-section .content-container{padding-bottom:0;}
section.triangle-section .triangle{
    background-position:bottom center;
    background-repeat: no-repeat;
    background-size: contain;
    width:100%;
    max-width:700px;
    height:200px;
    margin:auto;
    overflow:hidden;
}
section.triangle-section .triangle h3{margin-bottom:0;font-size:60px;font-weight:100;color:#FE5000;}
section.triangle-section .triangle h4{margin-top:0;color:#75787B;}

/*-----------------------------
splitcols-section
------------------------------*/

section.splitcols-section .section-header {margin:20px 0 20px 0;}
section.splitcols-section .columns{clear:both;}

section.splitcols-section .columns.two.ratio-50-50 .column{width:48%;}

section.splitcols-section .columns.two > .column:first-child{float:left;margin-right:2%;}
section.splitcols-section .columns.two > .column:nth-child(2){float:right;margin-left:2%;}

section.splitcols-section .columns.two.ratio-60-40 > .column:first-child{width:58%;}
section.splitcols-section .columns.two.ratio-60-40 > .column:nth-child(2){width:38%;}

section.splitcols-section .columns.two.ratio-40-60 > .column:first-child{width:38%;}
section.splitcols-section .columns.two.ratio-40-60 > .column:nth-child(2){width:58%;}

section.splitcols-section .paragraph > h2{color:#FE5000;}

section.splitcols-section .video-wrapper {margin-top:15px;}


/* ------------------------------
Section Text
--------------------------------*/
section.text-section .text-main,
section.text-section .text-side{float:left;width:300px;}
section.text-section .text-main p,
section.text-section .text-side p{color:#212721;}
section.text-section .text-main{width:calc(96% - 300px);margin:0 2% 0 2%;}

/*-----------------------------
Image section
------------------------------*/

section.image-section{position:relative;z-index:5;}
section.image-section .image-container{
    width:100%;
    height:500px;
    background-position:center bottom;
    background-repeat:no-repeat;
    background-size: cover;
}
section.image-section .container{padding:54px 4% 54px 4%;}

/*-----------------------------
Vacancies section
------------------------------*/

section.vacancies-section h5{color:#FE5000;margin-bottom:0;font-size:18px;}
section.vacancies-section.bg-grey .paragraph p{color:#75787B;font-size:18px;}
section.vacancies-section.bg-grey .paragraph > p{margin-top:0;}

/*------------------------------
ITEMS Section
------------------------------*/

.items > ul{
  margin-left: 0px;
  text-align:center;
}

.items > ul > li{
  padding-left: 0px;
  width: 24%;
  margin:0 1% 60px 1%;
}

.items .section-header{max-width:930px;margin:40px auto 0 auto;}
.items .section-header h2{max-width:800px;margin:0 auto 20px auto;}

.items.cols-two > ul.horizontal > li{
  width: 47.5%;
}

.items.cols-three > ul > li{
  width: 32.3333%;
}

.items.cols-four > ul > li{
  width: 24%;
}
.items ul.horizontal li{margin:10px 0.5% 30px 0.5%;position:relative;}
.items .cols-two ul.horizontal li{margin:10px 1% 30px 1%;}
.items ul.horizontal li i.graphic{background-size:contain;position:relative;width:140px;height:140px;}
.item-content{position:relative;padding: 0 5% 0 5%;}
.item-content .button{margin:20px 0 20px 0;}

.items > ul li{
    padding:0;
}
.items > ul li .item {padding:10px;}
.items ul.horizontal li .paragraph{margin-top:25px;}
.item h4{font-size:22px;font-weight:normal;}
.item h3{margin:0;}
.items.cols-four ul.horizontal  li{
    width:calc(25% - 52px);
    margin:10px 26px 30px 26px;
}
.items.cols-three ul.horizontal  li{
    width:calc(33.33% - 52px);
    margin:10px 26px 30px 26px;
}
.items.items-icons ul.horizontal  li:before{
    content:'';
    z-index:5;
    position:absolute;
    width:1px;
    height:346px;
    top:-10px;
    right:-26px;
    background-color:#D1D1D1;
}

.items.circles  ul.horizontal   li:before{display:none;}
.items.cols-four.circles  ul.horizontal   li:before,
.items  ul.horizontal   li:last-child:before{display:none !important;}
.items  ul  li .item.item-content.item-icons{padding:90px 0 10px 0;position:relative;}
.item-content.item-icons h3{text-transform:uppercase;color:#FE5000;letter-spacing:2px;width:100%;font-size:18px;border:1px solid #D1D1D1;position:absolute;top:0;left:0;margin:0 0 20px 0;padding:10px;line-height:20px;}
.item-content.item-icons h3:after{
    content:'';
    width:20px;
    height:20px;
    position:absolute;
    left:calc(50% - 10px);
    bottom:-10px;
    background-color:#FFFFFF;
    z-index:2;
    border:1px solid #D1D1D1;
    border-left:0;
    border-top:0;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.items  ul  li .item.item-content .paragraph{margin-top:0px;}
.items  ul  li .item.item-content .paragraph p{color:#75787B;}
.item.item-videos h3{margin:30px 0 20px 0;color:#FE5000;font-size:26px;}
.item h5{font-size:20px;font-weight:normal;color:#FE5000;margin:0;font-weight:300;}
.item .image{margin-bottom:25px;}


/********************
Line
*******************/

section.line{padding:0;margin:0;}
section.line .content-container{padding:40px 2% 40px 2%;}
hr{border:none;border-top:1px solid #D1D1D1;}

/**********************
LOGOS Section
************************/

section.logos-section .content-container{padding:20px 2% 30px 2%;}
section.logos-section ul.horizontal li{padding:0 20px 0 20px;text-align:center;}
section.logos-section.small ul.horizontal{padding-top:20px;}
section.logos-section.small ul.horizontal li img{max-height:70px;margin:auto;}
section.logos-section.medium ul.horizontal li img{max-height:100px;margin:20px auto 0 auto;}
section.logos-section.large ul.horizontal li img{max-height:160px;margin:auto;}
section.logos-section.large .logos-cont {padding:30px 0 20px 0;}
section.logos-section .section-header p{}

@media (max-width: 800px){

    section.logos-section ul.horizontal li{
        padding:0 10px 0 10px;
    }

}

ul.slick-dots{padding:50px 0 20px 0 !important;}
ul.slick-dots li{padding:0 !important;}

/* ****************
Accordion Section
**************** */

section.accordion-section .accordion-item:first-child{border-top:none;}
section.accordion-section .accordion-item{border-top:1px solid #D1D1D1;}
section.accordion-section .accordion-item h3{font-size:20px;}
section.accordion-section .accordion-question{
    cursor:pointer;
    -webkit-transition: all 0.5s ease;
   -moz-transition: all 0.5s ease;
     -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
        transition: all 0.5s ease;
}
section.accordion-section .accordion-question:hover{color:#FE5000;}
section.accordion-section .accordion-question .graphic{
        width:20px;height:25px;
        background-position:center center;
        background-image:url('../img/svgs/arrow-down-black.svg');
        animation-duration: 1s;
        animation-fill-mode: both;
}

section.accordion-section .accordion-answer{
        display:none;overflow:hidden;
        padding-bottom:15px;
}

@keyframes bouncing {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }

  70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0,-2px,0);
  }
}
section.accordion-section .accordion-question:hover .graphic{
    background-image:url('../img/svgs/arrow-down-orange.svg');
    animation-name: bouncing;
    transform-origin: center bottom;
}
section.accordion-section .accordion-question:hover .graphic.flipV{animation-name: none;transform-origin: center center;}

/*************
Quote
************/

section.quote-section .content-container{max-width:820px;font-weight:300;font-size:18px;}
section.quote-section .logo img{max-width:250px;}
section.quote-section .attribution{font-weight:normal;color:#212721;}

section.quote-section .attribution{font-weight:normal;color:#212721;}
section.quote-section .bg-gradient .attribution p,
section.quote-section .bg-orange .attribution p,
section.quote-section .bg-black .attribution p{color:#FFFFFF;}
section.quote-section .quote p{color:#75787B;font-size:20px;}
section.quote-section .content-container h5{color:#FE5000;font-size:14px;}

/*************
form
************/

section.form-section{margin-top:80px;}
section.form-section .content-container{overflow:visible;}
section.contact-section .form,
section.form-section .form{
    background-color:#FFFFFF;
    box-shadow:10px 10px 20px rgba(0,0,0,0.1);
    width:92%;
    max-width:1000px;
    margin:-80px auto 40px auto;
}
section.form-section .form-content > div{margin-top:20px;}
.bg-gradient section.contact-section .form, section.form-section .form{
    box-shadow:0px 0px 10px rgba(0,0,0,0.3);
}
section.contact-section .form-content,
section.form-section .form-content{
    padding:20px 4% 30px 4%;
    margin:auto;
    width:92%;
    max-width:528px;
}
section.form-section .paragraph p {color:#212721;}
section.form-section form{margin:40px 0 40px 0;}
section.contact-section .form{margin:0;}
section.contact-section h3{margin-bottom:3px;font-size:28px;}

.g-recaptcha{clear:both;padding:10px 0 5px 0;}

/***********
contact-section
************/
section.contact-section .locations ul.horizontal{width:100%;}
section.contact-section .locations ul.horizontal li{width:48%;}
section.contact-section .locations ul.horizontal li:first-child{margin-right:4%;}
section.contact-section .locations .button a{font-size:14px;}
section.contact-section address,
section.contact-section  .email,
section.contact-section  .telephone{border-top:1px solid #75787B;margin:0;padding:12px 5px 12px 5px;font-style: normal;}

section.contact-section.bg-grey p{color:#75787B;}

section.contact-section .social{margin-top:35px;}
section.contact-section .social ul.vertical li{
    margin:8px 0 8px 0;
    overflow:hidden;
    height:40px
}
section.contact-section .map{min-height:250px;height:100%;width:100%;}
.share-this .graphic,
section.contact-section .social .graphic{
    float:left;width:50px;height:40px;background-size:40px 40px;clear:both;background-position:left center;
}
section.contact-section .social a:link{color:#75787B;vertical-align: middle;font-size:18px;}
section.contact-section .social a:visited{color:#75787B;}
section.contact-section .social a:hover{color:#FE5000;}
.facebook .graphic{background-image:url('../img/svgs/icons/facebook.svg');}
.twitter .graphic{background-image:url('../img/svgs/icons/twitter.svg');}
.instagram .graphic{background-image:url('../img/svgs/icons/instagram.svg');}
.linkedin .graphic{background-image:url('../img/svgs/icons/linkedin.svg');}
section.contact-section .social a:hover .graphic{opacity:0.5;}

/************
section-roi
*************/

section.roi-section ul.horizontal > li{width:33.33%;text-align:left;font-size:14px;}
section.roi-section ul.horizontal > li:first-child{width:50%;}
section.roi-section ul.horizontal > li:nth-child(2){width:16.66%;}
section.roi-section ul.horizontal > li.roi-arrow{min-height:300px;text-align:center;}
section.roi-section ul.horizontal > li.roi-arrow svg{width:100%;max-width:100px;position:absolute;top:55%;left:calc(50% - 60px);}
section.roi-section ul.horizontal > li ul.horizontal li{float:left;width:33.33%;margin-bottom:23px;padding-right:20px;}
section.roi-section.bg-grey ul.horizontal > li ul.horizontal li label{color:#75787B;line-height:1.3;}
section.roi-section.bg-grey ul.horizontal > li ul.horizontal li label i{
    background-color: #FFFFFF;margin-left:4px;padding:2px 7px 2px 7px; font-size:14px;
    -webkit-transition: all 0.5s ease;
   -moz-transition: all 0.5s ease;
     -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
        transition: all 0.5s ease;
    border-radius:50%;
    cursor:pointer;
    font-style: normal;
}
section.roi-section.bg-grey ul.horizontal > li ul.horizontal li label i:hover{background-color:#FE5000;color:#FFFFFF;}
section.roi-section select,
section.roi-section input[type="number"],
section.roi-section input[type="text"]{margin-top:10px;}
section.roi-section ul.horizontal > li.roi-result ul.horizontal li{width:53%;}
section.roi-section ul.horizontal > li.roi-result ul.horizontal li:nth-child(2){width:47%;}
section.roi-section ul.horizontal > li.roi-result ul.horizontal li:first-child{width:100%;margin-bottom:10px;}
section.roi-section .roi-result ul.horizontal li .button{text-align:center;float:left;}
section.roi-section #calc-button{
    position:relative;overflow:hidden;z-index:1;
    font-size:16px;
    display: block;
    background-color: transparent;
    background-color: #212721;
    color:#FFFFFF;
    white-space: nowrap;
    line-height: 40px;
    margin:15px 0 0 0;
    height:40px;
    padding: 0px 26px 0 26px;
    -webkit-appearance: none;
    -webkit-transition: all 0.5s ease;
   -moz-transition: all 0.5s ease;
     -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
        transition: all 0.5s ease;
    border-radius:4px;
    cursor:pointer;
    min-width:172px;
    text-align:center;
    z-index:2;
    max-width:160px;
}
section.roi-section #calc-button:hover{background-color:#FF0B64;}
section.roi-section #calc-button:after{
    content:'';position:absolute;left:-1px;top:-1px;
    background: #FE5000;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #FE5000, #FF0B64);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #FE5000, #FF0B64); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    height:42px;width:0;
    -webkit-transition: all 2s ease;
    z-index:2;
   -moz-transition: all 2s ease;
     -o-transition: all 2s ease;
    -ms-transition: all 2s ease;
        transition: all 2s ease;
}

section.roi-section #calc-button.calculating:after{width:calc(100% + 2px);}
section.roi-section #calc-button a{color:#FFFFFF;z-index:3;position:relative;line-height:40px;}
section.roi-section input[type="text"].calculated.focused{
    -webkit-box-shadow: inset 0 0px 1px rgba(254,80,0, 1), 0 0 50px rgba(254,80,0, 0.5);
    box-shadow: inset 0 0px 1px rgba(254,80,0, 1), 0 0 50px rgba(254,80,0, 0.5);
}
#val-open,
#result-new,
#result-add{cursor:default}
#currency{width:36px;margin-right:6px;float:left;}
.result-currency{
    width:24px;
    font-size:20px;
    padding:12px 3px 0 3px;
    float:left;
    -moz-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
     -ms-transition: all 0.5s ease;
         transition: all 0.5s ease;
}

#val-order{max-width:calc(100% - 42px);float:left;}
#val-open,
#result-new{max-width:calc(100% - 24px);float:left;}

section.roi-section label span{width:100%;clear:both;display:block;}

@media (max-width: 1200px){
    section.roi-section ul.horizontal > li{font-size:12px;}
    section.roi-section label{width:100%;clear:both;}
    section.roi-section ul.horizontal > li ul.horizontal li{float:left;width:50%;margin-bottom:23px;padding-right:20px;}
    section.roi-section ul.horizontal > li.roi-result ul.horizontal li:nth-child(2),
    section.roi-section ul.horizontal > li.roi-result ul.horizontal li{width:100%;margin-bottom:0px;padding:0;max-width:350px;}
    section.roi-section ul.horizontal h4{font-size:25px;}
    section.roi-section #calc-button:hover{background-color:#75787B;}
}

@media (max-width: 790px){
    section.roi-section ul.horizontal > li{font-size:10px;}
}

@media (max-width: 630px){
    section.roi-section ul.horizontal > li:first-child{width:83.33%;}
    section.roi-section ul.horizontal > li.roi-arrow{width:16.66%;min-height:400px;}
    section.roi-section ul.horizontal > li{width:100%;}
    section.roi-section ul.horizontal > li{font-size:14px;}
    section.roi-section ul.horizontal > li ul.horizontal li{float:left;width:50%;margin-bottom:23px;padding-right:20px;}
    section.roi-section ul.horizontal > li.roi-result ul.horizontal li{width:100%;margin-bottom:10px;}
    section.roi-section ul.horizontal h4{font-size:25px;}
    section.roi-section ul.horizontal > li.roi-arrow svg{
        -webkit-transform: rotate(90deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(90deg);  /* IE 9 */
                transform: rotate(90deg);  /* Firefox 16+, IE 10+, Opera */
                position:relative;
                top:auto;
                left:auto;
                margin-top:20px;
                -moz-transition: all 0.5s ease;
                  -o-transition: all 0.5s ease;
                 -ms-transition: all 0.5s ease;
                     transition: all 0.5s ease;
    }
    section.roi-section ul.horizontal > li.roi-arrow.top,
    section.roi-section ul.horizontal > li.roi-arrow.top2{
        padding-top:100px;
    }
    section.roi-section ul.horizontal > li.roi-arrow.mid2,
    section.roi-section ul.horizontal > li.roi-arrow.mid{
        padding-top:200px;
    }
    section.roi-section ul.horizontal > li.roi-arrow.bottom2,
    section.roi-section ul.horizontal > li.roi-arrow.bottom{
        padding-top:300px;
    }

    @media (max-width: 510px){
        section.roi-section ul.horizontal > li ul.horizontal li{float:left;width:90%;margin-bottom:23px;}
        section.roi-section ul.horizontal > li{font-size:16px;}
        section.roi-section ul.horizontal > li.roi-arrow.top{
            padding-top:100px;
        }
        section.roi-section ul.horizontal > li.roi-arrow.top2{
            padding-top:200px;
        }
        section.roi-section ul.horizontal > li.roi-arrow.mid{
            padding-top:300px ;
        }
        section.roi-section ul.horizontal > li.roi-arrow.mid2{
            padding-top:400px ;
        }
        section.roi-section ul.horizontal > li.roi-arrow.bottom{
            padding-top:590px;
        }
    }
    @media (max-width: 350px){
        section.roi-section ul.horizontal > li ul.horizontal li{width:100%;}
    }
}

section.strip{min-height:270px;}
section.text-slider h4,
section.strip-section h4{margin:10px 0 10px 0;font-size:22px;}
section.text-slider .paragraph h5,
section.strip-section .paragraph h5{font-weight:100;font-size:18px;margin-bottom:;}
section.text-slider h4 em,
section.strip-section h4 em{font-weight: 300;}
section.strip-section h4 strong em,
section.text-slider h4 strong em{font-weight: 500;}
section.text-slider .buttons,
section.strip-section .buttons{margin-bottom:10px;margin-top:15px;}

section.text-slider .section-header > h2{margin-bottom:0;}
section.text-slider .section-header {min-height:50px;}

section.text-slider .content-container{padding:60px 2% 40px 2%;}
section.text-slider.with-button .content-container{padding:40px 2% 40px 2%;}
section.text-slider.with-button ul.slick-dots{padding-top:0px !important;margin-top:20px;}

section.strip-section.bg-gradient .section-header p{color:#FFFFFF;}
section.strip-section .strip-bg.strip-bg-deep-sea{}

.aligncenter {margin:auto;}

 ul.slick-dots{
    display:block;
    position:relative;
    list-style:none;
    font-size:0;
    text-align:center;
    margin:0;
    padding:40px 0 0 0;
}
 ul.slick-dots li{
    display:inline-block;
    position:relative;
    margin:0 5px !important;
    padding:0;
    line-height:1.45em;
    vertical-align:top;
    font-size:0;
    width:15px !important;
    height:15px !important;
}
 ul.slick-dots li button{
    text-align:left;
    text-indent:-9999px;
    overflow:hidden;
    font-size:0;
    line-height:0;
    display:block;
    width:15px;
    height:15px;
    padding:0;
    cursor:pointer;
    color:transparent;
    border-radius:50%;
    border:2px solid #75787B;
    background-color:#75787B;
    outline:none;
}
.bg-gradient ul.slick-dots li button{border:2px solid #FFFFFF;background-color:transparent;}

ul.slick-dots li.slick-active button{border:2px solid #75787B;background-color:#FFFFFF;}
ul.slick-dots li button:hover{border:2px solid #FE5000;background-color:#FE5000;}

.bg-gradient ul.slick-dots li.slick-active  button{border:2px solid #FFFFFF;background-color:#FFFFFF;}
.bg-gradient ul.slick-dots li button:hover{border:2px solid #FFFFFF;background-color:#FFFFFF;}

/***************
Centered text
**************/
section.centredtext-section .content-container{max-width:1100px;}
section.centredtext-section .content-container h2{margin-top:0;}
.paragraph p {color:#75787B;}


/*************
Section Tools
*************/
section.tools .content-container{padding-bottom:0;}
section.tools form{margin:0;max-width:100%;}
section.tools .left{width:65%;}
section.tools .right{width:35%;}
section.tools h3,
section.tools h4,
section.tools .sf-input-radio{display:none;}
section.tools ul{
  display: block;
  position: relative;
  list-style: none;
  font-size: 0;
  margin: 0;
  padding: 0;
  width:100%;
}
section.tools ul li{
  display: inline-block;
  position: relative;
  font-size: 12px;
  margin: 0 20px 0 0;
  padding: 0;
  line-height: normal;
  vertical-align: top;
  text-transform:uppercase;
}
section.tools ul li label{
    color:#75787B;
    cursor:pointer;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    letter-spacing:1px;
    font-size:14px;
}
section.tools ul > li label:hover{color:#FE5000;}
section.tools ul > li.sf-option-active label{color:#FE5000;}
section.tools ul > li.sf-option-active label:hover{color:#75787B;}
section.tools .searchandfilter,
section.tools .sf-field-search,
section.tools .sf-field-search label,
section.tools .sf-field-search .sf-input-text{width:100%;}
section.tools .searchandfilter{padding-bottom:10px;}

section.tools .searchandfilter li[data-sf-field-input-type=radio] label{padding:0;}
section.tools .sf-input-text{border-color:#D1D1D1;position:relative;}
section.tools .sf-input-text:focus{border-color:#FE5000;}
section.tools .sf-input-text{
    background-image:url('../img/svgs/icons/search.svg');
    background-position:calc(100% - 10px) center;
    background-size:28px 28px;
    background-repeat: no-repeat;
}

/***********
BLOG
************/

section.articles-section{}
section.vacancies-section .articles,
section.articles-section .articles{
    display: block;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    width:100%;
}
section.vacancies-section .articles article,
section.articles-section .articles article{
    display: inline-block;
    position: relative;
    margin: 0 10px 20px 10px;
    padding: 0;
    line-height: normal;
    vertical-align: top;
    width:calc(33.33% - 24px);
    box-shadow:3px 3px 4px rgba(0,0,0,0.07);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
section.articles-section .articles article .article-image{
    z-index:2;height:250px;width:100%;position:relative;overflow:hidden;
    background: rgba(255,11,100,1);
    background: -webkit-linear-gradient(left, rgba(255,11,100,1), rgba(254,80,0, 1)); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, rgba(255,11,100,1), rgba(254,80,0, 1)); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, rgba(255,11,100,1), rgba(254,80,0, 1)); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, rgba(255,11,100,1), rgba(254,80,0, 1)); /* Standard syntax */
}
section.articles-section .articles article .article-image img{min-height:100%;width:100%;position:absolute;top:0;left:0;}
section.articles-section .articles article:hover .article-image img,
section.articles-section .articles article:hover .article-image img{transform: scale(1.1);opacity:0.5;}

section.articles-section .articles article .article-category{
    position:relative;z-index:3;margin:-40px auto 0 auto;background-color:#FFFFFF;width:100%;max-width:150px;padding:10px;text-align:center;min-height:70px;
}
section.vacancies-section .articles article .vacancy-category h5,
section.articles-section .articles article .article-category h5{letter-spacing:1px;margin:0;font-size:13px;color:#FE5000;padding-top:6px;text-transform:uppercase;}
section.articles-section .articles article .article-content h2{font-weight:normal;margin-top:0;font-size:24px;text-transform: none;}
section.articles-section .articles article .article-content h2 a:link{color:#212721;}
section.articles-section .articles article .article-content h2 a:visited{color:#212721;}
section.articles-section .articles article .article-content h2 a:hover{color:#FE5000;}
section.articles-section .articles article .article-content .paragraph p{color:#75787B;font-size:14px;text-transform: none;}
section.articles-section .articles article .article-content .article-date{
    position:absolute;bottom:0;left:0;width:100%;padding:10px 0 10px 0;color:#D1D1D1;letter-spacing:1px;background-color:#FFFFFF;
}
section.articles-section .articles article .article-content .article-date p{color:#D1D1D1;}
section.articles-section .articles article .article-content{padding:0 3% 0 3%;min-height:380px;}

section.parent.articles-section .articles article:first-child{width:calc(100% - 24px);}
section.parent.articles-section .articles article:first-child .article-details,
section.parent.articles-section .articles article:first-child .article-image{width:50%;float:left;margin:0;height:391px;}
section.parent.articles-section .articles article:first-child .article-details{background-color:#FFFFFF;position:relative;}
section.parent.articles-section .articles article:first-child .article-category{margin:30px auto 0 auto;max-width:300px;min-height:40px;}
section.parent.articles-section .articles article:first-child .article-content h2{font-size:22px;}
section.parent.articles-section .articles article:first-child .article-content{padding:0 6% 0 6%;min-height:100px;}

/***********
Blog -single
***********/

section.articles-section .article-side .articles article{width:100%;margin: 0 0 20px 0;}
section.articles-section .article-main{width:68%;}
section.articles-section .article-side{width:calc(32% - 30px);margin-left:20px;}
section.articles-section .article-main .image{background-color:#FFFFFF;}
section.articles-section .article-main .image img{width:100%;}
section.articles-section .article-main > div{box-shadow:3px 3px 4px rgba(0,0,0,0.07);margin:0 0 20px 0;}
section.articles-section .article-main .image{margin: 0;}
section.articles-section .article-side > div{margin-bottom:20px;}

section.articles-section .article-side .newsletter,
section.articles-section .article-side > .share{padding:20px;text-align:left;}
section.articles-section .article-side .articles article .article-content{min-height:100px;padding-bottom:100px;}

section.articles-section .share-this li{width:20%;}
section.articles-section .share-this .graphic{
    width:100%;background-size:30px 30px;clear:both;
    -webkit-transition: all 0.5s ease;
   -moz-transition: all 0.5s ease;
     -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
        transition: all 0.5s ease;
}
section.articles-section .article-footer .share-this .graphic{background-size:40px 40px;}
section.articles-section .share-this .graphic:hover{opacity:0.5;}

section.articles-section .article-side .newsletter,
section.articles-section .article-side > .share{box-shadow:3px 3px 4px rgba(0,0,0,0.07);}

section.articles-section .article-side input[type="email"],
section.articles-section .article-side input[type="text"]{background-color:#F7F7F7;border:1px solid #F7F7F7;}
section.articles-section .article-side input[type="email"]:focus,
section.articles-section .article-side input[type="text"]:focus{background-color:#FFFFFF;border:1px solid #FE5000;}
section.articles-section .article-side input[type="submit"]{margin:0;}
section.articles-section .article-side form{padding:0;}
section.articles-section .article-side .newsletter p,
section.articles-section .share h5{font-size:14px;font-weight:normal;margin:0 0 15px 0;}
section.articles-section .article-main .article-info h5,
section.articles-section .article-main .article-info h6{color:#FE5000;text-transform:uppercase;font-size:12px;margin:0;}
section.articles-section .article-main .article-info h6{color:#D1D1D1;letter-spacing:1px;}
section.articles-section .article-main .article-info{min-height:40px;}
section.articles-section .article-footer > .share,
section.articles-section .article-main .article-content{padding:30px;}
section.articles-section .article-main .article-footer{position:relative;width:calc(100% - 320px);margin:0 auto 20px auto;}
section.articles-section .article-main .article-footer .prev-next a{
    position:absolute;top:30px;width:160px;
    text-align:center;
    font-weight:normal;
    padding-bottom:100px;
}
section.articles-section .article-main .article-footer .prev-next a .graphic{width:100%;height:50px;background-position:center center;margin-top:20px;}
section.articles-section .article-main .article-footer .prev-next.next a{right:-160px;}
section.articles-section .article-main .article-footer .prev-next.next a .graphic{background-image:url('../img/svgs/arrow-large-right-black.svg');}
section.articles-section .article-main .article-footer .prev-next.prev a{left:-160px;}
section.articles-section .article-main .article-footer .prev-next.prev a .graphic{background-image:url('../img/svgs/arrow-large-left-black.svg');}

section.articles-section .article-main .article-footer .prev-next.next a:hover .graphic{background-image:url('../img/svgs/arrow-large-right-orange.svg');}
section.articles-section .article-main .article-footer .prev-next.prev a:hover .graphic{background-image:url('../img/svgs/arrow-large-left-orange.svg');}

section.articles-section .article-main .article-footer .prev-next a{color:#212721;}
section.articles-section .article-main .article-footer .prev-next a:visited{color:#212721;}
section.articles-section .article-main .article-footer .prev-next a:hover{color:#FE5000;}

/************
Vacancies section
************/

section.vacancies-section article .vacancy{padding:30px;min-height:350px;}
section.vacancies-section .articles{padding-top:40px;}
section.vacancies-section .articles article h2{min-height:56px;}
section.vacancies-section .articles article h4,
section.vacancies-section .articles article h2{margin:25px auto 0 auto;font-size:24px;text-transform: none;max-width:260px;}
section.vacancies-section .articles article h4{color:#75787B;font-size:16px;max-width:135px;margin:0 auto 0 auto;}
section.vacancies-section .articles article .button{margin-top:20px;}
section.vacancies-section .graphic.flag{width:100%;background-size:contain;height:40px;margin:20px 0 20px 0;}
section.vacancies-section .article-side .articles{padding-top:0;}

/************
Tweets
*************/
.tweets ul{width:90%;margin: 0 auto 50px auto;padding-bottom:50px;}
.tweets ul.horizontal li{ width:calc(33.33% - 20px);margin:auto;margin:0 10px 0 10px;min-height:200px;}
.tweets ul.horizontal li:nth-child(4n){clear:both;}
.tweets ul.horizontal li .tweet{padding:10px;}
.twitter-tweet{display:none;}

/************
ICONS
*************/

.icon-container > .icon{display: block;}
.icon-container > .icon > img{
    display: block;
    width: 100%;
    height: auto !important;
}
.icon.graphic{
    background-repeat: no-repeat;
    background-position: center 40%;
    background-size: 120px 120px !important;
    width:100%;
    height:80%;
    margin:0 auto 0 auto;
    position:absolute;
    top:0;
    left:0;
    overflow:visible;
}
.icon-container.with-button .icon.graphic{
    background-position:center 20px ;
    background-size: 100px 100px !important;
    height:70%;
}

.icon-container .h4{position:absolute;bottom:38px;width:100%;}
.icon-container.with-button .h4{bottom:80px;}

.icon-container .button{position:absolute;width:100%;bottom:20px;left:0;}
.icon-container .button a{font-size:16px;line-height:34px;height:34px;padding:0 15px 0 15px;min-width:100px;}

.icon-container h4{font-size:20px;text-align:center;margin:auto;max-width:170px;line-height:1.2;}
.icon-container a h4{color:#212721;}
.icon-container a:hover h4{color:#FE5000;}

.items.icons  > ul{margin-left:0;}
section.icons-section.circles-outlined::before{content:'';width:100%;position:absolute;left:0;bottom:189px;background-color:#75787b;height:1px;}
section.icons-section.circles-outlined .icons ul.horizontal li .icon-container{border:1px solid #75787b;}
.icons ul.horizontal li .icon-container{
    position:relative;
    border:1px solid #FFFFFF;
    border-radius:50%;
    background-color:#FFFFFF;
    width:100%;
    height:auto;
    overflow:hidden;
    margin:auto;
}
.icons ul.horizontal li{margin:20px 0.5% 20px 0.5%;min-width:220px;max-width:260px;}
.sidr-class-graphic,
.graphic{
    display: inline-block;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    text-align: left;
    text-indent: -9999px;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    vertical-align: middle;
}
.contact-details .graphic,
footer .social .graphic, .contact-details .graphic{width:15px;height:20px;margin-right:5px;}

header .social .graphic{
    width:100%;height:30px;margin:0;background-position:center center;background-size:24px 24px;text-indent: 0;
}
header .social ul li{width:38px;height:30px;overflow:hidden;}
header .social ul li a{color:transparent;font-size:0;}

img.spacer{width:100%;position:relative;top:0;left:0;right:0;bottom:0;}

/*********************
Footer
*********************/

footer .content-container{padding:30px 3% 30px 3%;position:relative;}
#footer-logo{
    display:inherit;
    width: 100%;
    height: 150px;
    float:left;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin-left:0;
}
.emotions-badge{
    position:absolute;
    left:20px;
    bottom:80px;
    width:130px;
    height:130px;
    background-size:contain;
    background-position: left top;
    background-repeat:no-repeat;
    background-image: url('../img/emotions-matter.png');
    z-index:6;
}
footer h5{margin-top:16px;}
#footer-logo a{
    display: block;
    width: 100%;
    height:100%;
    background-size:80px 128px;
    background-position: left top;
    background-repeat:no-repeat;
    background-image: url('../img/logos/logo-no-caption.svg');
    margin:auto;
    position:relative;
}
footer,
footer p{color:#FFFFFF;font-size:14px;text-align:left;}

footer a h4,
footer.bg-black h4 a,
footer.bg-black h4{color:#FE5000;font-size:14px;text-align:left;margin:18px 0 0 0;}
footer button a,
footer input[type="submit"]{font-size:14px;}

footer .content-container > ul.horizontal > li{width:55%;margin:0;}
footer .content-container > ul.horizontal > li:first-child{max-width:160px;}
footer .content-container > ul.horizontal > li:last-child{width:calc(45% - 170px);}

footer ul.horizontal li.footer-nav ul.horizontal > li{width:33.33%;display:block;float:left;}
footer ul.horizontal li.footer-nav ul.horizontal > li:nth-child(7),
footer ul.horizontal li.footer-nav ul.horizontal > li:nth-child(4){clear:both;}
footer ul.horizontal li.footer-nav ul.horizontal li li{margin:10px 0 10px 0;}
footer ul.horizontal li.footer-nav ul.horizontal ul.vertical > li{color:#FE5000;}
footer ul.horizontal li.footer-nav ul.horizontal ul.vertical li{line-height:1.2;padding:0;font-size:14px;}
footer ul.horizontal li.footer-nav ul.horizontal ul.vertical > li > a:link{color:#FE5000;}
footer ul.horizontal li.footer-nav ul.horizontal ul.vertical > li > a:visited{color:#FE5000;}
footer ul.horizontal li.footer-nav ul.horizontal ul.vertical > li > a:hover{color:#FFFFFF;}

footer ul.horizontal li.newsletter p{margin:10px 0 10px 0;float:left;width:100%;}
footer ul.horizontal li.newsletter p:first-child{margin:20px 0 10px 0;}

footer ul.horizontal .social li{width:30.33%;max-width:40px;margin:20px 0 10px 0 !important;}
/*footer ul.horizontal .social li:after{height:40px;content:'';width:1px;background-color:#75787B;position:absolute;top:0;right:16.6%;}
footer ul.horizontal .social li:last-child:after{display:none;}*/
footer ul.horizontal .social li .graphic{float:left;width:40px;height:40px;background-size:40px 40px;}
footer ul.horizontal .social li a .graphic:hover{opacity:0.5;}
footer ul.horizontal .social li.twitter .graphic{background-image:url('../img/svgs/icons/twitter.svg');}
footer ul.horizontal .social li.linkedin .graphic{background-image:url('../img/svgs/icons/linkedin.svg');}
footer ul.horizontal .social li.facebook .graphic{background-image:url('../img/svgs/icons/facebook.svg');}

footer .shortcode p{margin:0;}
footer form input[type="submit"]{margin-top:10px;}

footer ul.horizontal li.footer-nav ul.horizontal.copyright > li{padding-top:13px;width:100%;clear:both;display:block;font-size:14px;}

#newsletterPOP{
    position:fixed;right:-500px;bottom:50px;
    -webkit-transition: all 0.5s ease;
   -moz-transition: all 0.5s ease;
     -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
        transition: all 0.5s ease;
        width:90%;
        max-width:400px;
        z-index:500;
        border:4px solid #D1D1D1;
        border-radius:4px;
        box-shadow:0 0 10px rgba(0,0,0, 0.2);
}
#newsletterPOP.activeForm{bottom:50px;right:50px;}
#newsletterPOP .newsletterPOP-cont > div{padding:30px 30px 30px 30px;}
#newsletterPOP form{padding:0;}
#newsletterPOP h4{margin:0;font-size:20px;display:none;}
#newsletterPOP input[type="submit"]{margin:0;padding:0 15px 0 15px;min-width:140px;font-size:14px;}
#newsletterPOP .closePOP {
  position: absolute;
  right: 10px;
  top:10px;
  width: 32px;
  height: 32px;
  opacity: 0.3;
  cursor:pointer;
  -webkit-transition: all 1s ease;
 -moz-transition: all 1s ease;
   -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
      transition: all 1s ease;
}
#newsletterPOP .closePOP:hover  {
  opacity: 1;
}
#newsletterPOP .closePOP:before, #newsletterPOP .closePOP:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: #212721;
}
#newsletterPOP .closePOP:before {
  transform: rotate(45deg);
}
#newsletterPOP .closePOP:after {
  transform: rotate(-45deg);
}
#newsletterPOP h4{margin:0;font-size:18px;display:none;width:calc(100% - 40px);}
h4.popupHeader{display:none;}
#newsletterPOP  h4.popupHeader{display:block;}

#newsletterPOP .g-recaptcha{clear:both;padding:0px 0 10px 0;}

a.topIcon{
    overflow:hidden;
    display:none;
    position:absolute;
    top:44px;
    right:26px;
    width:52px;
    height:52px;
    border-radius:50%;
    text-align:center;
    z-index:8;
    background-color:#FE5000;
}
a.topIcon .graphic{
    width:100%;
    height:100%;
    background-size:80%;
    background-repeat: no-repeat;
    background-position: center center;
    background-image:url('../img/svgs/arrow-up.svg');
}
 a.topIcon:hover{background-color:#FF0B64;}

/*------------------------------
ROWS
------------------------------*/

.hybrid-main{
  background-color: #fff;
  box-shadow: 3px 3px 4px rgba(0,0,0,0.07);
  margin: 0 0 20px 0;
}

.hybrid-row{
  margin: 0 !important;
  box-shadow: 0 0 0 rgba(0,0,0,0) !important;
}

.hybrid-row > div{
    padding: 30px;
}

/*Blue-green*/

.blue-green section.cards-section ul.horizontal li{border:3px solid #BFE1C4;width:48%;}

.blue-green main section.cards-section .card-sub p{color:rgba(92,185,184,1);}

main section.bg-gradient.blue-green,
.blue-green main section.bg-gradient{
    background: rgba(92,185,184,1);
    background: -webkit-linear-gradient(left, rgba(92,185,184,1), rgb(182,222,189)); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, rgba(92,185,184,1), rgb(182,222,189)); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, rgba(92,185,184,1), rgb(182,222,189)); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, rgba(92,185,184,1), rgb(182,222,189)); /* Standard syntax */
}

.blue-green main section input[type="submit"],
.blue-green main section .button a{
    background: rgba(92,185,184,1);
    background: -webkit-linear-gradient(left, rgba(92,185,184,1), rgb(182,222,189)); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, rgba(92,185,184,1), rgb(182,222,189)); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, rgba(92,185,184,1), rgb(182,222,189)); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, rgba(92,185,184,1), rgb(182,222,189)); /* Standard syntax */
    border:#FFFFFF 2px solid;
}

.blue-green main section input[type="submit"]:hover,
.blue-green main section .button a:hover{
    background-color: #212721;
    color:#FFFFFF;
    border:1px solid #212721;
}

section.blue-green.bg-gradient .button a{color:rgba(92,185,184,1);}
.blue-green main section.bg-gradient .button a{background:transparent;color:#FFFFFF;border:1px solid #FFFFFF;}
.blue-green main section .alt.button a{
    color:rgba(92,185,184,1);
    border:1px solid #FFFFFF;
    background-color:#FFFFFF;
}

.blue-green main section .alt.button a:hover{
    color:#212721;
    border:1px solid #212721;
}

.blue-green ul.slick-dots li button{
   border:2px solid rgba(92,185,184,1);
   background-color:rgba(92,185,184,1);
}

.blue-green ul.slick-dots li.slick-active button{border:2px solid rgb(182,222,189); background-color:rgba(255,255,255,1);}
.blue-green ul.slick-dots li button:hover{border:2px solid rgb(182,222,189); background-color:rgba(255,255,255,1);}

section.emotions-matter{position:relative;padding-top:180px;}
section.emotions-matter::before{
    width:100%;
    height:206px;
    left:0;
    top:0;
    position:absolute;
    z-index:5;
    background-size:100%;
    background-position:center top;
    background-repeat:no-repeat;
    background-image: url('../img/svgs/animations/large/brain-circle2.svg');
    content:'';
}
section.emotions-matter h2{margin-bottom:5px;}
section.emotions-matter h3{font-size:26px;margin-top:0;}
section.emotions-matter .button a{
    background: #FE5000;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #FE5000, #FF0B64);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #FE5000, #FF0B64); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

/*------------------------------
RESPONSIVENESS
------------------------------*/

@media (max-width: 1600px){
    section .base-animation .graphic,
    section .header-animation .graphic{
        background-position:bottom center;
        background-size: contain;
        max-width:1558px;
        height:250px;
        z-index:2;
        width:100%;
        margin:auto;
    }
}
@media (max-width: 1320px){

    .items > ul > li,
    .items.cols-four > ul > li{
        width: 50%;
    }

    .items.icons  > ul > li,
    .items.icons.cols-four > ul > li{
        width: 33.33%;
    }

    section.icons-section.circles-outlined::before{display:none;}
}
@media (max-width: 1150px){
    #main-navigation > ul.nav > li > a{
      font-size: 14px;
  }
  section.image-section .image-container{
      background-attachment: scroll;
  }
  section.articles-section .articles article .article-image img{width:auto;max-width:200%;min-height:100%;left:-25%;}
  main section .content-container{padding:40px 4% 40px 4%;}
  header .content-container {padding:0;}
  section.cards-section .card-content .stat{font-size:40px;}
  section.cards-section .card-content{padding:30px 5% 40px 5%;}
  section.cards-section .card-content .card-sub p{font-size:24px;}
  section.cards-section .card-content .button{
      -webkit-transform: scale(0.8);  /* Chrome, Opera 15+, Safari 3.1+ */
      -ms-transform: scale(0.8);  /* IE 9 */
          transform: scale(0.8);  /* Firefox 16+, IE 10+, Opera }*/
}
@media (max-width: 1000px){

    #main-navigation{display:none;}
    .hamburger{display:inherit;}
    header{box-shadow:0 0 10px rgba(0,0,0,0.2);height:135px;}
    h2#logo{width: 300px;height: 90px;}
    h2#logo a{margin:10px 20px 0 20px; max-width:166px;}
    h2#logo .st1{opacity:0;}
    .modal-inner{
        width:90%;
        max-width:1000px;
        left:5%;
    }

    .emotions-badge{
        left:20px;
        bottom:auto;
        top:200px;
    }

    footer .content-container{width:92%;margin:auto;max-width:700px;}
    footer .content-container > ul.horizontal > li{width:100%;margin:auto;}
    footer .content-container > ul.horizontal > li:first-child{max-width:250px;position:absolute;top:0;left:0;}
    footer .content-container > ul.horizontal > li:last-child{width:calc(100% - 250px);position:absolute;top:0;right:0;}
    footer .content-container > ul.horizontal > li.footer-nav{padding-top:360px;}

    section.articles-section .articles article .article-content{padding:0 4% 0 4%;min-height:440px;}
    section.articles-section .article-main .article-footer{width:100%;}
    section.articles-section .article-footer .prev-next{display:none;}

    #newsletterPOP{bottom:20px;}
    #newsletterPOP.activeForm{bottom:20px;right:20px;}

    main section.mobile-slider .content-container{padding:30px 0 30px 0;}
    main section.mobile-slider .slider-header{padding:0px 4% 0px 4%;}
    section.cards-section .content-container{padding:30px 0 30px 0;}
    .over1000{display:none;}
}


@media (max-width: 890px){

    .slideshow-controls{display: none;}

    section.cards-section .card-content .card-sub p{font-size:22px;margin-bottom:0;}
    section.cards-section .card-content .button a{font-size:16px;padding:0 10px 0 10px;}
    section.cards-section .card-content .stat{font-size:40px;}
    section .header-animation.main .graphic{height:300px;background-size:160%;}
    .items.icons  > ul > li,
    .items .cols-four > ul.horizontal > li,
    .items.icons.cols-four > ul > li,
    .items .cols-three > ul.horizontal > li,
    .items.icons .cols-three > ul > li,
    .items .cols-two > ul.horizontal > li,
    .items.icons .cols-two > ul > li{
        width: 100%;
    }

    .items .cols-four > ul.horizontal > li{width:calc(50% - 52px);}
    .items .cols-four > ul.horizontal > li:nth-child(even):before{display:none;}

    section.splitcols-section .columns.two.ratio-50-50 .column{width:100%;}
    section.splitcols-section .columns.two > .column:first-child{float:none;margin-right:0;}
    section.splitcols-section .columns.two > .column:nth-child(2){float:none;margin-left:0;padding:20px 0 20px 0;}

    section.splitcols-section .columns.two.ratio-60-40 > .column:first-child{width:100%;}
    section.splitcols-section .columns.two.ratio-60-40 > .column:nth-child(2){width:100%;}

    section.splitcols-section .columns.two.ratio-40-60 > .column:first-child{width:100%;}
    section.splitcols-section .columns.two.ratio-40-60 > .column:nth-child(2){width:100%;}

    section.vacancies-section .articles article,
    section.articles-section .article-side .articles article,
    section.articles-section .articles article{
        width:calc(50% - 22px);
    }
    section.articles-section .articles article .article-image img{width:100%;position:absolute;top:0;left:0;}
    section.parent.articles-section .articles article:first-child{width:calc(100% - 22px);}
    section.parent.articles-section .articles article:first-child .article-details,
    section.parent.articles-section .articles article:first-child .article-image{height:430px;}
    section.parent.articles-section .articles article:first-child .article-image img{width:auto;min-width:100%;position:absolute;top:0;left:0;}

    section.articles-section .article-side .articles article:nth-child(3){display:none;}
    section.articles-section .article-side .articles article{margin: 0 10px 20px 10px;}
    section.articles-section .article-main,
    section.articles-section .article-side{width:100%;margin-left:0px;}
    section.articles-section .article-side .share{display:none;}
    section.articles-section .article-side.right{text-align:center;}
    section.cards-section ul.horizontal li{
        margin:20px 0.5% 20px 0.5%;
        min-height:380px;
    }
    section.cards-section .card-content .button{
        -webkit-transform: scale(1);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: scale(1);  /* IE 9 */
            transform: scale(1);  /* Firefox 16+, IE 10+, Opera }*/
    }
    section.header .content-container{padding-top:180px;}

}

@media (max-width: 700px){
    section.text-section .text-main,
    section.text-section .text-side{float:none;width:100%;}
    section.text-section .text-main{;margin:0;}
    .items > ul > li,
    .items .cols-four > ul > li,
    .items .cols-three > ul > li,
    .items .cols-two > ul > li{
        width: 100%;
    }
    section.logos-section .content-container{padding:0 50px 20px 50px;}
    section.cards-section .card-content .card-sub p{font-size:20px;margin-bottom:0;}
    section.cards-section .card-content .stat{font-size:30px;}
    section.cards-section .card-content .button a{font-size:14px;padding:0 10px 0 10px;}
    section.cards-section .content-container{padding:40px 0 20px 0;}
    section.cards-section.items .cols-three > ul.horizontal > li{width:80%;margin:20px auto 20px auto;}
    section.logos-section.large .content-container{padding:40px 40px 30px 40px;}
    section .section-header{padding:0 4% 0 4%;}
    section .section-header h3{font-size:30px;}
    .section-header h2,
    .section-header h2.h1,
    .section-header h1{font-size:30px;}
}

@media (max-width: 620px){

    section.vacancies-section .articles article,
    .blue-green section.cards-section ul.horizontal li,
    section.cards-section ul.horizontal li{margin:10px 0.5% 10px 0.5%;}
    section.cards-section .card-content{padding:30px 2% 20px 2%;}
    section.cards-section .card-content .card-sub p{font-size:25px;}
    section.cards-section .card-content .stat{font-size:40px;}
    section.cards-section .card-content .button a{font-size:16px;padding:0 20px 0 20px;}
    footer ul.horizontal li.footer-nav ul.horizontal > li{width:50%;display:block;float:left;}
    footer ul.horizontal li.footer-nav ul.horizontal > li:nth-child(7),
    footer ul.horizontal li.footer-nav ul.horizontal > li:nth-child(4){clear: none;}
    footer ul.horizontal li.footer-nav ul.horizontal > li:nth-child(3){clear:both;}
    section.parent.articles-section .articles article:first-child,
    section.articles-section .articles article{margin:0 0 20px 0;width:100%;}
    section.parent.articles-section .articles article:first-child .article-details,
    section.parent.articles-section .articles article:first-child .article-image,
    section.articles-section .articles article .article-image{width:100%;float:none;height:auto;min-height:80px;}
    section.parent.articles-section .articles article:first-child .article-image img,
    section.articles-section .articles article .article-image img{max-width:100%;left:0;position:relative;height:auto;min-height:80px;min-width:250px;}
    section.parent.articles-section .articles article:first-child .article-content,
    section.articles-section .articles article .article-content{padding:0 3% 0 3%;min-height:120px;padding-bottom:60px;}
    section.parent.articles-section .articles article:first-child .article-category,
    section.articles-section .articles article .article-category{max-width:260px;margin:-40px auto 0 auto;min-height:80px;}
    section.parent.articles-section .articles article:first-child .article-content h2{font-size:18px;}
    section.articles-section .article-side .articles{display:none;}
    section.tools .left{width:100%;}
    section.tools .right{width:100%;}
    section.tools .sf-field-taxonomy-subject,
    section.tools .sf-field-category{width:100%;margin:0;}
    section.tools .sf-field-taxonomy-subject ul,
    section.tools .sf-field-category ul{text-align:center;}
    section.tools .sf-field-taxonomy-subject ul li,
    section.tools .sf-field-category ul li{padding: 0 10px 0 10px;}
}
@media (max-width: 600px){
    /*.items.items-icons ul.horizontal  li.slick-slide.slick-current:before{display:none;}*/
}

@media (max-width: 550px){
    footer .content-container > ul.horizontal > li:first-child{width:180px;}
    footer .content-container > ul.horizontal > li:last-child{width:calc(100% - 180px);}
    section .header-animation.main .graphic{height:300px;background-size:1400px;}
    section.triangle-section .content-container{padding:0;}
    section.triangle-section .triangle{overflow:visible;}
    section.triangle-section .triangle h3{padding-top:70px;font-size:40px;}
    section.triangle-section .triangle h4{margin-bottom:0;}
    header > .header-upper .right,
    header > .header-upper ul.horizontal {width:100%;}
    header > .header-upper ul.horizontal li{width:50%;}
    header > .header-upper .button a{
        color: rgba(255,255,255,1);
        min-width:160px;
        padding:0px;
        width:100%;
    }
    .pagination .page-numbers{display:none;}
    .pagination .page-numbers.current,
    .pagination .page-numbers:nth-child(2),
    .pagination .page-numbers:nth-last-child(2),
    .pagination .page-numbers:last-child,
    .pagination .page-numbers:first-child{display:inline-block;}
    section.articles-section .article-info .right{float:none;text-align:left;width:100%;clear:both;}
    section.articles-section .article-info .right.align-right h6{text-align:left;padding:10px 0 0px 0;}

    #tip-content p {max-width:calc(100% - 90px);margin:10px auto 15px auto;}
    #tip-content span{position:absolute;left:5px;top:30px;}
    #tip-content span:nth-child(2){left:auto;right:5px;}

    section.line .content-container{padding:10px 2% 10px 2%;}
    section.text-slider .section-header h2{font-size:28px;}
    .emotions-badge{left:10px;}

    ul.button-group > li{
      margin-right: auto;
      margin-bottom: 10px;
      display:block;
    }

}
@media (max-width: 450px){
    .sidr-open header .content-container{pointer-events:none;}
    footer .content-container > ul.horizontal > li.footer-nav h4,
    footer .content-container > ul.horizontal > li.footer-nav ul.vertical{display:none;}
    footer .content-container > ul.horizontal > li.footer-nav ul.social{display:block;width:100%;}
    footer .content-container > ul.horizontal > li.footer-nav{padding-top:180px;}
    section .base-animation .graphic.footer{height:100px;}
    ul.horizontal.buttons li{margin:0px;clear:both;}
    section.triangle-section .triangle{padding-top:60px;height:230px;}
    section.triangle-section .triangle h3{padding-top:40px;font-size:40px;}
    section.contact-section input[type='submit']{font-size:12px;}

    #newsletterPOP{
        position:fixed;right:0px;bottom:-600px;
            width:100%;
            max-width:450px;
            z-index:500;
            border:0px solid #D1D1D1;
            border-radius:0;
            box-shadow:0 0 10px rgba(0,0,0, 0.4);
    }
    #newsletterPOP.activeForm{bottom:0px;right:0px;left:0;}

    .items .cols-four > ul.horizontal > li{width:calc(100% - 52px);}
    .section-header p{font-size:17px;}
    section.header .content-container{padding:170px 0 0px 0;}
    .emotions-badge{
        left:auto;
        right:30px;
        bottom:40px;
        top:auto;
        width:120px;
        height:120px;
    }
}
@media (max-width: 405px){
    footer .content-container > ul.horizontal > li:first-child{width:100%;}
    footer .content-container > ul.horizontal > li:last-child{padding-top:160px;width:100%;}
    footer .content-container > ul.horizontal > li.footer-nav{padding-top:500px;}
    a.topIcon{display:block;}
    section.accordion-section .accordion-item h3{font-size:16px;}
    section.contact-section .locations ul.horizontal li{width:100%;}
    section.contact-section .locations ul.horizontal li:first-child{margin-right:0;}
    section.header .content-container{padding-top:160px;}
    .section-header{min-height:60px;}
    .section-header h2.h1,
    .section-header h1{font-size:28px;padding:0 10% 0 10%;}
    section.header .button{margin-top:30px;}
    section.header .section-header p{font-size:16px;}
    section.triangle-section .triangle h4{font-size:18px;}
    section.header .content-container ul.button-group li .button a{
        font-size:14px;
        line-height: 40px;
        height: 42px;
        padding: 0px 20px 0 20px;
        cursor:pointer;
        min-width:140px;
    }
    section.header .content-container ul.button-group{padding-top:15px;}
    section.cards-section .card-content .card-sub p{font-size:20px;}
}
@media (max-width: 350px){
    section.header .content-container ul.button-group li .button a{
        padding: 0px 15px 0 15px;
        min-width:120px;
    }
    .emotions-badge{
        right:10px;
        bottom:40px;
    }
}
