/* TRANSITION */
/* COLORS */
/* MIXINS */
/*
grayscale      ex: filter: grayscale(100%);
sepia          ex: filter: sepia(100%);
saturate       ex: filter: saturate(0%);
hue-rotate     ex: filter: hue-rotate(45deg);
invert         ex: filter: invert(100%);
brightness     ex: filter: brightness(15%);
contrast       ex: filter: contrast(200%);
blur           ex: filter: blur(2px);
*/
@import url("https://fonts.googleapis.com/css?family=Nunito:300,400,600,700");
/* RESET */
* {
  padding: 0;
  margin: 0;
}

.site-container {
  overflow: hidden;
}

html {
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  color: #000000;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
html.no-scroll {
  overflow: hidden;
}

body {
  font-family: "Nunito", sans-serif;
  color: #000000;
}

ol, ul {
  list-style: none;
}

img,
svg {
  display: block;
}

img[src$=".svg"] {
  width: 100%;
}

input[type=text], input[type=tel], input[type=email], input[type=date], input[type=search], input[type=password], textarea, select {
  font-family: "Nunito", sans-serif;
}

img.feature {
  max-width: 100%;
  height: auto;
}

/* BUTTONS & As */
button {
  background: none;
}

.bt {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  -webkit-transform: translateZ(0);
  /* BUG CHROME */
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.bt-size1 {
  font-size: 17px;
  padding: 10px;
}

.bt-size2 {
  font-size: 12px;
  line-height: 1;
  padding: 10px 30px;
}

.bt-color1 {
  background-color: #fa8528;
  color: #fff;
  text-transform: uppercase;
  border-radius: 8px;
}
.bt-color1:hover {
  background: #fff;
  color: #fa8528;
  text-decoration: none;
}

.bt-color-blue {
  background-color: #046bf8;
  color: #fff;
  text-transform: uppercase;
  border-radius: 8px;
}
.bt-color-blue:hover {
  background: #fff;
  color: #fa8528;
  text-decoration: none;
}

.bt-color2 {
  position: relative;
  color: #046bf8;
  text-transform: uppercase;
  border: 2px solid #046bf8;
}
.bt-color2:hover {
  background: #046bf8;
  color: #fff;
  text-decoration: none;
}
.bt-color2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 0;
  border-color: #046bf8 transparent transparent transparent;
}

.bt-color3 {
  position: relative;
  color: #fa8528;
  text-transform: uppercase;
  border: 2px solid #fa8528;
}
.bt-color3:hover {
  background: #fa8528;
  color: #fff;
  text-decoration: none;
}
.bt-color3:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 0;
  border-color: #fa8528 transparent transparent transparent;
}

.bt-color4 {
  position: relative;
  color: #046bf8;
  text-transform: uppercase;
  border: 2px solid #046bf8;
}
.bt-color4:hover {
  background: #046bf8;
  color: #fff;
  text-decoration: none;
}

.bt-disabled {
  cursor: default;
  opacity: 0.5;
}

/* Hn */
.h1 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 50px;
}

.h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
}

.h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

