body {
  font-family: 'Open Sans', sans-serif;
  background: #f5f6f7;
}
a,
a:hover,
a:visited,
a:focus {
  text-decoration: none;
}
ul {
  list-style-type: none;
  list-style-position: outside;
  padding: 0;
  margin: 0;
}
p {
  margin: 0;
}
.fullW {
  background: #003874;
  margin-bottom: 30px;
}
/* ========== HEADER ========== */
.topBar {
  height: 32px;
  background: #003874;
  color: #FFF;
  text-align: center;
  font-size: 11px;
  padding: 7px 0 0 0;
}
header {
  background: #FFF;
  display: block;
  height: 100px;
}
@media (max-width: 990px) {
  header {
    height: auto;
  }
}
.logo {
  display: block;
  margin-top: 10px;
}
.logo img {
  max-width: 100%;
  height: auto;
  margin-top: 10px;
}
.logo h1 {
  margin: 0;
  padding: 0;
}
@media (max-width: 990px) {
  .logo {
    text-align: center;
  }
}
.content {
  background: #FFF;
  padding: 20px;
  margin-bottom: 30px;
}
.btn {
  display: block;
  padding: 7px 0;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-top: 20px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.btn:hover {
  color: #FFF;
}
.btn.dark {
  background: #003874;
}
.btn.dark:hover {
  background: #0051a7;
}
/* ========== MENU ========== */
/********** Navigation desktop **********/
@media (min-width: 992px) {
  nav .burger {
    display: none;
  }
  nav .navItem {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    width: 16%;
    position: relative;
  }
  nav .navItem:hover .navTitle .link {
    color: #117cba;
  }
  nav .navTitle {
    display: inline-block;
    width: 100%;
  }
  nav .navTitle .link {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    display: block;
    color: #003874;
    height: 100px;
    line-height: 0,016em;
    padding-top: 30px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  nav .navTitle .link span {
    display: block;
    font-size: 11px;
    font-weight: 400;
  }
  nav .navTitle .toggle {
    display: none;
  }
  nav .subNav {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 30;
    background: #003874;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  nav .subNav ul:nth-child(3) li:last-child a {
    font-weight: 700;
  }
  nav .subNav ul {
    list-style-type: none;
  }
  nav .subNav ul li a {
    display: block;
    padding: 10px 0 10px 0;
    font-size: 12px;
    font-weight: 400;
    color: #FFF;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  nav .subNav ul li a:hover {
    background: #117cba;
  }
  nav .navItem:hover .subNav {
    display: block;
  }
}
/********** Navigation mobile **********/
@media (max-width: 991px) {
  nav {
    z-index: 9999;
    margin-top: 20px;
  }
  nav .burger {
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    padding: 5px 0;
  }
  nav .burger p {
    color: #003874;
    margin-left: 5px;
    display: inline-block;
  }
  nav .burger .fa {
    display: inline-block;
    color: #003874;
  }
  nav .navItem {
    display: none;
    width: 100%;
    z-index: 9999;
  }
  nav .navItem.openMobile {
    display: block;
  }
  nav .navTitle {
    width: 100%;
    display: block;
    margin: 0;
    cursor: pointer;
  }
  nav .navTitle .toggle {
    text-align: right;
    color: #003874;
  }
  nav .navTitle.active {
    background: #003874;
  }
  nav .navTitle.active a {
    color: #FFF;
  }
  nav .navTitle .link span {
    display: none;
  }
  nav .navTitle a {
    display: inline-block;
    box-sizing: border-box;
    text-align: left;
    color: #003874;
    width: 50%;
    height: 100%;
    padding: 20px 20px 20px 20px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
  }
  nav .subNav {
    display: none;
    position: relative;
    width: 100%;
    background-color: #fafafa;
    z-index: 9999;
    padding: 10px 20px 10px 20px;
  }
  nav .subNav.openMobile {
    display: block;
  }
  nav .subNav a {
    display: block;
    padding: 10px 0;
    color: #1a1a1a;
  }
  nav .subNavTitle {
    display: none;
  }
}
/* ========== HOME ==========*/
section.home h4 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
section.home h4.blue {
  color: #003874;
}
section.home h4.white {
  color: #FFF;
}
section.home h4.center {
  text-align: center;
}
@media (max-width: 768px) {
  section.home h4 {
    text-align: center;
  }
}
.homeBigImg {
  display: block;
  width: 100%;
  height: 456px;
  background-image: url('../img/home-datacenter.jpg');
  background-position: center;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding-top: 90px;
}
.homeBigImg h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 300;
  text-transform: uppercase;
  color: #FFF;
  margin: 0;
  padding: 0 30px;
}
@media (max-width: 990px) {
  .homeBigImg {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .homeBigImg {
    padding-top: 40px;
    height: 410px;
  }
  .homeBigImg h2 {
    font-size: 30px;
  }
}
.features {
  margin-top: -210px;
}
@media (max-width: 990px) {
  .features.hosting,
  .features.server {
    margin-top: -210px;
  }
  .features.webdev,
  .features.spam {
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  .features.hosting {
    margin-top: -210px;
  }
  .features.server,
  .features.webdev,
  .features.spam {
    margin-top: 0px;
  }
}
.features img {
  display: block;
  max-width: 110px;
  height: auto;
  margin: auto;
}
.features h3 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #003874;
  margin-bottom: 20px;
  line-height: 1em;
}
.features p {
  font-size: 12px;
  text-align: center;
}
.technologies img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto 30px auto;
}
.technologies p {
  text-align: center;
  font-size: 16px;
}
.technologies ul {
  display: inline-block;
  width: 49%;
  vertical-align: top;
}
.technologies ul li {
  padding: 7px 0;
}
.technologies ul li .fa {
  margin-right: 5px;
  color: #00a2ff;
}
.domain {
  color: #FFF;
  text-align: center;
  margin-bottom: 20px;
}
.domain form {
  display: block;
}
.domain form select,
.domain form input {
  display: inline-block;
  vertical-align: middle;
  height: 38px;
  border: none;
  margin: 0 2px;
  color: #1a1a1a;
  padding: 0px 10px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.domain form .validBtn {
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  background: #00a2ff;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.domain form .validBtn:hover {
  background: #33b5ff;
}
@media (max-width: 767px) {
  .domain form select,
  .domain form input {
    display: block;
    width: 80%;
    margin: 0 auto 30px auto;
  }
}
.architecture {
  text-align: center;
}
.architecture img {
  margin: auto;
  max-width: 100%;
  height: auto;
}
/* ========== PRICING ========== */
.pageTitle {
  padding: 15px 0;
}
.pageTitle span {
  font-size: 32px;
  font-weight: 700;
  line-height: 1em;
  color: #003874;
  text-align: center;
  text-transform: uppercase;
  display: block;
}
.pageTitle .sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4em;
}
.presentation p {
  text-align: justify;
}
.presentation img {
  max-width: 100%;
  display: block;
  height: auto;
  margin: auto;
}
.simpleList {
  margin-top: 10px;
  list-style: disc inside;
}
.simpleList li {
  padding: 5px 0;
}
.priceBox .title {
  display: block;
  width: 100%;
  height: 72px;
  padding-top: 17px;
}
.priceBox .title p {
  font-size: 22px;
  font-weight: 700;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  line-height: 0.8em;
}
.priceBox .title p span {
  font-size: 12px;
  font-weight: 400;
}
.priceBox .price {
  font-size: 52px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: 0.6em;
  margin-top: 20px;
  margin-bottom: 35px;
}
.priceBox .price span {
  font-size: 22px;
  font-weight: 400;
}
@media (max-width: 990px) and (min-width: 768px) {
  .priceBox .price {
    font-size: 34px;
    line-height: 0.8em;
  }
}
@media (max-width: 400px) {
  .priceBox .price {
    font-size: 34px;
    line-height: 0.8em;
  }
}
.priceBox ul li {
  color: #808080;
  padding: 5px 0;
}
.priceBox ul li:before {
  font-family: FontAwesome;
  content: "\f058";
  margin-right: 10px;
}
.priceBox.green .title {
  background-color: #1fad9b;
}
.priceBox.green .price,
.priceBox.green ul li:before {
  color: #1fad9b;
}
.priceBox.green .btn {
  background: #1fad9b;
}
.priceBox.green .btn:hover {
  background: #27d8c2;
}
.priceBox.blue .title {
  background-color: #0087d5;
}
.priceBox.blue .price,
.priceBox.blue ul li:before {
  color: #0087d5;
}
.priceBox.blue .btn {
  background: #0087d5;
}
.priceBox.blue .btn:hover {
  background: #09a5ff;
}
.priceBox.violet .title {
  background-color: #544aa3;
}
.priceBox.violet .price,
.priceBox.violet ul li:before {
  color: #544aa3;
}
.priceBox.violet .btn {
  background: #544aa3;
}
.priceBox.violet .btn:hover {
  background: #7066ba;
}
.priceBox.medium .price {
  font-size: 36px;
  line-height: 0.8em;
}
.priceBox.small .title {
  height: 62px;
  padding-top: 17px;
}
.priceBox.small .title p {
  font-size: 16px;
  line-height: 0.8em;
}
.priceBox.small .title p span {
  font-size: 10px;
}
@media (max-width: 1024px) and (min-width: 990px) {
  .priceBox.small .title p {
    font-size: 14px;
  }
  .priceBox.small .title p span {
    font-size: 9px;
  }
}
@media (max-width: 767px) {
  .priceBox.small .title p {
    font-size: 22px;
    line-height: 0.8em;
  }
  .priceBox.small .title p span {
    font-size: 12px;
  }
}
.priceBox.small .price {
  font-size: 26px;
  line-height: 0.8em;
  margin-top: 15px;
  margin-bottom: 15px;
}
.priceBox.small .price span {
  font-size: 16px;
}
@media (max-width: 990px) and (min-width: 768px) {
  .priceBox.small .price {
    font-size: 34px;
    line-height: 0.8em;
  }
}
@media (max-width: 400px) {
  .priceBox.small .price {
    font-size: 34px;
    line-height: 0.8em;
  }
}
.priceBox.small ul {
  font-size: 12px;
}
.priceBox.small ul li:before {
  margin-right: 5px;
}
.priceBox.small .content {
  padding: 10px;
}
.well {
  text-align: center;
}
.well p {
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
}
.well p .fa {
  font-size: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
.well .btn {
  background: #00a2ff;
}
.well .btn:hover {
  background: #33b5ff;
}
@media (min-width: 990px) {
  .well .btn {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 15px;
  }
}
.addInfos {
  border-top: 3px solid #003874;
}
.addInfos .title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #003874;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 10px;
}
.addInfos .title .fa {
  font-size: 30px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}
/* ========== OFFERS ========== */
.offer .ico {
  display: block;
  max-width: 110px;
  height: auto;
  margin: auto;
}
.offer h3 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #003874;
  margin-bottom: 20px;
  line-height: 1em;
}
.offer p {
  font-size: 16px;
  text-align: center;
  color: #808080;
}
.offer img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 10px auto;
}
/* ========== COMPONENTS ========== */
.components h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #003874;
  margin-top: 0;
}
.components .panel-group .panel {
  border: 2px solid #e6e6e6;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.components .panel-group .panel .panel-heading {
  background: #e6e6e6;
}
.components .panel-group .panel .panel-heading h4 {
  margin: 0;
}
.components .panel-group .panel .panel-heading h4 a {
  display: block;
  padding: 10px 10px;
}
.components .panel-group .panel .panel-heading h4 span,
.components .panel-group .panel .panel-heading h4 .fa {
  display: inline-block;
  vertical-align: middle;
}
.components .panel-group .panel .panel-heading h4 span {
  text-align: left;
  width: 80%;
  color: #003874;
  font-size: 14px;
  font-weight: 700;
}
.components .panel-group .panel .panel-heading h4 .fa {
  text-align: right;
  width: 20%;
  color: #003874;
}
.components .panel-group .panel .panel-body {
  padding: 10px;
}
.components .compInfo .title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.components .compInfo p {
  font-size: 14px;
}
.components .compInfo.green {
  border-top: 5px solid #1fad9b;
}
.components .compInfo.green .title {
  color: #1fad9b;
}
.components .compInfo.blue {
  border-top: 5px solid #117cba;
}
.components .compInfo.blue .title {
  color: #117cba;
}
.components .compInfo.violet {
  border-top: 5px solid #544aa3;
}
.components .compInfo.violet .title {
  color: #544aa3;
}
.components .compInfo.pink {
  border-top: 5px solid #c43b3b;
}
.components .compInfo.pink .title {
  color: #c43b3b;
}
.components .pricingAlt p {
  margin-bottom: 5px;
}
.components .pricingAlt p span {
  display: inline-block;
  width: 50%;
  vertical-align: top;
}
.components .pricingAlt p .right {
  text-align: right;
}
/* ========== CONTACT ========== */
.contact h3 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #003874;
  margin-top: 0;
}
.contact ul li {
  padding: 3px;
}
.contact ul a {
  color: #1a1a1a;
  text-decoration: underline;
}
.contact ul .fa {
  width: 15px;
  margin-right: 10px;
}
.contact .map iframe {
  display: block;
  width: 100%;
  height: 300px;
}
.contact form label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.contact form input {
  display: block;
  width: 100%;
  border: 2px solid #e6e6e6;
  color: #E6E6E6;
  padding: 5px 10px;
  margin-bottom: 30px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.contact form textarea {
  display: block;
  width: 100%;
  height: 265px;
  border: 2px solid #e6e6e6;
  color: #E6E6E6;
  padding: 5px 10px;
  margin-bottom: 20px;
}
.contact form .btn {
  width: 100%;
  border: none;
}
/* ========== ABOUT ========== */
.about h3 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #003874;
  margin-top: 0;
}
.about ul {
  margin-bottom: 30px;
}
.about ul li {
  padding: 3px;
}
.about ul a {
  color: #1a1a1a;
  text-decoration: underline;
}
.about ul .fa {
  width: 15px;
  margin-right: 10px;
}
.about img {
  float: left;
  margin: 0 10px 10px 0;
}
/* ========== ARTICLE ========== */
.article h3 {
  font-weight: 700;
  color: #003874;
  margin-top: 0;
}
.article p {
  text-align: justify;
  margin-bottom: 30px;
}
/* ========== FOOTER ========== */
footer {
  display: block;
  color: #FFF;
  margin-top: 30px;
}
footer .fullW {
  padding: 40px 0;
}
footer .title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}
footer p {
  font-size: 14px;
  margin-bottom: 15px;
}
footer ul {
  list-style: none inside;
}
footer ul .fa {
  margin-right: 10px;
}
footer ul a {
  color: #FFF;
  padding: 5px 0;
  display: block;
}
footer ul a:hover {
  color: #00a2ff;
}
@media (max-width: 990px) {
  footer .col-sm-6 {
    margin-bottom: 40px;
    text-align: center;
  }
}
footer .copyrights {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #B2B2B2;
  margin-bottom: 30px;
}
