/*Colors*/
/* Fonts */
/* Breakpoints */
header .tb-nav {
  background-color: #000;
}
header .tb-nav .navbar-brand {
  margin-left: -5px;
}
header .tb-nav .navbar-collapse {
  flex-grow: 0;
  margin-right: -25px;
}
header .tb-nav .navbar-collapse .nav-item {
  padding: 0 30px 0 25px;
}
header .tb-nav .navbar-collapse .nav-item:last-child {
  padding-right: 0;
}
header .tb-nav .navbar-collapse .nav-item a {
  font-family: 'Quattrocento Sans', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
}
header .tb-nav .navbar-collapse .nav-item a.sign-up {
  background: #c70851;
  border-radius: 4px;
  padding: 10px 20px;
}
header .tb-nav .navbar-collapse .nav-item a.sign-up:hover {
  color: #fff;
  transition: all 0.2s;
  filter: brightness(85%);
}

* {
  font: 18px 'Roboto', sans-serif;
}

.container-xl {
  max-width: 1740px;
  margin: 30px auto;
}

.container-l {
  max-width: 1280px;
  margin: 20px auto 105px;
}

.sticky {
  position: -webkit-sticky;
  /* Safari */
  position: sticky;
  top: 0;
}

.banner-box {
  height: 648px;
  background: #000;
  width: 100%;
}
.banner-box .banner {
  background: url(../images/background_home.png);
  background-size: cover;
  height: 496px;
  width: 100%;
  top: 0;
}
.banner-box .banner .container {
  position: relative;
  display: flex;
  flex-flow: wrap;
  padding: 136px 0 0;
}
.banner-box .banner .container .text-block {
  flex: 0 0 40%;
  padding: 5px;
}
.banner-box .banner .container .text-block h1 {
  font-family: 'Quattrocento Sans', sans-serif;
  font-weight: bold;
  font-size: 48px;
  line-height: 110%;
  color: #fff;
  text-transform: none;
  margin: 10px 0;
}
.banner-box .banner .container .text-block .text {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  margin: 40px 0 0;
  font-size: 18px;
}
.banner-box .banner .container .text-block .sign-up-p {
  margin: 20px 0 0;
}
.banner-box .banner .container .text-block .sign-up-p a {
  font-family: 'Quattrocento Sans', sans-serif;
  font-weight: bold;
  background: #c70851;
  border-radius: 4px;
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 40px;
}
.banner-box .banner .container .text-block .sign-up-p a:hover {
  color: #fff;
  transition: all 0.2s;
  filter: brightness(85%);
  text-decoration: none;
}
.banner-box .banner .container .mac {
  background: url(../images/macbook.png);
  background-size: cover;
  height: 463px;
  width: 761px;
  right: -30px;
  position: absolute;
  flex: 0 0 60%;
}
.banner-box .banner .container .macbook {
  position: absolute;
  right: -30px;
  max-width: 90%;
  bottom: -160px;
}