/* SHADOW */
.shadow1 {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* HEADER */
header {
  position: relative;
  padding-top: 20px;
  padding-bottom: 14px;
  z-index: 2;
}
header .logo {
  float: left;
  width: 210px;
}
header .logo path {
  fill: #fff;
}
header ul {
  float: right;
  padding-top: 10px;
  margin: 0;
}
header li {
  position: relative;
  float: left;
  margin-left: 20px;
}
header li a {
  display: block;
  font-size: 17px;
  line-height: 28px;
  color: #fff;
}
header li a:hover {
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid #fa8528;
}
header li.sign-in a {
  color: #fa8528;
}
header li.active a {
  border-bottom: 2px solid #fa8528;
}
header li.active:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 0;
  border-color: #fa8528 transparent transparent transparent;
}
header li:first-child {
  margin-left: 0;
}
header .display-mobile-menu {
  float: right;
  width: 30px;
  height: 32px;
  background: none;
  border: none;
  margin-top: 5px;
}
header .display-mobile-menu span {
  display: block;
  background: #fff;
  width: 100%;
  height: 3px;
  border-radius: 1px;
}
header .display-mobile-menu span + span {
  margin-top: 7px;
}
header.header-int {
  background: #046bf8;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 100;
}
.mobile-menu .close-mobile-menu {
  display: block;
  position: absolute;
  left: 50%;
  top: 40px;
  width: 30px;
  height: 30px;
  background: url(../img/close.svg) no-repeat center center;
  background-size: 30px 30px;
  margin-left: -15px;
}
.mobile-menu .c {
  padding-top: 120px;
}
.mobile-menu .logo {
  display: block;
  max-width: 210px;
  margin: 0 auto 20px auto;
}
.mobile-menu .logo .st0 {
  fill: #046bf8;
}
.mobile-menu ul {
  text-align: center;
}
.mobile-menu li {
  padding: 15px 0;
}
.mobile-menu li a {
  font-size: 20px;
  display: block;
}
.mobile-menu li a:hover {
  text-decoration: none;
}

/* HOMEPAGE SPLASH */
.homepage-splash {
  position: relative;
  background: #046bf8 url(../img/bg.jpg) no-repeat center top;
  text-align: center;
  padding-top: 280px;
  padding-bottom: 80px;
  margin-top: -84px;
  margin-bottom: 125px;
  z-index: 1;
}
.homepage-splash .h1 {
  color: #fff;
  margin-bottom: 25px;
}
.homepage-splash p {
  font-size: 20px;
  color: #fff;
  max-width: 790px;
  margin: 0 auto 25px auto;
}
.homepage-splash p a {
  color: #fff;
  text-decoration: underline;
}
.homepage-splash p a:hover {
  opacity: 0.8;
}
.homepage-splash .bt {
  width: 280px;
  margin: 0 auto;
}
.homepage-splash:after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 50%;
  margin-left: -50px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100px 100px 0 0;
  border-color: #046bf8 transparent transparent transparent;
}

/* HOMEPAGE BENEFITS */
.homepage-benefits {
  margin-top: -125px;
}

.homepage-why {
  margin-top: -125px;
  padding: 125px 0;
}
.homepage-why ul {
  list-style: inside;
  padding-left: 30px;
}

.homepage-what {
  background: #fa8528;
  padding: 100px 0;
  color: #fff;
}
.homepage-what .h2 {
  text-align: center;
}
.homepage-what ul {
  list-style: inside;
  padding-left: 30px;
}

.homepage-security {
  background: #046bf8;
  color: #fff;
  padding: 100px 0;
}
.homepage-security a {
  color: #fa8528;
  text-decoration: underline;
}
.homepage-security a:hover {
  opacity: 0.8;
}

.homepage-pro {
  padding: 100px 0;
}
.homepage-pro .pro-services {
  padding-top: 20px;
}
.homepage-pro .item {
  max-width: 284px;
  text-align: center;
}
.homepage-pro .item .v {
  max-width: 170px;
  margin: 0 auto 20px auto;
}

/* HOMEPAGE 3 COLS */
.homepage-3-cols {
  padding: 125px 0;
}
.homepage-3-cols .c + .c {
  margin-top: 60px;
}
.homepage-3-cols .item {
  margin: 0 auto;
}
.homepage-3-cols .item .v {
  max-width: 210px;
  margin: 0 auto 20px auto;
}
.homepage-3-cols .item p {
  margin-bottom: 30px;
}
.homepage-3-cols .item p a {
  color: #000000;
  text-decoration: underline;
}
.homepage-3-cols .item p a:hover {
  opacity: 0.8;
}
.homepage-3-cols .item .bt {
  display: block;
  width: 170px;
  margin: 0 auto;
}

