:root {
  --color-blue: #001f3f;
  --color-grey: #646464;
  --color-green: #00B67A;
  --color-white: #fff;
  --container-width: 1340px;
}

body {
  color: var(--color-blue);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Rubik", sans-serif;
}

h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 51px;
}

@media (max-width: 767px) {
  h2 {
    font-size: 26px;
    line-height: 42px;
  }
}
p {
  font-size: 18px;
  line-height: 29px;
  max-width: 768px;
}

.flex-row {
  display: flex;
  align-items: stretch;
}

@media (max-width: 767px) {
  .flex-row {
    flex-direction: column;
  }
  .flex-row .flex-column {
    width: 100%;
  }

  .d-sm-none {
    display: none;
  }

  .d-sm-block {
    display: block;
  }
}
@media (min-width: 768px) {
  .flex-row {
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
    justify-content: center;
  }
  .flex-row .flex-column {
    width: 33%;
    padding: 20px;
  }

  .d-md-block {
    display: block;
  }

  .d-md-inline-block {
    display: inline-block;
  }

  .d-md-none {
    display: none;
  }
}
@media (min-width: 992px) {
  .pull-right-lg {
    float: right;
  }
}
.text-center {
  text-align: center;
}

.mb-5 {
  margin-bottom: 4rem;
}

.container-inner {
  max-width: var(--container-width);
  padding: 0 30px;
}

@media (max-width: 767px) {
  .container-inner {
    padding: 0 10px;
  }
}
.layout__content {
  padding-top: 0;
}
.layout__content .container {
  background-color: var(--color-white);
}
.layout__content .container--grey {
  background-color: #F5F6F8;
}

.layout {
  overflow: hidden;
}

