@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local('DM Mono Light'), local('DMMono-Light'), url(https://fonts.gstatic.com/s/dmmono/v2/aFTR7PB1QTsUX8KYvrGyIYQ.ttf) format('truetype');
}
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local('DM Mono Medium'), local('DMMono-Medium'), url(https://fonts.gstatic.com/s/dmmono/v2/aFTR7PB1QTsUX8KYvumzIYQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sora/v1/xMQOuFFYT72X5wkB_18qmnndmScMnn-K.ttf) format('truetype');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sora/v1/xMQOuFFYT72X5wkB_18qmnndmSdSnn-K.ttf) format('truetype');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sora/v1/xMQOuFFYT72X5wkB_18qmnndmSeMmX-K.ttf) format('truetype');
}
* {
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  outline: none;
}
html {
  width: 100%;
  overflow: overlay;
}
body {
  font-size: 16px;
  font-weight: 400;
  font-family: 'Sora', sans-serif, sans-serif;
  line-height: 24px;
  color: #1B1B1D;
  width: 100%;
  padding-top: 40px;
  background: url('/images/footer-bg.svg') no-repeat;
  background-size: 800px 800px;
  background-position: right -189px bottom -160px;
}
body.homepage {
  background: url('/images/bg-logo.svg') no-repeat, url('/images/footer-bg.svg') no-repeat;
  background-size: 1500px 1893px, 800px 800px;
  background-position: -534px 359px, right -189px bottom -160px;
}
@media screen and (max-width: 750px) {
  body.homepage {
    background: url('/images/footer-bg.svg') no-repeat;
    background-size: 800px 800px;
    background-position: right -189px bottom -160px;
  }
}
.heading-1 {
  font-family: 'DM Mono', mono;
  font-size: 36px;
  line-height: 48px;
  font-weight: 500;
  margin-bottom: 32px;
}
.heading-1.centered {
  text-align: center;
}
@media screen and (max-width: 750px) {
  .heading-1 {
    font-size: 30px;
    line-height: 36px;
  }
}
.heading-2 {
  font-family: 'DM Mono', mono;
  font-size: 36px;
  line-height: 42px;
  font-weight: 300;
}
.heading-2.centered {
  text-align: center;
}
@media screen and (max-width: 750px) {
  .heading-2 {
    font-size: 30px;
    line-height: 36px;
  }
}
form {
  position: relative;
  display: inline-block;
}
form fieldset {
  border: 0;
}
form button {
  vertical-align: top;
}
form .error-message {
  display: none;
  position: absolute;
  font-size: 12px;
  color: #FF0000;
  left: 0;
  top: 50px;
}
form .error + .error-message {
  display: block;
}
.input {
  border: 1px solid #9B9BA5;
  padding: 0 16px;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  color: #1B1B1D;
  font-weight: 300;
}
.input.medium-size {
  height: 48px;
}
.input.small-size {
  height: 36px;
  font-size: 14px;
}
.input::placeholder {
  color: rgba(27, 27, 29, 0.3);
}
.input.error {
  border: 1px solid #FF0000;
}
textarea.textarea {
  border: 1px solid #9B9BA5;
  padding: 12px 16px;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  color: #1B1B1D;
  font-weight: 300;
}
textarea.textarea.error {
  border: 1px solid #FF0000;
}
button {
  background-color: #90CDD5;
  color: #1B1B1D;
  border: 0;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  padding: 0 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 3px 6px rgba(144, 205, 213, 0.4));
}
button .label {
  color: #1B1B1D;
  transition: color 0.1s ease-in-out;
  position: relative;
  z-index: 2;
}
button:before {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: -14px;
  background-color: #1B1B1D;
  transition: width 0.1s ease-in-out;
  transform: skew(-30deg);
  z-index: 1;
}
button:hover .label {
  color: #FFF;
  filter: drop-shadow(0 3px 6px rgba(27, 27, 29, 0.02));
}
button:hover:before {
  width: calc(100% + 30px);
}
button.medium-size {
  height: 48px;
  font-size: 16px;
}
button.small-size {
  height: 36px;
  font-size: 14px;
}
.top-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 50px 50px 0;
  z-index: 3;
}
@media screen and (max-width: 750px) {
  .top-header {
    padding: 5% 5% 0;
  }
}
.top-header .logo {
  width: 192px;
  height: 47px;
  float: left;
  margin-right: 20px;
}
@media screen and (max-width: 750px) {
  .top-header .logo {
    width: 122px;
    height: 30px;
  }
}
.top-header .main-navigation ul li {
  float: left;
  list-style: none;
}
.top-header .main-navigation ul li a {
  color: #1B1B1D;
  font-size: 14px;
  line-height: 24px;
  display: block;
  padding: 13px 20px 0;
  text-decoration: none;
  cursor: pointer;
}
.top-header .main-navigation ul li a.active,
.top-header .main-navigation ul li a:hover {
  color: #577F7F;
}
.top-header .phone-number {
  float: right;
  color: #59595F;
  text-decoration: none;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
}
@media screen and (max-width: 750px) {
  .top-header .phone-number {
    font-size: 14px;
    margin-top: 4px;
  }
}
.top-header .sign-up {
  display: none;
  float: right;
}
.top-header .sign-up .input.text {
  width: 264px;
}
.top-header.scrolled {
  position: fixed;
  padding: 20px 50px;
  background-color: rgba(246, 246, 246, 0.7);
  backdrop-filter: blur(20px);
}
@media screen and (max-width: 750px) {
  .top-header.scrolled {
    padding: 5%;
  }
}
.top-header.scrolled .logo {
  width: 122px;
  height: 30px;
}
.top-header.scrolled .main-navigation ul li a {
  padding: 4px 15px 0;
}
.top-header.scrolled .phone-number {
  display: none;
}
@media screen and (max-width: 375px), screen and (max-width: 750px) {
  .top-header.scrolled .phone-number {
    display: block;
  }
}
.top-header.scrolled .sign-up {
  display: block;
}
@media screen and (max-width: 375px), screen and (max-width: 750px) {
  .top-header.scrolled .sign-up {
    display: none;
  }
}
.main-content {
  width: 1140px;
  margin: 0 auto;
}
@media screen and (max-width: 750px), screen and (min-width: 751px) and (max-width: 1229px) {
  .main-content {
    width: 90%;
  }
}
.main-content article {
  font-size: 24px;
  line-height: 36px;
  font-weight: 300;
}
@media screen and (max-width: 750px) {
  .main-content article {
    width: 80%;
    font-size: 20px;
    line-height: 32px;
  }
}
.main-content.text-page {
  padding-top: 204px;
}
@media screen and (max-width: 750px) {
  .main-content.text-page {
    padding: 90px 0 64px;
  }
}
.main-content.text-page article {
  width: 752px;
}
@media screen and (max-width: 750px) {
  .main-content.text-page article {
    width: 80%;
  }
}
.main-content.text-page article .heading-2 {
  margin-bottom: 36px;
}
.main-content.contact-page {
  padding-top: 204px;
}
@media screen and (max-width: 750px) {
  .main-content.contact-page {
    padding-top: 90px;
  }
}
@media screen and (max-width: 750px) {
  .main-content.contact-page article {
    width: 100%;
  }
}
.main-header {
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  padding: 245px 0 0 0;
  margin-bottom: 239px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .main-header {
    padding: 90px 5% 0;
    font-size: 20px;
    margin-bottom: 80px;
  }
}
.main-header p {
  width: 800px;
  margin: 0 auto 60px auto;
  line-height: 36px;
}
@media screen and (max-width: 750px) {
  .main-header p {
    width: 90%;
    line-height: 30px;
    margin-bottom: 32px;
  }
}
.main-header .sign-up input[type='text'] {
  width: 372px;
  margin-right: 8px;
}
.main-header .sign-up button {
  width: 180px;
}
@media screen and (max-width: 750px) {
  .main-header .sign-up {
    width: 100%;
  }
  .main-header .sign-up input[type='text'] {
    width: 100%;
    margin-bottom: 8px;
  }
  .main-header .sign-up button {
    width: 100%;
  }
}
.products {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 750px), screen and (min-width: 751px) and (max-width: 1229px) {
  .products {
    flex-direction: column;
  }
}
.products .heading-2 {
  width: 372px;
  margin: 32px 12px 0 0;
}
@media screen and (max-width: 750px), screen and (min-width: 751px) and (max-width: 1229px) {
  .products .heading-2 {
    width: auto;
    display: block;
    text-align: center;
    margin: 0 0 24px;
  }
}
.products .products-list {
  width: 756px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -12px;
}
@media screen and (max-width: 750px) {
  .products .products-list {
    width: auto;
  }
}
@media screen and (min-width: 751px) and (max-width: 1229px) {
  .products .products-list {
    width: auto;
    max-width: 820px;
    margin: 0 auto;
  }
}
.products .products-list .product {
  list-style: none;
}
@media screen and (max-width: 750px) {
  .products .products-list .product {
    width: 100%;
  }
}
@media screen and (min-width: 751px) and (max-width: 1229px) {
  .products .products-list .product {
    width: 50%;
  }
}
.products .products-list .product .product-link {
  width: 372px;
  height: 312px;
  display: block;
  color: #59595F;
  text-decoration: none;
  background-color: #FFF;
  padding: 32px;
  position: relative;
  margin-top: 12px;
}
@media screen and (max-width: 750px) {
  .products .products-list .product .product-link {
    width: 100%;
    height: auto;
    margin-top: 0;
    padding-bottom: 24px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1229px) {
  .products .products-list .product .product-link {
    width: 100%;
  }
}
.products .products-list .product .product-link .icon {
  width: 56px;
  height: 48px;
  display: flex;
  margin-bottom: 32px;
}
.products .products-list .product .product-link .icon img {
  margin: auto auto auto 0;
}
.products .products-list .product .product-link .product-name {
  color: #1B1B1D;
  font-size: 24px;
  margin-bottom: 18px;
}
@media screen and (max-width: 750px) {
  .products .products-list .product .product-link .product-name {
    line-height: 30px;
  }
}
.products .products-list .product .product-link p {
  font-weight: 300;
  line-height: 24px;
}
.products .products-list .product .product-link .learn-more {
  position: absolute;
  left: 32px;
  bottom: 36px;
}
@media screen and (max-width: 750px) {
  .products .products-list .product .product-link .learn-more {
    position: relative;
    left: auto;
    bottom: auto;
    display: inline-block;
    margin-top: 24px;
  }
}
.products .products-list .product .product-link .learn-more:before {
  content: '';
  display: flex;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: absolute;
  top: -6px;
  right: -48px;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.products .products-list .product .product-link .learn-more:after {
  content: url('/images/chevron-right.svg');
  width: 5px;
  height: 8px;
  position: absolute;
  top: -2px;
  right: -34px;
  z-index: 2;
}
.products .products-list .product .product-link:hover {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.products .products-list .product .product-link:hover .learn-more:before {
  border-color: transparent;
}
.products .products-list .product .product-link:hover .learn-more:after {
  filter: invert(200%);
}
@media screen and (max-width: 750px) {
  .products .products-list .product .product-link:hover {
    box-shadow: none;
    z-index: auto;
  }
  .products .products-list .product .product-link:hover .product-name {
    color: #1B1B1D !important;
  }
  .products .products-list .product .product-link:hover .learn-more:before {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: transparent !important;
  }
  .products .products-list .product .product-link:hover .learn-more:after {
    filter: none;
  }
}
.products .products-list .product.consulting:hover .product-name {
  color: #DA1460;
}
.products .products-list .product.consulting:hover .learn-more:before {
  background-color: #DA1460;
}
.products .products-list .product.pentesting:hover .product-name {
  color: #FFA456;
}
.products .products-list .product.pentesting:hover .learn-more:before {
  background-color: #FFA456;
}
.products .products-list .product.user-management:hover .product-name {
  color: #2273EF;
}
.products .products-list .product.user-management:hover .learn-more:before {
  background-color: #2273EF;
}
.products .products-list .product.password-management:hover .product-name {
  color: #3CA075;
}
.products .products-list .product.password-management:hover .learn-more:before {
  background-color: #3CA075;
}
.products .products-list .product.blockchain:hover .product-name {
  color: #A03C9C;
}
.products .products-list .product.blockchain:hover .learn-more:before {
  background-color: #A03C9C;
}
.products .products-list .product.deception:hover .product-name {
  color: #18B6BC;
}
.products .products-list .product.deception:hover .learn-more:before {
  background-color: #18B6BC;
}
.testimonials {
  margin-top: 172px;
}
@media screen and (max-width: 750px) {
  .testimonials {
    margin-top: 80px;
  }
}
.testimonials .heading-2 {
  margin-bottom: 56px;
}
.testimonials .quotes {
  overflow: hidden;
  font-weight: 300;
  background-color: #FFF;
}
.testimonials .quotes .quote {
  width: 372px;
  min-height: 360px;
  float: left;
  padding: 44px 30px 148px 0;
  position: relative;
}
@media screen and (max-width: 750px) {
  .testimonials .quotes .quote {
    width: 100%;
    min-height: auto;
    padding: 0 32px 64px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1229px) {
  .testimonials .quotes .quote {
    width: 50%;
    min-height: auto;
    padding: 0 32px 120px;
  }
}
.testimonials .quotes .quote blockquote:before {
  content: '\201C';
}
.testimonials .quotes .quote blockquote:after {
  content: '\201D';
}
.testimonials .quotes .quote figcaption {
  position: absolute;
  bottom: 24px;
}
@media screen and (max-width: 750px) {
  .testimonials .quotes .quote figcaption {
    position: relative;
    bottom: auto;
    margin-top: 32px;
  }
}
.testimonials .quotes .quote figcaption img {
  display: block;
  margin-bottom: 8px;
}
.testimonials .quotes .quote figcaption .author {
  color: #59595F;
  font-size: 14px;
}
.testimonials .quotes .quote:first-child {
  padding-left: 32px;
}
@media screen and (max-width: 750px) {
  .testimonials .quotes .quote:first-child {
    padding-left: 32px;
  }
}
.main-footer {
  width: 1140px;
  margin: 0 auto;
  font-size: 12px;
  font-family: 'DM Mono', mono;
  font-weight: 300;
  padding-top: 160px;
  padding-bottom: 100px;
  overflow-y: hidden;
  position: relative;
}
@media screen and (max-width: 750px), screen and (min-width: 751px) and (max-width: 1229px) {
  .main-footer {
    width: 100%;
    padding: 0 5% 15%;
    text-align: center;
  }
}
@media screen and (min-width: 751px) and (max-width: 1229px) {
  .main-footer {
    padding-top: 64px;
  }
}
.main-footer .copy {
  float: left;
  margin-right: 10px;
}
@media screen and (max-width: 750px), screen and (min-width: 751px) and (max-width: 1229px) {
  .main-footer .copy {
    float: none;
    margin: 0;
  }
}
.main-footer nav {
  float: left;
}
@media screen and (max-width: 750px), screen and (min-width: 751px) and (max-width: 1229px) {
  .main-footer nav {
    float: none;
  }
}
.main-footer nav ul {
  float: left;
}
@media screen and (max-width: 750px), screen and (min-width: 751px) and (max-width: 1229px) {
  .main-footer nav ul {
    float: none;
  }
}
.main-footer nav ul li {
  list-style: none;
  float: left;
  margin-left: 20px;
  position: relative;
}
@media screen and (max-width: 750px), screen and (min-width: 751px) and (max-width: 1229px) {
  .main-footer nav ul li {
    float: none;
    display: inline-block;
  }
}
.main-footer nav ul li:before {
  content: '';
  width: 4px;
  height: 4px;
  background-color: #59595F;
  border-radius: 100%;
  position: absolute;
  left: -12px;
  top: 10px;
}
.main-footer nav ul li:first-of-type:before {
  display: none;
}
@media screen and (max-width: 750px), screen and (min-width: 751px) and (max-width: 1229px) {
  .main-footer nav ul li:first-of-type {
    margin-left: 0;
  }
}
.main-footer nav ul li a {
  color: inherit;
  text-decoration: none;
}
.main-footer nav ul li a:hover {
  color: #577F7F;
}
.main-footer nav:last-of-type {
  float: right;
}
@media screen and (max-width: 750px), screen and (min-width: 751px) and (max-width: 1229px) {
  .main-footer nav:last-of-type {
    float: none;
  }
}
.contact-form {
  margin-top: 60px;
}
@media screen and (max-width: 750px) {
  .contact-form {
    width: 100%;
    margin-top: 32px;
  }
}
.contact-form .column {
  float: left;
}
@media screen and (max-width: 750px) {
  .contact-form .column {
    float: none;
  }
}
.contact-form .column + .column {
  margin-left: 108px;
}
@media screen and (max-width: 750px) {
  .contact-form .column + .column {
    margin-left: 0;
  }
}
@media screen and (min-width: 751px) and (max-width: 1229px) {
  .contact-form .column + .column {
    margin-left: 12px;
  }
}
.contact-form .field {
  margin-bottom: 31px;
}
.contact-form .field .text-label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  display: block;
  color: #59595F;
  margin-bottom: 14px;
}
.contact-form .field .input.text {
  width: 372px;
}
@media screen and (max-width: 750px) {
  .contact-form .field .input.text {
    width: 100%;
  }
}
.contact-form .field.textarea textarea.textarea {
  width: 564px;
  height: 282px;
}
@media screen and (max-width: 750px) {
  .contact-form .field.textarea textarea.textarea {
    width: 100%;
  }
}
.contact-form .field.button {
  float: right;
}
/*# sourceMappingURL=style.css.map */
.blog-metadata {
  margin-bottom: 40px;
}
.blog-content p {
  margin-bottom: 10px;
  margin-top: 10px;
}
.blog-content a {
  margin-bottom: 10px;
  margin-top: 10px;
}
.blog-content img {
  width: 100%;
}
.blog-content h1 {
  font-family: 'DM Mono', mono;
  font-size: 36px;
  line-height: 48px;
  font-weight: 500;
  margin-bottom: 32px;
}
@media screen and (max-width: 750px) {
  .blog-content h1 {
    font-size: 30px;
    line-height: 36px;
  }
}
.blog-content h2 {
  font-family: 'DM Mono', mono;
  font-size: 36px;
  line-height: 42px;
  font-weight: 300;
  margin-bottom: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .blog-content h2 {
    font-size: 30px;
    line-height: 36px;
  }
}
.blog-content h3 {
  font-family: 'DM Mono', mono;
  font-size: 28px;
  line-height: 36px;
  font-weight: 200;
  margin-bottom: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .blog-content h3 {
    font-size: 22px;
    line-height: 28px;
  }
}
.pagination {
  padding-top: 50px;
  text-align: center;
}
.pagination a,
.pagination span {
  display: inline-block;
  margin: 0 6px;
  padding: 6px 12px;
  text-decoration: none;
  border: 1px solid #ddd;
  color: #18B6BC;
  font-size: 14px;
}
.pagination a:hover {
  background-color: #f0f0f0;
}
.pagination span {
  background-color: #18B6BC;
  color: white;
  border-color: #18B6BC;
  cursor: default;
}