/* HOMEPAGE VIDEO */
.homepage-video {
  text-align: center;
  color: #fff;
}
.homepage-video .v {
  margin: 50px;
}
.homepage-video .v img {
  display: inline-block;
}
.homepage-video p:first-of-type {
  font-size: 30px;
}

/* HOMEPAGE SLIDER */
#mainCarousel {
  max-width: 650px;
  margin: 0 auto;
}

/* HOMEPAGE HELP */
.homepage-help {
  background: #fa8528;
  text-align: center;
  color: #fff;
  padding: 100px 0;
}

/* HOMEPAGE SERVICES */
.homepage-services {
  text-align: center;
  padding: 100px 0;
}
.homepage-services .item .v {
  max-width: 125px;
}

/* HOMEAGE TRY IT */
.homepage-try-it {
  padding: 0 0 100px 0;
}
.homepage-try-it .h1 {
  text-align: center;
}
.homepage-try-it .console {
  color: #fff;
  background: #1d1f21;
  border-radius: 8px;
  padding: 40px 20px;
}
.homepage-try-it .console pre {
  margin-bottom: 30px;
}
.homepage-try-it .online {
  padding: 40px 0;
}
.homepage-try-it .online p {
  margin-bottom: 30px;
}

/* HOMEPAGE COMMU */
.homepage-commu {
  padding: 100px 0;
}
.homepage-commu .h1 {
  text-align: center;
}
.homepage-commu .c + .c {
  margin-top: 60px;
}
.homepage-commu .item {
  background: #fff;
  text-align: center;
  padding: 30px;
}
.homepage-commu .item .v {
  max-width: 170px;
  margin: 0 auto 20px auto;
}
.homepage-commu .item p a {
  color: #000000;
  text-decoration: underline;
}
.homepage-commu .item p a:hover {
  opacity: 0.8;
}