.content .content-nav {
  background-color: #ececec;
}
.content .content-nav .content-nav-links {
  width: 100%;
  padding: 0;
}
.content .content-nav .content-nav-links a {
  font-family: 'Quattrocento Sans', sans-serif;
  font-size: 20px;
  font-weight: bold;
  height: 60px;
  color: #8d8d8d;
  text-transform: uppercase;
  padding: 18px 60px;
}
.content .content-nav .content-nav-links a.active {
  color: #c70851;
  background-color: #fff;
}
.page .content .head {
  width: 100%;
  margin: 90px 30px 20px;
}
.page .content h3 {
  font-family: 'Quattrocento Sans', sans-serif;
  font-size: 24px;
  color: #a0a7af;
  line-height: 150%;
  width: 100%;
}
.content .header {
  width: 100%;
  margin-bottom: 45px;
  margin-top: 110px;
}
.content .header > h2 {
  font-family: 'Quattrocento Sans', sans-serif;
  font-weight: bold;
  font-size: 56px;
  line-height: 200%;
}
.page .content .header {
  margin: 30px 30px 20px;
}
.page .content .header h1 {
  font-family: 'Quattrocento Sans', sans-serif;
  font-size: 56px;
  line-height: 200%;
}
.page .content .header h2 {
  font-family: 'Quattrocento Sans', sans-serif;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  text-transform: uppercase;
}
.content .header.sec {
  margin-top: 33px;
  margin-bottom: 20px;
}
.page .content p i {
  font-style: italic;
}
.page .content h2 {
  margin: 20px 0;
}
.page .content h2.center {
  text-align: center;
}
.page .content ul,
.page .content ol {
  width: 100%;
  counter-reset: myCounter;
  page-break-after: left;
}
.page .content ul[type='a'],
.page .content ol[type='a'] {
  counter-reset: listStyle;
}
.page .content ul[type='a'] li,
.page .content ol[type='a'] li {
  counter-increment: listStyle;
}
.page .content ul[type='a'] li::before,
.page .content ol[type='a'] li::before {
  content: counter(listStyle, lower-alpha) '.';
}
.page .content ul[type='i'],
.page .content ol[type='i'] {
  counter-reset: listStyleRoman;
}
.page .content ul[type='i'] li,
.page .content ol[type='i'] li {
  counter-increment: listStyleRoman;
}
.page .content ul[type='i'] li::before,
.page .content ol[type='i'] li::before {
  content: counter(listStyleRoman, lower-roman) '.';
}
.page .content ul li,
.page .content ol li {
  list-style: none;
}
.page .content ul li::before,
.page .content ol li::before {
  counter-increment: myCounter;
  content: counter(myCounter) '.';
  display: inline-block;
  font-size: 24px;
  float: left;
  margin: 5px 3px 0 0;
  line-height: 1;
  color: #a0a7af;
}
.page .content ul li ul li:before,
.page .content ul li ol li:before,
.page .content ol li ul li:before,
.page .content ol li ol li:before {
  margin: 4px 3px 0 0;
  font-size: 18px;
}
.page .content .ul-lvl li::before {
  margin: 4px 3px 0 0;
  font-size: 18px;
}
.content .documents {
  margin-bottom: 70px;
}
.content .documents p {
  color: #a0a7af;
  line-height: 150%;
  width: 100%;
}
.content .documents h2 {
  margin: 20px 0;
}
.content.discover .container-xl .discover-item > div:nth-child(1) {
  width: calc(18% - 5px);
  max-width: calc(18% - 5px);
  float: left;
}
.content.discover .container-xl .discover-item > div:nth-child(2) {
  width: calc(70% - 10px);
  max-width: calc(70% - 10px);
  float: left;
  display: inline-block;
  padding: 0 5px 0 5px;
}
.content.discover .container-xl .discover-item > div:nth-child(2) h3 {
  font-family: 'Quattrocento Sans', sans-serif;
  font-weight: bold;
  font-size: 24px;
  line-height: 150%;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 10px;
  min-height: 30px;
}
.content.discover .container-xl .discover-item > div:nth-child(2) p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 150%;
  color: #000;
}
.content.features .container-l .list-items {
  margin: 30px auto;
}
.content.features .container-l .list-items.sec {
  margin: 20px auto 0;
}
.content.features .container-l .list-items.sec li:nth-child(1) {
  max-width: 510px;
  padding: 0 10px 0 0;
  margin-bottom: 50px;
  vertical-align: top;
  margin-top: 100px;
}
.content.features .container-l .list-items.sec li:nth-child(1) h3 {
  min-height: auto;
  white-space: nowrap;
}
.content.features
  .container-l
  .list-items.sec
  li:nth-child(1)
  div:nth-child(2) {
  width: calc(80% - 10px);
  max-width: calc(80% - 10px);
  padding: 0 0 0 15px;
}
.content.features .container-l .list-items.sec li:nth-child(2) {
  max-width: 720px;
  height: 480px;
  padding: 0 10px 0 0;
  margin-bottom: 50px;
}
.content.features
  .container-l
  .list-items.sec
  li:nth-child(2)
  div:nth-child(2) {
  width: calc(100% - 10px);
  max-width: calc(100% - 10px);
  padding: 10px 0 0 15px;
}
.content.features .container-l .list-items.sec li:nth-child(3) {
  max-width: calc(57% - 8px);
  padding: 0 10px 0 0;
  margin-bottom: 50px;
}
.content.features .container-l .list-items.sec li:nth-child(3) div {
  max-width: 720px;
  height: 480px;
  padding: 0 0 0 15px;
}
.content.features .container-l .list-items.sec li:nth-child(4) {
  max-width: 510px;
  padding: 0 10px 0 0;
  margin-bottom: 50px;
  vertical-align: top;
  margin-top: 100px;
}
.content.features .container-l .list-items.sec li:nth-child(4) h3 {
  min-height: auto;
  white-space: normal;
}
.content.features
  .container-l
  .list-items.sec
  li:nth-child(4)
  div:nth-child(2) {
  width: calc(80% - 10px);
  max-width: calc(80% - 10px);
  padding: 10px 0 0 15px;
}
.content.features .container-l .list-items li {
  margin: 0;
  list-style-type: none;
  display: inline-block;
  max-width: calc(33% - 8px);
  padding: 0 10px 0 0;
  margin-bottom: 50px;
}
.content.features .container-l .list-items li div:nth-child(1) {
  width: calc(18% - 5px);
  max-width: calc(18% - 5px);
  float: left;
}
.content.features .container-l .list-items li div:nth-child(2) {
  width: calc(70% - 10px);
  max-width: calc(70% - 10px);
  float: left;
  display: inline-block;
  padding: 0 5px 0 5px;
}
.content.features .container-l .list-items li div:nth-child(2) p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 150%;
  color: #000;
}
.content.features .container-l .list-items li h3 {
  font-family: 'Quattrocento Sans', sans-serif;
  font-weight: bold;
  font-size: 24px;
  line-height: 150%;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 10px;
  min-height: 30px;
}

