/**
 * Global Reset of all HTML Elements
 *
 * Resetting all of our HTML Elements ensures a smoother
 * visual transition between browsers. If you don't believe me,
 * try temporarily commenting out this block of code, then go
 * and look at Mozilla versus Safari, both good browsers with
 * a good implementation of CSS. The thing is, all browser CSS
 * defaults are different and at the end of the day if visual
 * consistency is what we're shooting for, then we need to
 * make sure we're resetting all spacing elements.
 *
 */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700');
@import url('https://fonts.googleapis.com/css?family=Lato:100,300,400,600,700');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700');
@import url('https://fonts.googleapis.com/css?family=Droid+Serif');
@import "../less/pure/base.css";
@import "../less/pure/grids.css";
@import "../less/pure/grids-responsive.css";
@import "../less/pure/push-pull.css";
@import "../js/src/libs/owl-carousel/owl.carousel.css";
@import "../js/src/libs/owl-carousel/owl.theme.css";
html,
body {
  border: 0;
  font-family: "Helvetica-Neue", "Helvetica", Arial, sans-serif;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
div,
span,
object,
iframe,
img,
table,
caption,
thead,
tbody,
tfoot,
tr,
tr,
td,
article,
aside,
canvas,
details,
figure,
hgroup,
menu,
nav,
footer,
header,
section,
summary,
mark,
audio,
video {
  border: 0;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cit,
code,
del,
dfn,
em,
ins,
q,
samp,
small,
strong,
sub,
sup,
b,
i,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
legend,
label {
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}
article,
aside,
canvas,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
audio,
video {
  display: block;
}
table {
  border-collapse: separate;
  border-spacing: 0;
}
table caption,
table th,
table td {
  text-align: left;
  vertical-align: middle;
}
a img {
  border: 0;
}
:focus {
  outline: 0;
}
.opensans {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
}
.lato {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
}
.montserrat {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
}
.droid {
  font-family: "Droid Serif", Times, serif;
}
/*!
 *  Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('../font-awesome-4.6.3/fonts/fontawesome-webfont.eot?v=4.6.3');
  src: url('../font-awesome-4.6.3/fonts/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'), url('../font-awesome-4.6.3/fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2'), url('../font-awesome-4.6.3/fonts/fontawesome-webfont.woff?v=4.6.3') format('woff'), url('../font-awesome-4.6.3/fonts/fontawesome-webfont.ttf?v=4.6.3') format('truetype'), url('../font-awesome-4.6.3/fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
html {
  background-color: #eef0f1;
}
#outer {
  max-width: 1460px;
  margin: 0 auto;
  border-left: 10px solid white;
  border-right: 10px solid white;
}
@media (max-width: 1460px) {
  #outer {
    border-left: none;
    border-right: none;
  }
}
.mainbackground {
  background-color: white;
}
a:not(.imgcover) {
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.smartphone_only {
  display: none;
}
@media (max-width: 768px) {
  .mobile_hidden {
    display: none !important;
  }
}
@media (min-width: 568px) {
  .mobile_only {
    display: none !important;
  }
}
@media (max-width: 568px) {
  .smartphone_hidden {
    display: none !important;
  }
  .smartphone_only {
    display: block !important;
  }
}
section.cta_newsletter {
  display: table;
  background-color: #0072BC;
  position: fixed;
  bottom: 40px;
  right: -140px;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 20px;
  -webkit-border-top-left-radius: 20px;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 20px;
  -moz-border-radius-topleft: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border-top: 1px solid white;
  border-left: 1px solid white;
  border-bottom: 1px solid white;
}
section.cta_newsletter.active {
  right: 0;
}
section.cta_newsletter .content {
  display: table-cell;
  vertical-align: middle;
  padding: 15px;
}
section.cta_newsletter .content a {
  text-decoration: none;
}
section.cta_newsletter .content a .box {
  border: 4px solid white;
  padding: 15px;
  display: inline-block;
  -webkit-border-top-right-radius: 100%;
  -webkit-border-bottom-right-radius: 100%;
  -webkit-border-bottom-left-radius: 100%;
  -webkit-border-top-left-radius: 100%;
  -moz-border-radius-topright: 100%;
  -moz-border-radius-bottomright: 100%;
  -moz-border-radius-bottomleft: 100%;
  -moz-border-radius-topleft: 100%;
  border-top-right-radius: 100%;
  border-bottom-right-radius: 100%;
  border-bottom-left-radius: 100%;
  border-top-left-radius: 100%;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
section.cta_newsletter .content a .box i {
  text-decoration: none;
  color: white;
  font-size: 40px;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
section.cta_newsletter .content a:hover .box {
  background-color: white;
}
section.cta_newsletter .content a:hover .box i {
  color: #0072BC;
}
@media (max-width: 768px) {
  section.cta_newsletter {
    display: none !important;
  }
}
div.stickymenu {
  position: fixed;
  z-index: 9998;
  width: 100%;
  max-width: 1460px;
}
section#preheader {
  background-color: #5C6970;
  color: white;
  font-size: 16px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
}
section#preheader .left {
  padding-top: 5px;
  padding-left: 30px;
  box-sizing: border-box;
}
section#preheader .left a {
  color: white;
}
section#preheader .left a:hover {
  opacity: 0.5;
}
section#preheader .left i {
  padding: 6px 15px 0 0;
}
section#preheader .right {
  padding-right: 30px;
  box-sizing: border-box;
  text-align: right;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
}
section#preheader .right ul {
  list-style-type: none;
  display: inline-block;
}
section#preheader .right ul li {
  display: inline-block;
}
section#preheader .right ul li.current-menu-item a {
  background: #0072BC url(../img/menu_arrow_white.png) no-repeat bottom center;
}
section#preheader .right ul li a {
  color: white;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px;
}
section#preheader .right ul li a:hover {
  background-color: #0072BC;
}
section#preheader .right ul:after {
  content: '|';
  color: white;
  padding: 6px 15px 6px 0;
}
section#preheader .right select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: red;
  background: #5C6970 url(../img/btn-languages.png) no-repeat right center;
  padding: 9px 30px 5px 0;
  margin-right: 20px;
  font-size: 14px;
  cursor: pointer;
}
section#preheader .right a.login {
  color: white;
  text-decoration: none;
  font-size: 14px;
  background: url(../img/btn-login.png) no-repeat right center;
  padding: 9px 35px 5px 0;
}
section#preheader .right a.login:hover {
  opacity: 0.5;
}
@media (max-width: 1065px) {
  section#preheader .left {
    display: none !important;
  }
  section#preheader .right {
    padding: 0 30px !important;
    width: 100% !important;
  }
}
@media (max-width: 980px) {
  section#preheader .right ul {
    display: none;
  }
}
@media (max-width: 560px) {
  section#preheader .right .login {
    display: none !important;
  }
  section#preheader .right #language-selector {
    margin-right: 0 !important;
  }
}
header {
  background-color: white;
  padding: 30px 0;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
header.sticky {
  -webkit-box-shadow: 0 6px 4px -4px rgba(100, 100, 100, 0.39);
  -moz-box-shadow: 0 6px 4px -4px rgba(100, 100, 100, 0.39);
  box-shadow: 0 6px 4px -4px rgba(100, 100, 100, 0.39);
  padding: 15px 0;
}
header.sticky .logo img {
  max-width: 150px;
}
header.sticky nav ul.menu > li {
  margin-top: 10px;
}
header .mainmenu {
  padding-right: 30px;
  box-sizing: border-box;
}
header .mainmenu .menutoggle {
  display: none;
  font-size: 20px;
  color: white;
  background-color: #0072BC;
  padding: 8px 10px 4px 10px;
}
header .mainmenu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  float: right;
  display: table-cell;
  vertical-align: middle;
}
header .mainmenu ul li {
  float: left;
  margin-top: 25px;
  padding-right: 15px;
  position: relative;
}
header .mainmenu ul li.current-menu-item a,
header .mainmenu ul li.current-page-ancestor a {
  color: #0072BC;
}
header .mainmenu ul li + li {
  border-left: 1px solid #0072BC;
  padding-left: 15px;
}
header .mainmenu ul li:last-child {
  padding-right: 0 !important;
}
header .mainmenu ul li a {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  text-decoration: none;
  text-transform: uppercase;
  color: #5C6970;
}
header .mainmenu ul li a:hover {
  color: #0072BC;
}
header .mainmenu ul li ul.submenu-0 {
  display: none;
  position: absolute;
  white-space: nowrap;
  left: 0;
  z-index: 999;
  background-color: #FFF;
  border-top: 8px solid #0072BC;
  border-bottom: 1px solid #0072BC;
  border-left: 1px solid #0072BC;
  border-right: 1px solid #0072BC;
  margin-top: 25px;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  -moz-border-radius-topleft: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.35);
}
header .mainmenu ul li ul.submenu-0:before {
  content: "";
  width: 22px;
  height: 12px;
  background: url(../img/menu_arrow.png) no-repeat;
  position: absolute;
  left: 50%;
  margin-left: -11px;
  top: -20px;
}
header .mainmenu ul li ul.submenu-0 li {
  margin: 0;
  padding: 0;
  display: inline-block;
  width: 100%;
  border-left: none;
  border-bottom: 1px solid #e0e3e8;
}
header .mainmenu ul li ul.submenu-0 li:last-child {
  border-bottom: none;
}
header .mainmenu ul li ul.submenu-0 li a {
  color: #0072BC;
  font-size: 15px;
  font-weight: bold;
  padding: 15px;
  display: inline-block;
}
header .mainmenu ul li ul.submenu-0 li a:hover {
  color: #5C6970;
}
header .mainmenu ul li ul.submenu-0 li.menu-item-has-children a {
  padding-bottom: 6px;
}
header .mainmenu ul li ul.submenu-0 li ul {
  margin-bottom: 20px;
}
header .mainmenu ul li ul.submenu-0 li ul li {
  border-bottom: none;
  padding-right: 20px;
}
header .mainmenu ul li ul.submenu-0 li ul li a {
  padding: 5px 0;
  font-weight: normal;
  text-transform: none;
  color: #5C6970;
  padding: 0 0 0 20px;
}
header .mainmenu ul li ul.submenu-0 li ul li a:hover {
  color: #0072BC;
}
header .mainmenu ul li ul.submenu-0 li ul li a:before {
  content: '>';
  color: #0072BC;
  font-weight: bold;
  margin: 0 10px 0 10px;
}
@media (max-width: 560px) {
  header {
    padding: 15px 0 !important;
  }
}
header .mobilemenu {
  background-color: #F5F7FA;
  display: none;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
  margin-top: 15px;
  padding-top: 20px;
  padding-bottom: 20px;
}
header .mobilemenu .sep {
  border-bottom: 1px solid #E6E9ED;
  margin-bottom: 10px;
  padding-top: 8px;
}
header .mobilemenu .servizio ul li a {
  font-weight: 400;
  color: #2c3e50;
}
header .mobilemenu ul {
  list-style-type: none;
}
header .mobilemenu ul li {
  margin: 3px 0 !important;
}
header .mobilemenu ul li a {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: #5C6970;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}
header .mobilemenu ul li a:hover {
  color: #0072BC;
}
header .mobilemenu ul li.secondary a {
  font-weight: 400;
  font-size: 14px;
}
header .mobilemenu ul ul {
  padding-left: 20px;
}
header .mobilemenu ul ul li a {
  font-weight: 400;
}
header .logo {
  padding-left: 30px;
  box-sizing: border-box;
}
header .logo img {
  height: auto;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  max-width: 272px;
}
@media (max-width: 1200px) {
  header .mainmenu {
    padding-right: 30px !important;
  }
  header .mainmenu ul li {
    padding-right: 8px !important;
    margin-top: 20px !important;
  }
  header .mainmenu ul li + li {
    padding-left: 8px !important;
  }
  header .mainmenu ul li a {
    font-size: 13px;
  }
  header .logo {
    padding-left: 30px !important;
  }
}
@media (max-width: 1024px) {
  header .logo img {
    max-width: 100% !important;
  }
}
@media (max-width: 980px) {
  header .logo {
    padding-left: 30px !important;
  }
  header .mainmenu {
    text-align: right !important;
  }
  header .mainmenu nav {
    display: none;
  }
  header .mainmenu .menutoggle {
    display: inline-block !important;
  }
  header .mobilemenu .menu {
    text-align: left !important;
  }
}
section#newsletter {
  background-color: #0072BC;
  padding: 30px 0;
  position: relative;
}
section#newsletter .left {
  background: url(../img/ico-paper_plane.png) no-repeat left center;
  padding: 10px 0 10px 0;
  padding-left: 90px;
  box-sizing: border-box;
}
section#newsletter .left h4 {
  margin: 0;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-weight: bold;
  font-size: 41px;
  line-height: 41px;
  text-transform: uppercase;
  color: white;
}
section#newsletter .left p {
  margin: 0;
  font-size: 21px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: white;
}
section#newsletter .right {
  text-align: right;
}
section#newsletter .right .button {
  margin-top: 20px;
  height: 45px !important;
  font-size: 20px !important;
  padding: 5px 10px 5px 10px !important;
  line-height: 30px !important;
  border: 3px solid white;
  padding: 20px 20px 20px 70px;
  color: white;
  -webkit-border-top-right-radius: 15px;
  -webkit-border-bottom-right-radius: 15px;
  -webkit-border-bottom-left-radius: 15px;
  -webkit-border-top-left-radius: 15px;
  -moz-border-radius-topright: 15px;
  -moz-border-radius-bottomright: 15px;
  -moz-border-radius-bottomleft: 15px;
  -moz-border-radius-topleft: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
section#newsletter .right .button:hover {
  background-color: white;
  color: #0072BC;
}
@media (max-width: 1024px) {
  section#newsletter h4 {
    font-size: 31px !important;
  }
  section#newsletter p {
    font-size: 17px !important;
  }
  section#newsletter .left,
  section#newsletter .right {
    text-align: center !important;
  }
  section#newsletter .left {
    background: none !important;
    padding-left: 0 !important;
  }
}
footer {
  background-color: white;
  padding: 60px 0;
}
footer img {
  width: 110px;
  height: auto;
}
footer h5 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 16px;
  color: #0072BC;
  margin-bottom: 20px;
}
footer hr {
  border: 0;
  margin: 10px 0;
  width: 50%;
  border-bottom: 1px solid #e1e1e1;
}
footer ul {
  list-style: none;
}
footer ul li {
  margin-bottom: 8px;
}
footer ul li a {
  color: #5C6970;
  text-decoration: none;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
}
footer ul li a:hover {
  color: #0072BC;
}
footer p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 14;
  margin-bottom: 8px;
  color: #5C6970;
}
footer p i {
  display: inline-block;
  width: 25px;
}
footer p a {
  color: #5C6970;
  text-decoration: none;
}
footer p a:hover {
  color: #0072BC;
}
footer p .phone {
  font-weight: bold;
}
footer .socialicon {
  font-size: 15px;
  width: 25px;
  height: 25px;
  line-height: 27px;
  -webkit-border-top-right-radius: 25px;
  -webkit-border-bottom-right-radius: 25px;
  -webkit-border-bottom-left-radius: 25px;
  -webkit-border-top-left-radius: 25px;
  -moz-border-radius-topright: 25px;
  -moz-border-radius-bottomright: 25px;
  -moz-border-radius-bottomleft: 25px;
  -moz-border-radius-topleft: 25px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  display: inline-block;
  text-align: center;
  border: 1px solid #0072BC;
  color: #0072BC;
  background-color: white;
  /*&.slideshare:hover{
		color: white;
		background-color: #007bb5;
		border-color: #007bb5;
	}

	&.facebook:hover{
		color: white;
		background-color: #3b5998;
		border-color: #3b5998;
	}

	&.twitter:hover{
		color: white;
		background-color: #55acee;
		border-color: #55acee;
	}

	&.linkedin:hover{
		color: white;
		background-color: #007bb5;
		border-color: #007bb5;
	}

	&.pinterest:hover{
		color: white;
		background-color: #3b5998;
		border-color: #3b5998;
	}	

	&.instagram:hover{
		color: black;
		background-color: white;
		border-color: black;
	}*/
}
footer .socialicon:hover {
  color: white;
  background-color: #0072BC;
  border-color: #0072BC;
}
footer .socialicon.passive:hover {
  background-color: white;
  color: #0072BC;
  cursor: default;
}
footer .socialicon:hover {
  color: white !important;
}
@media (max-width: 1024px) {
  footer h5 {
    margin-top: 30px;
  }
}
section#subfooter {
  background-color: #eef0f1;
  padding: 20px 0;
  color: #5C6970;
  font-size: 15px;
}
section#subfooter div {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
}
section#subfooter div i {
  color: #0072BC;
  display: inline-block;
  width: 20px;
}
section#subfooter div a {
  text-decoration: none;
  color: #5C6970;
}
section#subfooter div a:hover {
  color: #0072BC;
}
section#subfooter .right {
  text-align: right;
  font-size: 12px;
  color: #5C6970;
}
section#subfooter .right span,
section#subfooter .right a {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: #5C6970;
}
section#subfooter .right a {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: #0072BC;
  text-decoration: none;
}
section#subfooter .right a:hover {
  color: #0072BC;
}
@media (max-width: 768px) {
  section#subfooter .left {
    margin-bottom: 20px;
  }
}
@media (max-width: 568px) {
  section#subfooter .left,
  section#subfooter .right {
    text-align: center !important;
  }
  section#subfooter .right {
    font-size: 10px;
  }
  section#subfooter .right span {
    padding: 0 5px !important;
  }
}
.button,
button {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  display: inline-block;
  height: 38px;
  padding: 0 10px 0 10px;
  color: #0072BC;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 35px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 10px;
  border: 3px solid #0072BC;
  cursor: pointer;
  box-sizing: border-box;
}
.button:hover,
button:hover {
  background-color: #0072BC;
  color: white;
  outline: 0;
}
.button.primary,
button.primary {
  background-color: #0072BC !important;
  border-color: #0072BC !important;
  color: white;
  font-weight: 400;
  font-size: 17px;
  line-height: 50px;
  height: 50px;
  -webkit-border-top-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -webkit-border-top-left-radius: 10px;
  -moz-border-radius-topright: 10px;
  -moz-border-radius-bottomright: 10px;
  -moz-border-radius-bottomleft: 10px;
  -moz-border-radius-topleft: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  padding: 0 20px 0 20px;
}
.button.primary:hover,
button.primary:hover {
  background-color: #005389 !important;
  border-color: #005389 !important;
}
.button.primary span,
button.primary span {
  font-weight: bold;
  color: #FFF;
}
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: white;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 10px;
  border: 1px solid #0072BC;
  cursor: pointer;
  box-sizing: border-box;
}
.container {
  max-width: 1170px;
  margin: auto;
}
@media (max-width: 1230px) {
  .container {
    padding: 0 30px;
  }
}
.fullwidth_padright {
  padding-right: 30px;
  box-sizing: border-box;
}
.fullwidth_padleft {
  padding-left: 10px;
  box-sizing: border-box;
}
.fullwidth_pad {
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
}
.animated {
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#CookiesAlert {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  background-color: rgba(92, 105, 112, 0.9);
  bottom: 0;
  color: #ffffff;
  margin: 0;
  position: fixed;
  text-align: center;
  width: 100%;
  z-index: 99999;
}
#CookiesAlert .text_cookies {
  font-size: 14px;
  line-height: 18px;
  margin: auto;
  padding: 20px 0;
  text-align: center;
  width: 90%;
}
#CookiesAlert .text_cookies a {
  color: white;
  font-size: 16px;
  text-decoration: underline;
}
#CookiesAlert input[type="submit"] {
  background-color: #0072bc;
  border: 0 none;
  color: #ffffff;
  cursor: pointer;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  margin: 0 0 0 10px;
  padding: 2px 10px;
  transition: all 250ms ease-in-out 0s;
}
#CookiesAlert input[type="submit"]:hover {
  background-color: #e1e4e6;
  transition: all 250ms ease-in-out 0s;
}
#close_cookie {
  color: #2c3e50;
  cursor: pointer;
  font-size: 24px;
  margin: auto;
  position: absolute;
  right: 4%;
  text-align: right;
  top: -13px;
}
section.numeri-chiave {
  background-color: #F5F7FA;
  padding: 30px 0 30px 0;
}
section.numeri-chiave .num {
  text-align: center;
}
section.numeri-chiave .num .circle {
  display: inline-block;
  position: relative;
  text-align: center;
  line-height: 1.2;
}
section.numeri-chiave .num .circle canvas {
  vertical-align: top;
  margin: 0 auto;
}
section.numeri-chiave .num .circle strong {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-weight: 300;
  font-size: 73px;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  color: #5C6970;
  text-align: center;
  line-height: 97px;
}
section.numeri-chiave .num .circle strong i {
  font-style: normal;
  font-size: 0.6em;
  font-weight: normal;
}
section.numeri-chiave .num .circle span {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  display: block;
  color: #0072BC;
  margin-top: 12px;
}
section.numeri-chiave .cta {
  text-align: center;
  padding: 30px 0;
}
section.numeri-chiave .cta a {
  font-size: 19px;
}
@media (max-width: 768px) {
  section.numeri-chiave .num {
    margin-top: 20px;
  }
  section.numeri-chiave .num:first-child {
    margin-top: 0;
  }
}
section.testo_libero {
  padding: 40px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
}
section.testo_libero h2 {
  font-size: 23px;
  color: #0072BC;
  padding: 20px 0 10px 0;
}
section.testo_libero h3 {
  color: black;
  font-size: 19px;
  padding: 20px 0 10px 0;
}
section.testo_libero p {
  color: #5C6970;
  padding: 5px 0;
}
section.testo_libero table {
  border-collapse: collapse;
  margin: 20px 0;
}
section.testo_libero table th {
  color: #0072BC;
  padding: 5px 10px;
  border-bottom: 1px solid #E6E9ED;
}
section.testo_libero table td {
  padding: 5px 10px;
  color: #5C6970;
}
section.testo_libero a {
  color: #0072BC;
  text-decoration: none;
}
section.testo_libero a:hover {
  text-decoration: underline;
}
section.testo_libero ul {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  list-style-type: none;
  padding: 0;
  margin: 10px 0;
}
section.testo_libero ul li {
  padding-left: 1.5em;
  text-indent: -0.9em;
}
section.testo_libero ul li:before {
  content: "• ";
  color: #0072BC;
}
@media (max-width: 768px) {
  section.testo_libero {
    padding-right: 30px;
    padding-left: 30px;
  }
}
section.related-reports {
  padding-bottom: 40px;
  background-color: #F5F7FA;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
}
section.related-reports h2 {
  padding: 30px;
  font-weight: 600;
  font-size: 29px;
  color: #5C6970;
  text-align: center;
}
section.related-reports .owl-item {
  text-align: center;
}
section.related-reports .risorsa {
  vertical-align: top;
  display: inline-block;
  width: 310px;
  outline: 1px solid #E6E9ED;
  background-color: white;
  margin: 12px;
  padding: 20px;
  text-align: left;
}
section.related-reports .risorsa .content {
  background-color: #E6E9ED;
}
section.related-reports .risorsa .content .pad {
  padding: 20px;
  height: 220px;
}
section.related-reports .risorsa .content .pad h3 {
  color: black;
  font-size: 21px;
  line-height: 29px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-weight: 300;
}
section.related-reports .risorsa .content .pad p {
  margin: 20px 0 0 0;
  font-size: 14px;
  color: #656D78;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
}
section.related-reports .risorsa .content a.download {
  display: block;
  background: #5C6970 url(../img/ico-examine_small.png) no-repeat 90% center;
  color: white;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  text-decoration: none;
}
section.related-reports .risorsa .content a.download:hover {
  background-color: #AAB2BD;
}
section.related-reports .risorsa .foot {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ecf0f1;
  font-size: 14px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
}
section.related-reports .risorsa .foot:before,
section.related-reports .risorsa .foot:after {
  content: " ";
  display: table;
}
section.related-reports .risorsa .foot:after {
  clear: both;
}
section.related-reports .risorsa .foot .sx {
  float: left;
  color: #AAB2BD;
}
section.related-reports .risorsa .foot .dx {
  float: right;
  color: #AAB2BD;
}
section.testo-cta {
  padding: 30px 0;
}
section.testo-cta h3 {
  text-align: center;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: #0072BC;
  font-weight: 400;
  font-size: 25px;
}
section.testo-cta p.cont-btn {
  text-align: center;
  margin-top: 15px;
}
section.testo-cta p.cont-btn a {
  background-color: #0072BC;
  display: inline-block;
  padding: 10px;
  text-decoration: none;
  -webkit-border-top-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -webkit-border-top-left-radius: 10px;
  -moz-border-radius-topright: 10px;
  -moz-border-radius-bottomright: 10px;
  -moz-border-radius-bottomleft: 10px;
  -moz-border-radius-topleft: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
section.testo-cta p.cont-btn a img {
  max-width: 50px;
}
section.testo-cta p.cont-btn a span {
  display: block;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: white;
  font-weight: bold;
  padding-bottom: 20px;
}
section.testo-cta p.cont-btn a:hover {
  background-color: #0091ef;
}
section.boxes_wantmore .box .portaimages {
  width: 100%;
  min-height: 300px;
  position: relative;
}
section.boxes_wantmore .box .portaimages .img,
section.boxes_wantmore .box .portaimages .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.boxes_wantmore .box .portaimages .img {
  opacity: 0;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
section.boxes_wantmore .box h2 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: #5C6970;
  font-size: 25px;
  padding: 40px 20px 20px 20px;
  text-align: center;
}
section.boxes_wantmore .box p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: #5C6970;
  font-size: 15px;
  padding: 20px 40px;
}
section.boxes_wantmore .box .frecce {
  padding: 0 40px 50px 40px;
}
section.boxes_wantmore .box .frecce a.freccia {
  display: block;
  cursor: pointer;
  background: url(../img/dot-separator.png) repeat-y 28% top;
  margin-bottom: 20px;
  text-decoration: none;
}
section.boxes_wantmore .box .frecce a.freccia:hover .text span {
  color: white;
  border-color: #0072BC;
  background-color: #0072BC;
}
section.boxes_wantmore .box .frecce a.freccia .tblizer {
  width: 100%;
  height: 100%;
  display: table;
}
section.boxes_wantmore .box .frecce a.freccia .bg .img {
  display: table-cell;
  vertical-align: middle;
  padding: 0 10px;
}
section.boxes_wantmore .box .frecce a.freccia .bg .img img {
  margin: 0 auto;
}
section.boxes_wantmore .box .frecce a.freccia .text p.title {
  padding: 0 0 0 40px !important;
  color: #0072BC;
  font-weight: bold;
}
section.boxes_wantmore .box .frecce a.freccia .text p.desc {
  padding: 0 0 0 40px !important;
  color: black;
}
section.boxes_wantmore .box .frecce a.freccia .text span {
  display: inline-block;
  content: "\2192";
  color: #0072BC;
  border: 1px solid #0072BC;
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  padding: 2px 10px 2px 10px !important;
  margin-top: 5px;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  -moz-border-radius-topleft: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
section.boxes_wantmore .box1 {
  background-color: #F5F7FA;
}
section.boxes_wantmore .box2 {
  background-color: #E6E9ED;
}
@media (max-width: 768px) {
  section.boxes_wantmore .box1,
  section.boxes_wantmore .box2 {
    background-color: #F5F7FA !important;
  }
  section.boxes_wantmore .portaimages .img {
    opacity: 1 !important;
  }
  section.boxes_wantmore .portaimages .img-bg {
    opacity: 0 !important;
  }
}
section.product-navigator {
  margin: 20px 0;
}
section.product-navigator .cont {
  padding: 0 70px;
}
section.product-navigator .cont div {
  background-color: #E6E9ED;
  position: relative;
  height: 86px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
}
section.product-navigator .cont div a.icon {
  position: absolute;
  top: 0;
  left: -40px;
  width: 60px;
  height: 60px;
  display: inline-block;
  background-color: #0072BC;
  padding: 15px;
  -webkit-border-top-right-radius: 100%;
  -webkit-border-bottom-right-radius: 100%;
  -webkit-border-bottom-left-radius: 100%;
  -webkit-border-top-left-radius: 100%;
  -moz-border-radius-topright: 100%;
  -moz-border-radius-bottomright: 100%;
  -moz-border-radius-bottomleft: 100%;
  -moz-border-radius-topleft: 100%;
  border-top-right-radius: 100%;
  border-bottom-right-radius: 100%;
  border-bottom-left-radius: 100%;
  border-top-left-radius: 100%;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
section.product-navigator .cont div a.icon:hover {
  background-color: #656D78;
}
section.product-navigator .cont div a.icon img {
  margin-top: 15px;
  width: 60px;
  height: auto;
}
section.product-navigator .cont div h5 a {
  padding: 15px 0 0 60px;
  font-weight: 400;
  color: #0072BC;
  font-size: 19px;
  text-decoration: none;
  display: inline-block;
}
section.product-navigator .cont div h6 {
  padding: 0 0 20px 60px;
  color: #5C6970;
  font-size: 15px;
  font-weight: 400;
}
section.product-navigator .cont div.right a {
  left: auto;
  right: -40px;
}
section.product-navigator .cont div.right h5 {
  text-align: right;
}
section.product-navigator .cont div.right h5 a {
  padding: 15px 60px 0 0;
}
section.product-navigator .cont div.right h6 {
  text-align: right;
  padding: 0 60px 20px 0;
}
@media (max-width: 1024px) {
  section.product-navigator a.icon {
    display: none !important;
  }
  section.product-navigator .cont {
    padding: 0 30px !important;
  }
  section.product-navigator .cont div h5 a {
    padding: 15px 0 0 20px;
  }
  section.product-navigator .cont div h6 {
    padding: 0 0 20px 20px;
  }
  section.product-navigator .cont div.right h5 a {
    padding: 15px 20px 0 0;
  }
  section.product-navigator .cont div.right h6 {
    padding: 0 20px 20px 0;
  }
}
@media (max-width: 768px) {
  section.product-navigator .cont div h5 {
    text-align: center;
  }
  section.product-navigator .cont div h5 a {
    padding: 10px 0 !important;
  }
  section.product-navigator .cont div h6 {
    text-align: center;
    padding: 0 !important;
  }
  section.product-navigator .cont div.right h5 {
    text-align: center !important;
  }
  section.product-navigator .cont div.right h5 a {
    padding: 10px 0 !important;
  }
  section.product-navigator .cont div.right h6 {
    text-align: center !important;
    padding: 0 !important;
  }
}
section.iconed-title {
  background-color: white;
}
section.iconed-title .content {
  text-align: left;
}
section.iconed-title .content h1 {
  padding: 50px 30px;
  display: inline-block;
  background-position: left center;
  background-repeat: no-repeat;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: #5C6970;
  font-weight: 700;
  font-size: 49px;
}
@media (max-width: 1024px) {
  section.iconed-title h1 {
    padding: 40px 30px !important;
  }
}
@media (max-width: 950px) {
  section.iconed-title h1 {
    font-size: 30px !important;
    padding: 30px !important;
  }
}
@media (max-width: 680px) {
  section.iconed-title h1 {
    font-size: 25px !important;
  }
}
section.integrations {
  padding: 40px 0;
  background-color: #F5F7FA;
  border-top: 1px solid #E6E9ED;
  border-bottom: 1px solid #E6E9ED;
}
section.integrations h3 {
  color: #2c3e50;
  font-weight: 300;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 35px;
  text-align: center;
}
section.integrations h3::after {
  display: block;
  content: ' ';
  margin: 25px auto 45px auto;
  width: 70px;
  border-bottom: 7px solid #0072BC;
}
section.integrations .logo {
  text-align: center;
}
section.integrations .logo img {
  display: inline-block;
}
@media (max-width: 568px) {
  section.integrations img {
    padding: 0;
  }
}
section.resources {
  padding: 50px 0;
}
section.resources h4 {
  text-align: center;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 29px;
  color: #5C6970;
  font-weight: 700;
}
section.resources h5 {
  text-align: center;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 23px;
  font-weight: 300;
  color: #5C6970;
  margin-bottom: 30px;
}
section.resources .res .cont {
  padding: 10px;
  cursor: pointer;
}
section.resources .res .cont .link {
  text-decoration: none;
}
section.resources .res .cont .link:hover .box {
  box-shadow: 0px 0px 5px #666;
}
section.resources .res .cont .link:hover .data {
  display: block !important;
}
section.resources .res .cont .link:hover img {
  display: none;
}
section.resources .res .cont .box {
  box-shadow: 0px 0px 5px #aaa;
  height: 250px;
  padding: 20px;
}
section.resources .res .cont .box img {
  width: 100%;
}
section.resources .res .cont .box h6 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 15px;
  color: black;
}
section.resources .res .cont .box p.type {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 13px;
  color: #5C6970;
}
section.resources .res .cont .box .data {
  display: none;
}
section.resources .res .cont .box .data p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: #5C6970;
  font-size: 16px;
  line-height: 29px;
  padding: 20px 0;
}
@media (max-width: 568px) {
  section.resources img {
    display: none !important;
  }
  section.resources .res .cont .box {
    height: auto !important;
  }
}
section.dyncontent .box {
  cursor: pointer;
  position: relative;
  /*background-color: darken(@blu,20%);

		img{
			opacity: 0.2;
		}*/
}
section.dyncontent .box .data {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Safari doesn't get it :( */
  display: table;
}
section.dyncontent .box .data .cont {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
section.dyncontent .box .data .cont p.title {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: white;
  font-weight: bold;
  font-size: 15px;
}
section.dyncontent .box .data .cont p.title::after {
  display: block;
  content: ' ';
  margin: 10px auto 10px auto;
  width: 30px;
  border-bottom: 1px solid white;
}
section.dyncontent .box .data .cont p.desc {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: white;
  font-size: 13px;
  padding: 0 45px;
}
section.dyncontent .box:hover img {
  opacity: 1;
}
section.dyncontent .box:hover .data {
  height: auto !important;
  position: relative;
}
section.dyncontent .box:hover .data .cont {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #E6E9ED url(../img/bg-resource.png) no-repeat right bottom;
  padding: 20px 0;
}
section.dyncontent .box:hover .data .cont p.title {
  color: black;
  font-weight: bold;
}
section.dyncontent .box:hover .data .cont p.title::after {
  border-bottom: 1px solid #0072BC;
}
section.dyncontent .box:hover .data .cont p.desc {
  color: #5C6970;
}
section.service-title {
  text-align: center;
  padding: 30px 0 50px 0;
}
section.service-title p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 20px;
  color: #5C6970;
  margin-bottom: 20px;
}
section.service-title p::before {
  display: block;
  content: ' ';
  margin: 0px auto 20px auto;
  width: 70px;
  border-bottom: 7px solid #0072BC;
}
section.service-title h1 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: #0072BC;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 300;
}
section.products {
  background-color: #0072BC;
  padding: 30px 0;
}
section.products .product {
  text-align: center;
}
section.products .product h3 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-weight: 300;
  color: white;
  font-size: 30px;
  position: relative;
  display: inline-block;
}
section.products .product h3 i {
  font-size: 14px;
  position: absolute;
  top: 5px;
  left: -10px;
}
section.products .product h4 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-weight: 300;
  color: white;
  font-size: 17px;
  line-height: 20px;
  padding: 10px 0;
  min-height: 50px;
}
section.products .product a {
  border-color: white;
  color: white;
}
section.products .product a:hover {
  background-color: white;
  color: #0072BC;
}
section.products .product + div {
  box-shadow: -1px 0 0 white;
}
section.products.alt {
  background-color: #8f9ca3;
}
section.products.alt .product h3 {
  font-size: 25px;
  font-weight: 400;
  display: block;
  margin-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
section.products.alt .product + div {
  box-shadow: none !important;
}
@media (max-width: 568px) {
  section.products .product {
    padding: 40px 0 10px 0;
  }
  section.products .product:first-child {
    padding: 10px;
  }
}
section.bg-title {
  background: url(../img/bg-pattern_title.png);
}
section.bg-title div {
  padding: 130px 100px;
}
section.bg-title h1 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-weight: bold;
  font-size: 40px;
  color: white;
}
section.bg-title h2 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-weight: normal;
  font-size: 20px;
  color: white;
}
@media (max-width: 550px) {
  section.bg-title div {
    padding: 70px 50px !important;
  }
  section.bg-title h1 {
    font-size: 25px !important;
  }
  section.bg-title h2 {
    font-size: 15px !important;
  }
  section.bg-title br {
    content: ' ';
  }
}
section.title-bianco-bg {
  background: white;
}
section.title-bianco-bg div {
  padding: 60px 30px;
}
section.title-bianco-bg h1 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-weight: bold;
  font-size: 40px;
  color: #5C6970;
  padding-bottom: 20px;
}
section.title-bianco-bg h2 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-weight: normal;
  font-size: 20px;
  color: #5C6970;
}
@media (max-width: 1024px) {
  section.title-bianco-bg div {
    padding: 40px 30px !important;
  }
}
@media (max-width: 550px) {
  section.title-bianco-bg h1 {
    font-size: 25px !important;
  }
  section.title-bianco-bg h2 {
    font-size: 15px !important;
  }
}
section.boxes .box1,
section.boxes .box2 {
  text-align: center;
  padding: 30px 0;
}
section.boxes .box1 h4,
section.boxes .box2 h4 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: #2c3e50;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 15px;
}
section.boxes .box1 p,
section.boxes .box2 p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: #5C6970;
  font-size: 15px;
  padding: 0 15px;
}
section.boxes .box1 img,
section.boxes .box2 img {
  width: 100px;
  height: 100px;
}
section.boxes .box1 {
  background-color: #F5F7FA;
}
section.boxes .box2 {
  background-color: #E6E9ED;
}
@media (max-width: 768px) {
  section.boxes .box1 h4,
  section.boxes .box2 h4 {
    font-size: 15px;
  }
}
@media (max-width: 568px) {
  section.boxes .mbox1 {
    background-color: #F5F7FA !important;
  }
  section.boxes .mbox2 {
    background-color: #E6E9ED !important;
  }
  section.boxes .box1 p,
  section.boxes .box2 p {
    display: none !important;
  }
}
section.clientboxes .box .portaimages {
  width: 100%;
  position: relative;
  /*.img, .img-bg{
				position: absolute;
				top:0;
				left: 0;
				width: 100%;
				height: auto;
			}

			.img{
				opacity:0;
				.animated;
			}*/
}
section.clientboxes .box .portaimages:before,
section.clientboxes .box .portaimages:after {
  content: " ";
  display: table;
}
section.clientboxes .box .portaimages:after {
  clear: both;
}
section.clientboxes .box .portaimages .img-bg {
  float: left;
  width: 100%;
  height: auto;
}
section.clientboxes .box .portaimages .img {
  position: absolute;
  left: 0;
  top: 0;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  width: 100%;
  height: auto;
}
section.clientboxes .box h2 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: #5C6970;
  font-size: 23px;
  padding: 40px 40px 20px 40px;
  text-align: center;
}
section.clientboxes .box .logo {
  text-align: center;
}
section.clientboxes .box .logo img {
  max-width: 40%;
  display: inline-block;
  height: auto;
}
section.clientboxes .box p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: black;
  font-size: 15px;
  padding: 20px 40px;
}
section.clientboxes .box div.btn {
  text-align: center;
  margin: 20px 0 40px;
}
section.clientboxes .box div.btn a {
  display: inline-block;
  background-color: white;
}
section.clientboxes .box div.btn a:hover {
  background-color: #0072BC;
  color: white;
}
section.clientboxes .box1 {
  background-color: #F5F7FA;
}
section.clientboxes .box2 {
  background-color: #E6E9ED;
}
@media (max-width: 768px) {
  section.clientboxes .box1,
  section.clientboxes .box2 {
    background-color: #F5F7FA !important;
  }
  section.clientboxes .cont {
    display: none;
  }
}
section.columns {
  padding: 40px 0;
}
section.columns .left {
  box-shadow: 2px 0 0 #f4f3f3;
}
section.columns .bcta {
  text-align: center;
  padding-top: 40px;
}
section.columns .bcta h6 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: #2c3e50;
  font-weight: 300;
  padding-bottom: 20px;
  font-size: 27px;
}
section.columns section.paragraph h3 {
  font-size: 27px;
}
section.columns section.paragraph h3::after {
  display: block;
  content: ' ';
  margin: 5px auto 45px auto;
  width: 70px;
  border-bottom: 4px solid #0072BC;
}
section.columns section.paragraph p {
  font-size: 17px;
}
section.client-carousel {
  text-align: center;
  padding: 60px 0;
  border-top: 1px solid #E6E9ED;
  border-bottom: 1px solid #E6E9ED;
}
section.client-carousel.sfgray {
  background-color: #F5F7FA;
}
section.client-carousel.sfwhite {
  background-color: white;
}
section.client-carousel h3 {
  color: #2c3e50;
  font-weight: 300;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 35px;
  padding: 0 30px;
  margin-bottom: 30px;
}
section.client-carousel .button {
  margin: 20px 0 40px;
  background-color: white;
  font-size: 20px;
  height: 48px;
  padding: 5px 10px 0 10px;
}
section.client-carousel .button:hover {
  background-color: #0072BC;
  color: white;
}
section.client-carousel h4 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: #5C6970;
  font-weight: 700;
  text-align: center;
  padding-bottom: 35px;
}
section.client-carousel div.logo {
  text-align: center;
}
@media (max-width: 768px) {
  section.client-carousel h3 {
    font-size: 25px !important;
  }
  section.client-carousel .owl-pagination {
    display: none !important;
  }
  section.client-carousel .button {
    margin: 20px 0 40px;
    background-color: white;
    font-size: 20px;
    height: 48px;
    padding: 5px 10px 0 10px;
  }
}
section.bordered-title {
  background-color: #F5F7FA;
  border-top: 2px solid #E6E9ED;
  border-bottom: 2px solid #E6E9ED;
  padding: 10px;
}
section.bordered-title h2 {
  color: #2c3e50;
  font-weight: 300;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 35px;
  text-align: center;
}
@media (max-width: 768px) {
  section.bordered-title h2 {
    font-size: 25px !important;
  }
}
section.offering {
  margin-bottom: 30px;
}
section.offering .titoli {
  margin-bottom: 30px;
}
section.offering .titoli .titolo {
  background-color: #F5F7FA;
  border-bottom: 1px solid #E6E9ED;
}
section.offering .titoli .titolo:last-child {
  box-shadow: -3px 0 0 white;
}
section.offering .titoli .titolo h2 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  text-align: center;
  color: #0072BC;
  text-transform: uppercase;
  font-size: 22px;
  padding: 15px 0;
}
section.offering .buttons .titolo {
  background-color: #F5F7FA;
}
section.offering .buttons .titolo h2 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  text-align: center;
  color: #0072BC;
  text-transform: uppercase;
  font-size: 22px;
  padding: 15px 0;
}
section.offering .buttons img {
  max-width: 90px !important;
  height: auto;
}
section.offering .buttons div + div {
  box-shadow: -1px 0 0 #ececec;
}
section.offering .buttons div + div.separatore {
  box-shadow: -3px 0 0 #0072BC;
}
section.offering a {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 20px 0;
}
section.offering a:hover {
  background-color: #F5F7FA;
}
section.offering a:hover .readmore {
  color: #0072BC;
}
section.offering a h4 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-weight: bold;
  color: #0072BC;
  font-size: 22px;
}
section.offering a p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 17px;
  padding: 5px 0;
  color: #5C6970;
}
section.offering a p.readmore {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
section.offering a p.testo {
  padding: 15px 30px;
  font-size: 14px;
  color: #AAB2BD;
}
@media (max-width: 1024px) {
  section.offering h4 {
    font-size: 17px !important;
  }
  section.offering p {
    font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
    color: #5C6970;
    font-size: 15px !important;
  }
}
@media (max-width: 935px) {
  section.offering h4 {
    font-size: 15px !important;
  }
  section.offering p {
    font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
    color: #5C6970;
    font-size: 13px !important;
  }
}
@media (max-width: 768px) {
  section.offering .buttons div + div {
    box-shadow: none;
  }
  section.offering .buttons div a {
    padding: 20px 0;
  }
}
@media (max-width: 568px) {
  section.offering .titoli {
    display: none !important;
  }
}
section.paragraph {
  padding: 50px;
}
section.paragraph h3 {
  color: #2c3e50;
  font-weight: 300;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 35px;
  text-align: center;
}
section.paragraph h3::after {
  display: block;
  content: ' ';
  margin: 20px auto 0 auto;
  width: 70px;
  border-bottom: 7px solid #0072BC;
}
section.paragraph p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: #5C6970;
  text-align: center;
  font-size: 19px;
  margin-top: 50px;
}
section.paragraph p strong,
section.paragraph p b {
  font-weight: bold;
}
section.paragraph p img {
  display: inline-block;
  margin: 0 auto;
}
section.paragraph .btn {
  margin-top: 20px;
}
@media (max-width: 768px) {
  section.paragraph {
    padding: 30px;
  }
  section.paragraph h3 {
    font-size: 25px;
  }
  section.paragraph p {
    font-size: 15px;
  }
}
section.breadcrumbs {
  border-top: 1px solid #E6E9ED;
  border-bottom: 1px solid #E6E9ED;
  background-color: #F5F7FA;
  padding: 8px 30px 10px 30px;
}
section.breadcrumbs .backlink {
  text-align: right;
}
section.breadcrumbs .backlink a {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 14px;
  color: #5C6970;
  text-decoration: none;
  font-weight: 600;
}
section.breadcrumbs .backlink a i {
  color: #0072BC;
}
section.breadcrumbs .backlink a:hover {
  color: #0072BC !important;
}
section.breadcrumbs ul li {
  display: inline-block;
}
section.breadcrumbs ul li a {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  color: #5C6970;
}
section.breadcrumbs ul li a:hover {
  color: #0072BC;
}
section.breadcrumbs ul li:after {
  content: '>';
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: #0072BC;
  padding: 0 10px;
}
section.breadcrumbs ul li:last-child:after {
  display: none;
}
section.breadcrumbs ul li:last-child a {
  color: #0072BC;
}
section.breadcrumbs .logo {
  text-align: right;
}
section.breadcrumbs .logo img {
  height: 25px;
  width: auto;
  padding-top: 3px;
}
section.breadcrumbs .logo img.contactplan {
  height: 30px;
  width: auto;
}
@media (max-width: 768px) {
  section.breadcrumbs ul li a {
    font-size: 12px !important;
  }
  section.breadcrumbs ul li a:after {
    font-size: 12px !important;
  }
  section.breadcrumbs.wlogo .crumbs {
    display: none;
  }
  section.breadcrumbs.wlogo .logo {
    text-align: left !important;
  }
}
section.product-feature {
  padding: 20px 0;
}
section.product-feature .tblizer {
  width: 100%;
  height: 100%;
  display: table;
}
section.product-feature .img .content {
  display: table-cell;
  vertical-align: middle;
}
section.product-feature .img .pure-img {
  max-width: 90% !important;
}
section.product-feature .text .content {
  padding: 100px;
  display: table-cell;
  vertical-align: middle;
}
section.product-feature .text .content .logo {
  height: 40px;
}
section.product-feature .text .content .logo.contactplan {
  height: 50px;
}
section.product-feature .text h3 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-weight: 300;
  color: #5C6970;
  font-size: 21px;
}
section.product-feature .text h2.logo {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-weight: 300;
  color: black;
  font-size: 39px;
  position: relative;
  display: inline-block;
}
section.product-feature .text h2.logo span {
  color: #0072BC;
}
section.product-feature .text h2.logo i {
  font-size: 14px;
  color: #0072BC;
  position: absolute;
  top: 12px;
  left: -10px;
}
section.product-feature .text h2.title {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-weight: 700;
  color: #5C6970;
  font-size: 29px;
}
section.product-feature .text p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: #5C6970;
  margin: 20px 0 30px 0;
}
@media (max-width: 768px) {
  section.product-feature .content {
    padding: 30px 30px 0 30px !important;
  }
}
section.mosaic-home {
  background-color: #F5F7FA;
}
section.mosaic-home .text .content {
  padding: 60px;
}
section.mosaic-home .text h3 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-weight: 300;
  color: #0072BC;
  font-size: 29px;
}
section.mosaic-home .text h2 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-weight: 400;
  color: #5C6970;
  font-size: 32px;
  line-height: 41px;
}
section.mosaic-home .text h2.bordered::after {
  display: block;
  content: ' ';
  margin: 30px auto 30px 0;
  width: 70px;
  border-bottom: 7px solid #0072BC;
}
section.mosaic-home .text p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: #5C6970;
  margin: 20px 0 30px 0;
}
section.mosaic-home .text p.border {
  border-left: 7px solid #0072BC;
  padding: 0 0 0 20px;
}
section.mosaic-home .img a {
  display: block;
  width: 100%;
  height: 300px;
}
@media (max-width: 1024px) {
  section.mosaic-home .content h2 {
    font-size: 25px !important;
  }
}
section.mosaic2 {
  background-color: #E6E9ED;
}
section.mosaic2 .text {
  background-color: #5C6970;
}
section.mosaic2 .text .content {
  padding: 60px;
}
section.mosaic2 .text h2 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-weight: 700;
  color: white;
  font-size: 31px;
  text-transform: uppercase;
}
section.mosaic2 .text p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: white;
  border-left: 7px solid white;
  padding: 0 0 0 20px;
  font-size: 15px;
  line-height: 26px;
  margin: 20px 0 30px 0;
}
section.mosaic2 .text .button {
  border-color: white;
  color: white;
  font-size: 19px;
  height: 45px;
  line-height: 41px;
}
section.mosaic2 .text .button.notable {
  background-color: #0072BC;
  border-color: #0072BC;
  color: white;
}
section.mosaic2 .text .button.notable:hover {
  border-color: white;
}
section.mosaic2 .img a {
  display: block;
  width: 100%;
  height: 300px;
}
@media (max-width: 1024px) {
  section.mosaic2 .text h2 {
    font-size: 25px !important;
  }
}
section.mosaic-home {
  background-color: #F5F7FA;
}
section.mosaic-home .text .content {
  padding: 60px;
}
section.mosaic-home .text h3 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-weight: 300;
  color: #0072BC;
  font-size: 29px;
}
section.mosaic-home .text h2 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-weight: 400;
  color: #5C6970;
  font-size: 35px;
}
section.mosaic-home .text h2.bordered::after {
  display: block;
  content: ' ';
  margin: 30px auto 30px 0;
  width: 70px;
  border-bottom: 7px solid #0072BC;
}
section.mosaic-home .text p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: #5C6970;
  margin: 20px 0 30px 0;
}
section.mosaic-home .text p.border {
  border-left: 7px solid #0072BC;
  padding: 0 0 0 20px;
}
section.mosaic-home .img a {
  display: block;
  width: 100%;
  height: 300px;
}
section.mosaic-wantmore .content {
  padding: 40px;
}
section.mosaic-wantmore .content h2 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: #5C6970;
  font-size: 31px;
}
section.mosaic-wantmore .content h2::after {
  display: block;
  content: ' ';
  margin: 10px auto 20px 0;
  width: 70px;
  border-bottom: 7px solid #d12e76;
}
section.mosaic-wantmore .content .intro p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: #5C6970;
  font-size: 16px;
  line-height: 26px;
  margin: 20px 0 30px 0;
}
section.mosaic-wantmore .content .frecce a.freccia {
  text-decoration: none;
  margin-bottom: 20px;
  display: block;
  max-width: 500px;
}
section.mosaic-wantmore .content .frecce a.freccia:hover .bg {
  opacity: 0.8;
}
section.mosaic-wantmore .content .frecce a.freccia .pure-g {
  background: url(../img/bg-more_btn.png) no-repeat top right;
  background-size: 100% 100%;
}
section.mosaic-wantmore .content .frecce a.freccia .tblizer {
  width: 100%;
  height: 100%;
  display: table;
}
section.mosaic-wantmore .content .frecce a.freccia .bg .img {
  display: table-cell;
  vertical-align: middle;
  padding: 10px;
}
section.mosaic-wantmore .content .frecce a.freccia .bg .img img {
  margin: 0 auto;
}
section.mosaic-wantmore .content .frecce a.freccia .text {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: #5C6970;
  font-size: 14px;
}
section.mosaic-wantmore .content .frecce a.freccia .text p {
  padding: 10px 50px 10px 20px;
  display: table-cell;
  vertical-align: middle;
}
section.all_clients {
  background-color: white;
}
section.all_clients h3 {
  padding-top: 40px;
  color: #2c3e50;
  font-weight: 300;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 25px;
  text-align: center;
}
section.all_clients h3::after {
  display: block;
  content: ' ';
  margin: 10px auto 30px auto;
  width: 70px;
  border-bottom: 7px solid #0072BC;
}
section.all_clients .box .logo {
  margin: 10px;
  background-color: #F5F7FA;
  text-align: center;
}
section.all_clients .box .logo img {
  display: inline-block;
}
section.bandone-cta {
  background-color: #5C6970;
  padding: 30px 0;
  position: relative;
}
section.bandone-cta .left {
  padding: 10px 0 10px 0;
  padding-left: 90px;
  box-sizing: border-box;
}
section.bandone-cta .left h4 {
  margin: 0;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-weight: bold;
  font-size: 41px;
  line-height: 41px;
  text-transform: uppercase;
  color: white;
}
section.bandone-cta .left p {
  margin: 0;
  font-size: 21px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: white;
}
section.bandone-cta .right {
  text-align: right;
}
section.bandone-cta .right .button {
  margin-top: 20px;
  height: 45px !important;
  font-size: 20px !important;
  padding: 5px 10px 5px 10px !important;
  line-height: 30px !important;
  border: 3px solid white;
  padding: 20px 20px 20px 70px;
  color: white;
  -webkit-border-top-right-radius: 15px;
  -webkit-border-bottom-right-radius: 15px;
  -webkit-border-bottom-left-radius: 15px;
  -webkit-border-top-left-radius: 15px;
  -moz-border-radius-topright: 15px;
  -moz-border-radius-bottomright: 15px;
  -moz-border-radius-bottomleft: 15px;
  -moz-border-radius-topleft: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
@media (max-width: 1024px) {
  section.bandone-cta .left,
  section.bandone-cta .right {
    text-align: center !important;
  }
  section.bandone-cta .left {
    background: none !important;
    padding-left: 0 !important;
  }
}
/*
 * jQuery FlexSlider v2.6.1
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */
/* ====================================================================================================================
 * FONT-FACE
 * ====================================================================================================================*/
@font-face {
  font-family: 'flexslider-icon';
  src: url('../js/src/flexslider/fonts/flexslider-icon.eot');
  src: url('../js/src/flexslider/fonts/flexslider-icon.eot?#iefix') format('embedded-opentype'), url('../js/src/flexslider/fonts/flexslider-icon.woff') format('woff'), url('../js/src/flexslider/fonts/flexslider-icon.ttf') format('truetype'), url('../js/src/flexslider/fonts/flexslider-icon.svg#flexslider-icon') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
.flex-container a:hover,
.flex-slider a:hover {
  outline: none;
}
.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.flex-pauseplay span {
  text-transform: capitalize;
}
/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
.flexslider {
  margin: 0;
  padding: 0;
}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
.flexslider .slides img {
  width: 100%;
  display: block;
}
.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .flexslider .slides {
  display: block;
}
* html .flexslider .slides {
  height: 1%;
}
.no-js .flexslider .slides > li:first-child {
  display: block;
}
/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexslider {
  margin: 0 0 60px;
  background: #fff;
  border: 0;
  position: relative;
  zoom: 1;
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
}
.flexslider .slides {
  zoom: 1;
}
.flexslider .slides img {
  height: auto;
  -moz-user-select: none;
}
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}
.carousel li {
  margin-right: 5px;
}
.flex-direction-nav {
  *height: 0;
}
.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 49px;
  height: 57px;
  margin: -20px 0 0;
  position: absolute;
  top: 48%;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  background: url(../img/btn-slider_sx.png) no-repeat;
  background-size: cover;
  /*&:before  {

      font-family: "@{font-name}";
      font-size: 40px;
      display: inline-block;
      content: @flex-direction-nav-icon-prev;
      color: @flex-direction-nav-icon-color;
      text-shadow: @flex-direction-nav-icon-text-shadow;

    }*/
}
.flex-direction-nav a.flex-next {
  background: url(../img/btn-slider_dx.png) no-repeat;
  background-size: cover;
  content: '\f002';
}
.flex-direction-nav .flex-prev {
  left: 0;
}
.flex-direction-nav .flex-next {
  right: 0;
  text-align: right;
}
.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 0.5;
}
.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 0.5;
}
.flex-direction-nav .flex-disabled {
  opacity: 0!important;
  filter: alpha(opacity=0);
  cursor: default;
  z-index: -1;
}
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}
.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}
.flex-pauseplay a:hover {
  opacity: 1;
}
.flex-pauseplay a.flex-play:before {
  content: '\f003';
}
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}
.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -webkit-border-top-right-radius: 20px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 20px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}
.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}
.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}
.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .7;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.flex-control-thumbs img:hover {
  opacity: 1;
}
.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}
/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
  }
}
.flexslider {
  margin-bottom: 0;
}
.flexslider li .bg {
  height: 500px;
  position: relative;
  width: 100%;
  display: table;
}
.flexslider li .bg .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.flexslider li .bg .msg {
  max-width: 400px;
  width: 400px !important;
  display: table-cell;
  vertical-align: middle;
  position: relative;
  z-index: 2;
}
.flexslider li .bg .msg h2 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-weight: 700;
  color: #0072BC;
  font-size: 40px;
  line-height: 50px;
}
.flexslider li .bg .msg h4 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 30px;
  line-height: 35px;
  margin: 30px 0;
  color: white;
}
@media (max-width: 1024px) {
  .flexslider li .msg {
    width: 350px !important;
  }
  .flexslider li .msg h2 {
    font-size: 25px !important;
    line-height: 39px !important;
  }
  .flexslider li .msg h4 {
    font-size: 19px !important;
    line-height: 24px !important;
    line-height: auto !important;
  }
}
@media (max-width: 768px) {
  .flexslider .img {
    opacity: 0.5;
  }
}
@media (max-width: 400px) {
  .flexslider .flex-direction-nav a {
    width: 20px !important;
    height: 23px !important;
  }
}