.card {
  position: relative;
  background: var(--color-white);
  box-shadow: 8px 12px 24px rgba(81, 89, 102, 0.06);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 30px;
}
.card.primary {
  border-radius: 0 0 16px 16px;
}
.card.primary .card-footer a {
  background: var(--color-green);
  color: var(--color-white);
  border: 1px solid var(--color-green);
}
.card .most-popular {
  background: linear-gradient(67.63deg, #006DFF 11.83%, #56CCF2 88.02%);
  border-radius: 16px 16px 0 0;
  position: absolute;
  top: -40px;
  left: 0;
  padding: 8px 0;
  width: 100%;
  text-align: center;
}
.card .most-popular strong {
  color: var(--color-white);
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 20px;
}
.card .card-title {
  margin-bottom: 40px;
  display: flex;
}
.card .card-title img {
  margin-right: 10px;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.card .card-title h3 {
  font-size: 26px;
  line-height: 42px;
  margin: 0;
}
.card .card-title span {
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}
.card .card-body {
  flex-grow: 1;
}
.card .card-body strong {
  display: block;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  margin: 10px 0;
}
.card .card-body span {
  display: block;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
}
.card .card-footer {
  margin-top: 40px;
}
.card .card-footer a {
  border: 1px solid var(--color-grey);
  border-radius: 7px;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  color: var(--color-grey);
  padding: 10px 0;
  display: block;
  text-align: center;
}
.card .card-footer a:hover {
  background-color: var(--color-blue);
  border: 1px solid var(--color-blue);
  color: var(--color-white);
  font-weight: 700;
}

.hero-unit {
  padding: 174px 0 0;
  overflow: unset;
  height: 492px;
  margin-bottom: 120px;
}

@media (max-width: 991px) {
  .hero-unit {
    padding: 118px 0 0;
    height: 700px;
  }
}
.topbar--image {
  background: linear-gradient(101.64deg, var(--color-blue) 29.26%, #123d69 78.9%);
  z-index: initial;
  min-height: 85px;
  margin-bottom: 10px;
}
.topbar--image .topbar__nav {
  background: transparent;
  border-bottom: none;
}
.topbar--image .topbar__nav .topbar__link {
  color: var(--color-white);
  margin-right: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 29px;
}
.topbar--image .topbar__nav.topbar__nav--white {
  background: linear-gradient(101.64deg, var(--color-blue) 29.26%, #123d69 78.9%);
}
.topbar--image .topbar__nav.topbar__nav--white .topbar__link {
  color: var(--color-white);
}

@media (max-width: 1023px) {
  .topbar--image {
    background: linear-gradient(341.41deg, #001F3F 33.75%, #123D69 66.19%);
  }
  .topbar--image .topbar__nav.topbar__nav--white {
    background: linear-gradient(341.41deg, #001F3F 33.75%, #123D69 66.19%);
  }
}
.search-box--hero-unit {
  max-width: var(--container-width);
}
.search-box--hero-unit #query {
  max-width: 440px;
  height: 56px;
  font-size: 18px;
  line-height: 29px;
}
.search-box--hero-unit input[type=submit] {
  background-color: var(--color-green);
  color: var(--color-white);
  height: 56px;
  font-weight: 700;
  font-size: 18px;
  line-height: 29px;
}

.intro-title {
  text-align: left;
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 77px;
  margin-top: 60px;
}

@media (max-width: 991px) {
  .intro-title {
    margin-top: 0;
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .intro-title {
    text-align: center;
  }
}
.header-image img {
  height: auto;
  width: auto;
  max-height: 486px;
  max-width: 610px;
  margin-top: -58px;
  margin-left: -20px;
}

@media (max-width: 991px) {
  .header-image {
    text-align: center;
  }
  .header-image img {
    max-height: 324px;
    margin-top: 0;
    margin-left: 40px;
  }
}
@media (max-width: 767px) {
  .lines-button {
    display: none;
  }

  .topbar__inner {
    display: table;
  }

  .topbar__col {
    display: table-cell;
    vertical-align: middle;
  }

  .topbar__collapse {
    display: block;
    padding: 0;
  }
  .topbar__collapse .topbar__controls {
    float: right;
  }

  .contact-info {
    background: var(--color-blue);
    display: flex;
    justify-content: center;
    margin-left: -15px;
    margin-right: -15px;
  }
  .contact-info > div {
    padding: 8px 10px;
  }
  .contact-info a {
    color: var(--color-white);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
  }
  .contact-info a i {
    margin-right: 4px;
  }
}
@media (max-width: 991px) {
  .search-box--hero-unit .search {
    display: block;
  }
  .search-box--hero-unit .search:before {
    top: 28px;
  }
  .search-box--hero-unit .search input[type=submit] {
    width: 100%;
    max-width: 440px;
    margin: 15px 0;
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .search-box--hero-unit .search {
    max-width: 440px;
    margin: auto;
  }
}
.knowledge-base .category-list-title {
  text-align: left;
  font-size: 32px;
  margin: 0 0 24px;
}
.knowledge-base .category-list {
  margin-top: 4rem;
}
.knowledge-base .category-list.row {
  margin-left: -20px;
  margin-right: -20px;
}
.knowledge-base .category-list .category-list-item {
  padding-top: 0;
  padding-bottom: 40px;
}
.knowledge-base .category-list .category-list-item.column {
  padding-left: 20px;
  padding-right: 20px;
}
.knowledge-base .category-list-item__link {
  padding: 32px;
  box-shadow: 8px 12px 24px rgba(81, 89, 102, 0.06);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}
.knowledge-base .category-list-item__link .meta {
  color: var(--color-blue);
  font-size: 18px;
  line-height: 29px;
  flex-grow: 1;
  margin-bottom: 2.5rem;
}
.knowledge-base .category-list-item__link .more {
  margin: 0;
  padding: 10px 0;
  text-align: center;
  border: 1px solid var(--color-grey);
  border-radius: 7px;
  color: var(--color-grey);
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
}
.knowledge-base .category-list-item__link .more:hover {
  background-color: var(--color-blue);
  border: 1px solid var(--color-blue);
  color: var(--color-white);
  font-weight: 700;
}
.knowledge-base .category-list-item__title {
  text-transform: none;
  font-family: "Rubik", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 42px;
  color: var(--color-blue);
}

.category-list-item__link:active, .category-list-item__link:focus, .category-list-item__link:hover {
  background-color: var(--color-white);
}

@media (max-width: 767px) {
  .knowledge-base .category-list .category-list-item.column {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.promoted-articles__title {
  text-align: left;
  font-weight: 500;
  font-size: 32px;
  margin: 0 0 24px;
}

.promoted-articles__list {
  margin-top: 4rem;
}
.promoted-articles__list .promoted-articles-item {
  margin-bottom: 16px;
}
.promoted-articles__list .promoted-articles-item .promoted-articles-item__content {
  width: 100%;
  border: 1px solid #DBDCE0;
  border-radius: 16px;
}
.promoted-articles__list .promoted-articles-item .promoted-articles-item__content:hover {
  border: 1px solid #001F3F;
}
.promoted-articles__list .promoted-articles-item .promoted-articles-item__content .promoted-articles-item__title {
  font-family: "Rubik", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: var(--color-blue);
  max-width: 100%;
  margin: 0;
  padding: 20px;
}
.promoted-articles__list .promoted-articles-item .promoted-articles-item__content .promoted-articles-item__title i {
  color: #006DFF;
  font-size: 16px;
  float: right;
  padding: 8px 0;
}

@media (max-width: 767px) {
  .promoted-articles__list {
    margin-left: -15px;
    margin-right: -15px;
  }
  .promoted-articles__list .promoted-articles-item .promoted-articles-item__content .promoted-articles-item__title {
    font-size: 16px;
    line-height: 23px;
    padding: 14px;
  }
  .promoted-articles__list .promoted-articles-item .promoted-articles-item__content .promoted-articles-item__title i {
    display: none;
  }
}
.customer-service {
  padding-top: 40px;
}
.customer-service .card .card-title {
  align-items: center;
}

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