.contact-form-container {
  min-width: 946px;
  padding: 88px 70px 55px;
  background-color: #c70750;
  border-radius: 4px;
  margin-bottom: 170px;
  box-shadow: 20px 15px 40px rgba(60, 90, 119, 0.4);
}
.contact-form-container > h3 {
  font-family: 'Quattrocento Sans', sans-serif;
  font-weight: bold;
  font-size: 56px;
  line-height: 62px;
  color: #fff;
  margin-bottom: 18px;
}
.contact-form-container > span {
  font-family: 'Roboto', sans-serif;
  line-height: 150%;
  color: #fff;
}
.contact-form-container form {
  margin-top: 52px;
}
.contact-form-container form label {
  color: #fff;
}
.contact-form-container form input {
  border: unset;
}
.contact-form-container form input:focus,
.contact-form-container form input:active {
  border: 0;
  box-shadow: unset;
}
.contact-form-container form textarea {
  border: unset;
}
.contact-form-container form textarea:focus,
.contact-form-container form textarea:active {
  border: 0;
  box-shadow: unset;
}
.contact-form-container form button {
  font-family: 'Quattrocento Sans', sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 18px;
  border: 0;
  background-color: #dbdcee;
  color: #000;
  padding: 12px 40px;
  text-transform: uppercase;
}
.contact-form-container form button:hover {
  transition: all 0.2s;
  filter: brightness(85%);
}

.accountbg {
  background: url(../images/background.png);
  position: absolute;
  background-size: cover;
  height: 100%;
  width: 100%;
  top: 0;
}

.card {
  border: 1px solid rgba(112, 112, 112, 0.12);
}

.wrapper-page {
  max-width: 440px;
  position: relative;
}
.wrapper-page.login {
  margin: 7.5% auto;
}
.wrapper-page.sign-up {
  margin: 2.5% auto;
}
.wrapper-page label,
.wrapper-page label a {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 14px !important;
}
.wrapper-page .w-md {
  min-width: 110px;
}
.wrapper-page .m-t-20 {
  margin-top: 20px;
}
.wrapper-page .m-b-0 {
  margin-bottom: 0;
}