/* HOMEPAGE TESTIMONIALS */
.homepage-testimonials {
  background: #f7f7f7;
  padding: 100px 0;
}
.homepage-testimonials .h1 {
  text-align: center;
}
.homepage-testimonials .item {
  padding-top: 30px;
  padding-bottom: 30px;
  margin: 0 15px;
}
.homepage-testimonials .item .c {
  background: #fff;
  text-align: center;
  padding: 50px 30px;
}
.homepage-testimonials .item .v {
  position: relative;
  max-width: 290px;
  margin: 0 auto 30px auto;
}
.homepage-testimonials .item .v img {
  position: relative;
  max-width: 125px;
  border-radius: 50%;
  border: 5px solid #046bf8;
  margin: 0 auto;
  z-index: 2;
}
.homepage-testimonials .item .v:before, .homepage-testimonials .item .v:after {
  position: absolute;
  width: 92px;
  height: 80px;
  content: "";
  background: url(../img/guillemets.svg) no-repeat center center;
  background-size: 92px 80px;
}
.homepage-testimonials .item .v:before {
  top: 0;
  left: 0;
}
.homepage-testimonials .item .v:after {
  right: 0;
  bottom: 0;
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.homepage-testimonials .item p {
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
}
.homepage-testimonials .item p a {
  color: #000000;
  text-decoration: underline;
}
.homepage-testimonials .item p a:hover {
  opacity: 0.8;
}

/* PAGE NGYNLAB */
.page {
  padding: 100px 0;
}
.page .h1 {
  text-align: center;
}

.page-ngynlab .intro {
  background: #f7f7f7;
  padding: 45px;
  margin-bottom: 100px;
}
.page-ngynlab .intro .c-1 {
  margin-bottom: 50px;
}
.page-ngynlab .intro .c-1 .v {
  max-width: 370px;
  margin: 0 auto;
}
.page-ngynlab .intro .c-2 .v {
  width: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 50px auto;
}
.page-ngynlab .questions {
  text-align: center;
}
.page-ngynlab .questions .bt {
  width: 280px;
  margin: 0 auto;
}

/* BLOG HEADER */
.blog-header {
  background: #f7f7f7;
  text-align: center;
  padding: 80px 0 35px 0;
  margin-bottom: 80px;
}
.blog-header h1 {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 20px;
}
.blog-header #twitter_container,
.blog-header .author {
  display: inline-block;
}
.blog-header img {
  display: inline-block;
}
.blog-header .rounded {
  border-radius: 20%;
}
.blog-header .media-date {
  margin-left: 15px;
  color: #777;
  font-size: 25px;
}

.media-object {
  margin: 0 20px 10px 0;
  max-width: 100%;
  height: auto;
}

.blog-footer {
  padding-bottom: 20px;
}

/* STANDARD FORM */
.std-form {
  max-width: 748px;
  margin: 0 auto 80px auto;
}
.std-form input,
.std-form textarea {
  font-size: 18px;
  width: 100%;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  padding: 15px 20px;
}
.std-form button {
  border: none;
  width: 280px;
  border: 1px solid #fa8528;
}
.std-form .row {
  margin-bottom: 30px;
}

/* LOOP */
.loop .infinite-more-link {
  display: none;
}
.loop .item {
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 70px;
  margin-bottom: 70px;
}
.loop .item .t h2 {
  font-size: 40px;
}
.loop .item .twitter-share-button {
  float: right;
}

/* AUTHOR */
.author {
  margin-bottom: 20px;
}
.author img {
  float: left;
  border-radius: 50%;
  margin-right: 10px;
}
.author p {
  font-size: 14px;
  color: #9a9a9a;
  line-height: 30px;
  white-space: nowrap;
  margin: 0;
}

/* NAV POSTS */
.nav-posts {
  border-top: 1px solid #dbdbdb;
  padding-top: 50px;
  margin: 50px 0 150px 0;
}
.nav-posts .previous {
  float: left;
}
.nav-posts .next {
  float: right;
}

/* SERVICES */
.services .t {
  font-size: 40px;
  text-align: center;
  margin-bottom: 80px;
}
.services .t strong {
  display: block;
  font-weight: normal;
  color: #046bf8;
}
.services .item {
  text-align: center;
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 100px;
  margin-bottom: 100px;
}
.services .item .v {
  max-width: 170px;
  margin: 0 auto 30px auto;
}
.services .item h2 {
  font-size: 40px;
  color: #046bf8;
}
.services .item p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* RATES */
.rates {
  margin-bottom: 80px;
}
.rates .t {
  font-size: 40px;
  color: #046bf8;
  text-align: center;
  margin-bottom: 80px;
}
.rates table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.rates table th {
  background: #046bf8;
  width: 25%;
  text-align: center;
  color: #fff;
}
.rates table td {
  color: #9a9a9a;
}
.rates table td .v {
  margin: 0 auto;
}
.rates table td .yes {
  max-width: 35px;
}
.rates table td .no {
  max-width: 26px;
}
.rates table th,
.rates table td {
  vertical-align: top;
  border: 1px solid #dbdbdb;
  padding: 20px;
}
.rates table th.empty,
.rates table td.empty {
  background: none;
  border: none;
}
.rates table th.td1,
.rates table td.td1 {
  background: #f7f7f7;
  color: #000000;
}

/* POPIN SERVICE */
.fancybox-bg {
  background: #fff;
}

.fancybox-close-small {
  height: 52px;
  width: 64px;
  top: -52px;
  right: 0;
}
.fancybox-close-small:after {
  top: 0;
  right: 0;
  width: 64px;
  height: 52px;
  line-height: 52px;
  font-weight: 300;
  font-size: 45px;
  color: #fff;
  background: #046bf8;
  color: #fff;
  border-radius: 5px 5px 0 0;
}

.popin-service {
  padding: 0;
  overflow: visible;
}
.popin-service .t {
  background: #f7f7f7;
  padding: 20px;
}
.popin-service .t h2 {
  float: left;
  font-size: 40px;
  color: #046bf8;
  margin-bottom: 0;
}
.popin-service .t .order {
  float: right;
  padding-top: 5px;
}
.popin-service .t .order p {
  float: left;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 45px;
  margin-right: 20px;
}
.popin-service .c {
  padding: 20px;
}
.popin-service .note {
  background: #f7f7f7;
  border-left: 10px solid #046bf8;
  padding: 30px;
}
.popin-service .note h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.popin-service .note p {
  font-size: 16px;
  color: #9a9a9a;
}

/* SPONSORS */
.sponsors {
  padding: 30px 0 0 0;
}
.sponsors:last-of-type {
  padding-bottom: 80px;
}

.sponsor {
  text-align: center;
  border: 1px solid #dbdbdb;
  padding: 20px;
  margin-bottom: 40px;
}
.sponsor h3 {
  margin-bottom: 30px;
}
.sponsor p {
  font-size: 18px;
  margin-bottom: 30px;
}
.sponsor .amount {
  position: relative;
  display: inline-block;
  color: #046bf8;
  background: #f7f7f7;
  border: 1px solid #dbdbdb;
  padding: 15px 30px;
}
.sponsor .b {
  background: #046bf8;
  margin-bottom: 50px;
}
.sponsor .b .v {
  width: 0;
  height: 20px;
  background: #fa8528;
}

.tab-content {
  padding: 20px 0;
}

/* CNIL WARNING */
.cnil-warning {
  display: none;
  background: #f7f7f7;
  padding: 20px 0;
}
.cnil-warning p {
  padding-right: 100px;
}
.cnil-warning p a {
  color: #046bf8;
  text-decoration: underline;
}
.cnil-warning p a:hover {
  opacity: 0.8;
}
.cnil-warning .bt {
  float: right;
  padding: 10px;
}

/* FOOTER */
footer {
  background: #046bf8;
  padding: 100px 0;
}
footer .c {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
footer .c + .c {
  margin-top: 30px;
}
footer h2 {
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 40px;
}
footer a {
  font-size: 15px;
  color: #fff;
}
footer a:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

/* RTE */
.rte .clr {
  clear: both;
}
.rte > h1 {
  font-size: 56px;
  margin: 40px 0 20px 0;
}
.rte > h2 {
  font-size: 40px;
  color: #046bf8;
  margin: 40px 0 20px 0;
}
.rte > h3 {
  font-size: 30px;
  margin: 40px 0 20px 0;
}
.rte > h4 {
  font-size: 24px;
  margin: 30px 0 20px 0;
}
.rte p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.rte p a {
  color: #046bf8;
  -webkit-transform: translateZ(0);
  /* BUG CHROME */
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.rte p a:hover {
  opacity: 0.6;
}
.rte .intro p {
  font-size: 26px;
}
.rte > ul {
  font-size: 18px;
  margin-bottom: 40px;
}
.rte > ul li {
  background: url(../svg/bullet.svg) no-repeat left 10px;
  background-size: 8px 6px;
  padding-left: 20px;
  margin-top: 20px;
}
.rte > ul li:first-child {
  margin-top: 0;
}
.rte > ul li a {
  color: #000000;
  text-decoration: none;
  -webkit-transform: translateZ(0);
  /* BUG CHROME */
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.rte > ul li a:hover {
  opacity: 0.6;
}
.rte .align {
  position: relative;
  margin-bottom: 60px;
}
.rte .align img {
  display: inline-block;
}
.rte .alignleft,
.rte .alignright {
  margin-top: 5px;
}
.rte figcaption {
  font-size: 14px;
  color: #9a9a9a;
  padding-top: 10px;
}
.rte figcaption a {
  color: #9a9a9a;
}
.rte .embed {
  position: relative;
  padding-bottom: 56.25%;
  margin: 30px 0 70px 0;
}
.rte .embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.rte .separator {
  background: #dbdbdb;
  width: 150px;
  height: 3px;
  margin: 50px auto;
}
.rte .cta-button {
  margin-bottom: 50px;
}
.rte.rte-centered {
  text-align: center;
}

/*# sourceMappingURL=styles.css.map */