footer {
  height: 360px;
  background: #000;
  max-width: 100%;
  color: #fff;
}
footer .footer-logo {
  margin: 75px auto 60px;
}
footer .copyright {
  font-size: 14px;
}
footer .nav-footer {
  flex-direction: row;
  display: flex;
  -ms-flex-direction: row;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
footer .nav-footer .nav-item {
  padding: 0 30px 0 25px;
}
footer .nav-footer .nav-item:last-child {
  padding-right: 0;
}
footer .nav-footer .nav-item a {
  text-transform: capitalize;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
}

@media (max-width: 1740px) {
  .content.discover .container-xl .discover-item {
    padding: 0 0 0 20px;
  }
}
@media (max-width: 1270px) {
  .content.features .container-l .list-items.sec {
    display: flex;
    flex-direction: column;
  }
  .content.features .container-l .list-items.sec li {
    width: 100%;
    max-width: 100% !important;
  }
  .content.features .container-l .list-items.sec li:nth-child(1) {
    order: 1;
  }
  .content.features .container-l .list-items.sec li:nth-child(2) {
    order: 2;
  }
  .content.features .container-l .list-items.sec li:nth-child(3) {
    order: 4;
  }
  .content.features .container-l .list-items.sec li:nth-child(4) {
    order: 3;
  }
}
@media (max-width: 1200px) {
  .banner-box .banner .container .macbook {
    max-width: 65%;
  }
}
@media (max-width: 992px) {
  .content .head {
    margin-bottom: 20px;
    margin-top: 50px;
  }
  .content .head > h2 {
    font-size: 40px;
  }

  .banner-box .banner .container .macbook {
    max-width: 65%;
    right: -80px;
    bottom: -50px;
  }
}
@media (max-width: 1024px) {
  footer .copyright {
    display: block;
    text-align: center;
  }
  footer .nav-footer {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  header .tb-nav .navbar-collapse .nav-item a.sign-up {
    background: unset;
    padding-left: unset;
  }

  .banner-box {
    height: unset;
  }
  .banner-box .banner .container .text-block {
    flex: unset;
    text-align: center;
    margin: 0 auto;
  }
  .banner-box .banner .container .text-block h1 {
    font-size: 35px;
  }
  .banner-box .banner .container .macbook {
    display: none;
  }

  .content .head > h2 {
    line-height: 100%;
  }
  .content.discover .container-xl .discover-item {
    padding: 0 0 20px 20px;
  }
  .content.discover .container-xl .discover-item > div:nth-child(1) {
    width: calc(25% - 5px);
    max-width: calc(25% - 5px);
  }
  .content.discover .container-xl .discover-item > div:nth-child(2) {
    width: calc(75% - 10px);
    max-width: calc(75% - 10px);
  }
  .content.features .container-l .list-items.sec {
    padding: 0 0 20px 20px;
  }
  .content.features .container-l .list-items.sec li {
    padding: 0 0 20px 20px;
  }
  .content.features .container-l .list-items.sec li div:nth-child(1) {
    width: unset;
    max-width: unset;
  }
  .content.features .container-l .list-items.sec li:nth-child(1) {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .content.features
    .container-l
    .list-items.sec
    li:nth-child(1)
    div:nth-child(2) {
    width: calc(75% - 10px);
    max-width: calc(75% - 10px);
  }
  .content.features .container-l .list-items.sec li:nth-child(1) h3 {
    white-space: normal;
  }
  .content.features .container-l .list-items.sec li:nth-child(2) {
    margin-bottom: 25px;
    max-width: calc(100%);
    height: auto;
  }
  .content.features
    .container-l
    .list-items.sec
    li:nth-child(2)
    div:nth-child(1) {
    width: calc(100%);
    max-width: calc(100%);
  }
  .content.features
    .container-l
    .list-items.sec
    li:nth-child(2)
    div:nth-child(1)
    img {
    width: 100%;
  }
  .content.features .container-l .list-items.sec li:nth-child(3) {
    margin-bottom: 25px;
    max-width: calc(100%);
    height: auto;
  }
  .content.features .container-l .list-items.sec li:nth-child(3) div {
    height: auto;
  }
  .content.features
    .container-l
    .list-items.sec
    li:nth-child(3)
    div:nth-child(1) {
    width: calc(100%);
    max-width: calc(100%);
  }
  .content.features
    .container-l
    .list-items.sec
    li:nth-child(3)
    div:nth-child(1)
    img {
    width: 100%;
  }
  .content.features .container-l .list-items.sec li:nth-child(4) {
    margin-bottom: 25px;
    margin-top: 25px;
  }
  .content.features
    .container-l
    .list-items.sec
    li:nth-child(4)
    div:nth-child(2) {
    width: calc(75% - 10px);
    max-width: calc(75% - 10px);
  }
  .content.features .container-l .list-items.sec li:nth-child(4) h3 {
    white-space: normal;
  }

  .contact-form-container {
    min-width: auto;
    padding: 30px;
    margin-bottom: 50px;
  }
  .contact-form-container form {
    margin-top: 20px;
  }

  footer {
    height: 415px;
  }
  footer .copyright {
    display: block;
    text-align: center;
  }
  footer .footer-logo {
    margin: 50px auto 60px;
  }
  footer .nav-footer {
    margin-top: 20px;
    justify-content: center;
  }
  footer .nav-footer .nav-item {
    padding: 0 30px 0 0;
  }
}
@media (max-width: 576px) {
  .content .content-nav .content-nav-links a {
    width: 100%;
  }
  .content .header {
    margin-bottom: 20px;
    margin-top: 30px;
  }
  .content .header > h2 {
    line-height: 1;
    font-size: 32px;
  }
}

.secureHostCard {
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.secureHostCardBody {
  padding: 20px;
}
.secureHostTitle {
  text-align: center;
  margin: 40px 0;
  font-weight: bold;
}
.secureHostSubtitle {
  font-weight: bold;
}
/*# sourceMappingURL=style.css.map */
