









/*------------------------------------*\
  #COMMON
\*------------------------------------*/


.subtitle {
  display: inline-block;
  font-size: 1.2em;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.3;
  color: #6abd45;
  margin-bottom: 0.5em;
}

.frame {
  border: 8px solid #2c3444;
  border-radius: 4px;
  /* box-shadow: 0 0 50px rgba(44,52,68, 0.5); */
}


@media only screen and (max-width: 1200px) {
  .subtitle {
    font-size: 1.1em;
  }
}

@media only screen and (max-width: 900px) {
  .subtitle {
    font-size: 1em;
  }
}

@media only screen and (max-width: 700px) {
  .subtitle {
    font-size: 0.9em;
  }
}

@media only screen and (max-width: 550px) {
  .subtitle {
    font-size: 0.8em;
  }
}





/*------------------------------------*\
  #BANNER
\*------------------------------------*/


.banner {
  position: relative;
  overflow: hidden;
  margin: 0;
}
.banner::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 90%;
  background: #174376;
}

.banner__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  z-index: 99;
}

.banner__content,
.banner__graphic {
  width: 45%;
}

.banner__content {
  align-self: center;
  padding: 8% 0;
  margin-bottom: 5%;
}
.banner__content .subtitle {
  font-size: 1.3em;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.8em;
}
.banner__content h1 {
  max-width: 550px;
  color: #fff;
}
.banner__content strong {
  color: #6abd45;
}
.banner__content .button {
  margin-top: 2em;
}

.banner__graphic {
  position: relative;
}
.banner__graphic::after {
  position: absolute;
  content: url(../img/shapes/circle.svg);
  width: 11.5em;
  top: -6.5em;
  right: -7em;
}

.banner--logo .banner__content {
  padding: 12% 0 6%;
}
.banner__logo {
  position: absolute;
  max-width: 250px;
  top: 0;
  padding: 2em;
  background: #113b6b;
  border-radius: 0 0 4px 4px;
}


@media only screen and (max-width: 1200px) {
  .banner__content .subtitle {
    font-size: 1.2em;
  }
  .banner__logo {
    max-width: 200px;
    padding: 1.5em;
  }
}

@media only screen and (max-width: 1000px) {
  .banner__graphic::after {
    width: 9em;
    top: -5em;
    right: -5.5em;
  }
  .banner__logo {
    max-width: 180px;
  }
}

@media only screen and (max-width: 900px) {
  .banner::before {
    height: 100%;
  }
  .banner__content {
    width: 55%;
    padding: 5em 0;
    margin: 0;
  }
  .banner__content .subtitle {
    font-size: 1.1em;
  }
  .banner__graphic {
    width: 37%;
    align-self: stretch;
  }
  .banner__graphic img {
    width: 120%;
    height: 100%;
    top: 0;
    right: -20%;
    object-fit: cover;
  }
  .banner__graphic::after {
    top: -5.5em;
    right: -6.5em;
  }
  .banner--logo .banner__content {
    padding: 9em 0 5em;
  }
}

@media only screen and (max-width: 700px) {
  .banner__content {
    padding: 4em 0;
  }
  .banner__content .subtitle {
    font-size: 1em;
  }
  .banner--logo .banner__content {
    padding: 7em 0 4em;
  }
  .banner__logo {
    max-width: 150px;
    padding: 1.2em;
  }
}

@media only screen and (max-width: 550px) {
  .banner__inner {
    display: block;
  }
  .banner__inner::after {
    position: absolute;
    content: url(../img/shapes/circle.svg);
    width: 8em;
    top: -4.5em;
    right: -4.5em;
  }
  .banner__content {
    width: 100%;
    padding: 3em 0;
  }
  .banner__content .subtitle {
    font-size: 0.9em;
  }
  .banner__graphic {
    display: none;
  }
  .banner--logo .banner__content {
    padding: 6em 0 3em;
  }
  .banner__logo {
    max-width: 140px;
    padding: 1em;
  }
}





/*------------------------------------*\
  #OVERVIEW
\*------------------------------------*/


.overview__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.overview__graphic,
.overview__content {
  width: 45%;
}

.overview__graphic {
  position: relative;
  padding: 5% 0;
}
.overview__graphic::before {
  position: absolute;
  content: '';
  width: 65%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #6abd45 url(../img/shapes/pattern-green.svg) repeat;
  background-size: 140%;
  border-radius: 4px;
  margin: auto;
}
.graphic--blue::before {
  background: #174376 url(../img/shapes/pattern-blue.svg) repeat;
  background-size: 140%;
}
.graphic--orange::before {
  background: #faa31b url(../img/shapes/pattern-orange.svg) repeat;
  background-size: 140%;
}
.overview__graphic img {
  position: relative;
  z-index: 9;
}

.overview__content {
  padding: 0 3%;
}
.overview__content .button {
  margin-top: 1em;
}

.overview--reverse .overview__inner {
  flex-direction: row-reverse;
}

.overview--gray {
  background: #f4f3f5;
  padding: 6em 0;
}


@media only screen and (max-width: 1300px) {
  .overview__content {
    padding: 0;
  }
}

@media only screen and (max-width: 1200px) {
  .overview--gray {
    padding: 5em 0;
  }
}

@media only screen and (max-width: 1100px) {
  .overview__graphic {
    width: 46%;
  }
  .overview__content {
    width: 46%;
  }
  .overview__content .button {
    margin-top: 0.5em;
  }
}

@media only screen and (max-width: 900px) {
  .overview__graphic {
    width: 40%;
  }
  .overview__content {
    width: 52%;
  }
  .overview__content .button {
    margin-top: 0.2em;
  }
  .overview--gray {
    padding: 4em 0;
  }
}

@media only screen and (max-width: 700px) {
  .overview {
    margin-top: 0;
  }
  .overview .container {
    width: 100%;
  }
  .overview__inner {
    display: block;
  }
  .overview__graphic,
  .overview__content {
    width: 100%;
  }
  .overview__graphic {
    padding: 4em 5%;
    margin-bottom: 4em;
  }
  .overview__graphic::before,
  .graphic--blue::before,
  .graphic--orange::before {
    width: 100%;
    background-size: 60%;
    border-radius: 0;
  }
  .overview__graphic img {
    max-width: 400px;
    margin: 0 auto;
  }
  .overview__content {
    width: 90%;
    max-width: 400px;
    margin: 4em auto;
  }
  .overview--gray {
    background: none;
    padding: 0;
  }
}

@media only screen and (max-width: 550px) {
  .overview__graphic {
    padding: 3em 5%;
    margin-bottom: 3em;
  }
  .overview__content {
    margin: 3em auto;
  }
}





/*------------------------------------*\
  #HEADER
\*------------------------------------*/


.header {
  padding: 8em 0 4em;
  margin: 0;
}
.header--gray {
  background: #f4f3f5;
}

.header__inner {
  max-width: 500px;
  text-align: center;
  margin: 0 auto;
}
.header__inner h2 {
  margin: 0;
}


@media only screen and (max-width: 1300px) {
  .header {
    padding: 7em 0 4em;
  }
}

@media only screen and (max-width: 1200px) {
  .header__inner {
    max-width: 450px;
  }
}

@media only screen and (max-width: 1100px) {
  .header {
    padding: 6em 0 3em;
  }
  .header__inner {
    max-width: 400px;
  }
}

@media only screen and (max-width: 900px) {
  .header {
    padding: 5em 0 3em;
  }
  .header__inner {
    max-width: 350px;
  }
}

@media only screen and (max-width: 700px) {
  .header {
    padding: 4em 0 2.5em;
  }
  .header__inner {
    max-width: 300px;
  }
}

@media only screen and (max-width: 550px) {
  .header {
    padding: 3em 0 2em;
  }
}





/*------------------------------------*\
  #CTA
\*------------------------------------*/


.cta {
  background: #f4f3f5;
  padding-bottom: 8em;
  margin: 0;
}

.cta__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.card {
  display: flex;
  flex-direction: column;
  width: 23.5%;
  background: #174376;
  padding: 3em 2em;
  border-radius: 8px;
  -webkit-transition: background 0.5s ease;
          transition: background 0.5s ease;
}

.card__icon {
  margin: 0 auto;
}
.card__icon svg {
  height: 3em;
  fill: #6abd45;
  -webkit-transition: fill 0.5s ease;
          transition: fill 0.5s ease;
}

.card__content {
  display: flex;
  flex-direction: column;
  text-align: center;
  height: 100%;
  margin-top: 1.5em;
}
.card__content h4,
.card__content p {
  color: #fff;
}
.card__content h4 {
  letter-spacing: 0.025em;
}
.card__content p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 1.5em;
}

.content__link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
}
.content__link span {
  display: block;
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.3;
  color: #6abd45;
  -webkit-transition: color 0.5s ease;
          transition: color 0.5s ease;
}
.content__link svg {
  width: 0.7em;
  fill: #6abd45;
  margin-left: 0.3em;
  transform: rotate(-90deg);
  -webkit-transition: fill 0.5s ease;
          transition: fill 0.5s ease;
}

.card:hover {
  background: #6abd45;
}
.card:hover .card__icon svg,
.card:hover .content__link svg {
  fill: #174376;
}
.card:hover .content__link span {
  color: #174376;
}


@media only screen and (max-width: 1300px) {
  .cta {
    padding-bottom: 7em;
  }
  .card {
    padding: 2.5em 1.5em;
  }
}

@media only screen and (max-width: 1200px) {
  .card__icon svg {
    height: 2.8em;
  }
  .card__content {
    margin-top: 1em;
  }
}

@media only screen and (max-width: 1100px) {
  .cta {
    padding-bottom: 6em;
  }
  .card {
    padding: 2em 1em;
  }
  .card__icon svg {
    height: 2.5em;
  }
  .card__content p {
    font-size: 0.9em;
  }
  .content__link span {
    font-size: 1em;
  }
}

@media only screen and (max-width: 900px) {
  .cta {
    padding-bottom: 5em;
  }
  .card {
    width: 48.5%;
    padding: 2em;
    margin-bottom: 3%;
  }
  .card__icon svg {
    height: 2.5em;
  }
}

@media only screen and (max-width: 700px) {
  .cta {
    padding-bottom: 4em;
  }
  .card__icon svg {
    height: 2.2em;
  }
}

@media only screen and (max-width: 550px) {
  .cta {
    padding-bottom: 3em;
  }
  .cta__inner {
    display: block;
  }
  .card {
    width: 100%;
    max-width: 400px;
    padding: 2em;
    margin: 0 auto 1.2em;
  }
  .card:last-child {
    margin-bottom: 0;
  }
}










/*------------------------------------*\
  #SUBPAGE
\*------------------------------------*/





/*------------------------------------*\
  #HEADLINE
\*------------------------------------*/


.headline {
  position: relative;
  background: #174376;
  overflow: hidden;
  margin: 0;
}

.headline__inner {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 6em 0;
}
.headline__inner::after {
  position: absolute;
  width: 20em;
  top: -8%;
  right: 0;
}
.headline--product .headline__inner::after {
  content: url(../img/icons/features/blue/product-icon.svg);
}
.headline--accounting .headline__inner::after {
  content: url(../img/icons/features/blue/accounting-icon.svg);
}
.headline--reporting .headline__inner::after {
  content: url(../img/icons/features/blue/reporting-icon.svg);
}
.headline--integrations .headline__inner::after {
  content: url(../img/icons/features/blue/integrations-icon.svg);
  width: 19em;
}
.headline--cloud .headline__inner::after {
  content: url(../img/icons/features/blue/cloud-icon.svg);
  width: 19em;
}
.headline--security .headline__inner::after {
  content: url(../img/icons/features/blue/security-icon.svg);
  width: 15em;
}

.headline__icon {
  flex: 0 0 2.8em;
  margin-right: 1em;
}
.headline__icon img {
  max-height: 2.8em;
}
.headline__inner h1 {
  color: #fff;
  margin: 0;
}

.headline--partner {
  background: #f4f3f5;
}
.headline--blue {
  background: #174376;
}
.headline--green {
  background: #6abd45;
}

.headline--partner .headline__inner {
  align-items: stretch;
}
.headline--partner h1 {
  color: #174376;
}
.headline--partner p {
  color: #2c3444;
}

.headline__content {
  width: 60%;
  margin-right: 10%;
}
.headline__content h1 {
  margin-bottom: 0.3em;
}
.headline--blue .headline__content h1,
.headline--blue .headline__content p,
.headline--green .headline__content h1,
.headline--green .headline__content p {
  color: #fff;
}
.headline__content p:last-child {
  margin: 0;
}

.headline__logo {
  display: flex;
  align-items: center;
  width: 30%;
  background: #fff;
  padding: 2.5em 3.5em;
  border-radius: 8px;
}


@media only screen and (max-width: 1300px) {
  .headline__icon {
    flex: 0 0 2.4em;
  }
  .headline__icon img {
    max-height: 2.4em;
  }
}

@media only screen and (max-width: 1200px) {
  .headline__inner {
    padding: 5em 0;
  }
  .headline__inner::after {
    width: 16em;
  }
  .headline--integrations .headline__inner::after,
  .headline--cloud .headline__inner::after {
    width: 15em;
  }
  .headline--security .headline__inner::after {
    width: 12em;
  }
}

@media only screen and (max-width: 1100px) {
  .headline__icon {
    flex: 0 0 2em;
    margin-right: 0.8em;
  }
  .headline__icon img {
    max-height: 2em;
  }
  .headline__content {
    width: 62%;
    margin-right: 8%;
  }
  .headline__logo {
    padding: 2.2em 3em;
  }
}

@media only screen and (max-width: 900px) {
  .headline__inner {
    padding: 4em 0;
  }
  .headline__inner::after {
    width: 13em;
  }
  .headline--integrations .headline__inner::after,
  .headline--cloud .headline__inner::after {
    width: 12em;
  }
  .headline--security .headline__inner::after {
    width: 10em;
  }
  .headline__logo {
    padding: 1.5em 1.8em;
  }
}

@media only screen and (max-width: 700px) {
  .headline__icon {
    flex: 0 0 1.8em;
    margin-right: 0.6em;
  }
  .headline__icon img {
    max-height: 1.8em;
  }
  .headline--partner .headline__inner {
    display: block;
  }
  .headline__content {
    width: 100%;
    margin: 0 0 2em;
  }
  .headline__content h1 {
    margin-bottom: 0.5em;
  }
  .headline__logo {
    width: 100%;
    max-width: 180px;
  }
}

@media only screen and (max-width: 550px) {
  .headline__inner {
    padding: 3em 0;
  }
  .headline__inner::after {
    width: 10em;
  }
  .headline--integrations .headline__inner::after,
  .headline--cloud .headline__inner::after {
    width: 9em;
  }
  .headline--security .headline__inner::after {
    width: 7em;
  }
}





/*------------------------------------*\
  #SUB-NAV
\*------------------------------------*/


.sub-nav {
  background: #f4f3f5;
  padding: 1.1em 0;
  margin: 0;
}

.sub-nav__list {
  display: flex;
  align-items: center;
}
.sub-nav__list li {
  font-size: 1em;
  padding: 0;
  margin: 0 0.9em;
}
.sub-nav__list li::before {
  display: none;
}
.sub-nav__list li:first-child {
  position: relative;
  margin: 0 2.7em 0 0;
}
.sub-nav__list li:first-child::after {
  position: absolute;
  content: '';
  width: 3px;
  height: 22px;
  top: 0;
  right: -1.8em;
  bottom: 0;
  background: #6abd45;
  margin: auto;
}
.sub-nav__list li:first-child .sub-nav__link {
  font-weight: 700;
}

.sub-nav__link {
  display: block;
  font-size: 1.1em;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1;
  color: #2c3444;
  -webkit-transition: color 0.5s ease;
          transition: color 0.5s ease;
}
.link--active,
.sub-nav__link:hover {
  color: #6abd45;
}
.sub-nav .link--active {
  font-weight: 700;
}


@media only screen and (max-width: 1100px) {
  .sub-nav__list li {
    font-size: 0.9em;
    margin: 0 0.8em;
  }
  .sub-nav__list li:first-child {
    margin: 0 2.4em 0 0;
  }
  .sub-nav__list li:first-child::after {
    height: 20px;
    right: -1.6em;
  }
}

@media only screen and (max-width: 900px) {
  .sub-nav__list li {
    font-size: 0.8em;
  }
  .sub-nav__list li:first-child::after {
    width: 2px;
  }
}

@media only screen and (max-width: 550px) {
  .sub-nav {
    display: none;
  }
}





/*------------------------------------*\
  #INTRO
\*------------------------------------*/


.intro__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.intro__headline {
  width: 35%;
}
.intro__headline h2 {
  margin-bottom: 0.8em;
}
.intro__content {
  width: 55%;
}
.intro__content p {
  font-size: 1.2em;
  line-height: 1.8;
}
.intro__content p:last-child {
  margin: 0;
}

.intro--partner {
  background: #f4f3f5;
  padding: 6em 0;
  margin: 0;
}


@media only screen and (max-width: 1100px) {
  .intro__inner {
    display: block;
  }
  .intro__headline,
  .intro__content {
    width: 100%;
  }
  .intro__content p {
    font-size: 1.1em;
    line-height: 1.7;
  }
}

@media only screen and (max-width: 700px) {
  .intro__content p {
    font-size: 1em;
    line-height: 1.6;
  }
}





/*------------------------------------*\
  #FEATURES
\*------------------------------------*/


.features {
  position: relative;
  overflow: hidden;
}

.features__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.features__graphic,
.features__content {
  width: 45%;
}
.features__graphic {
  align-self: stretch;
}
.features__graphic img {
  position: relative;
}
.features__content h3 {
  color: #174376;
}
.features__content ul {
  margin-top: 1.5em;
}
.features__content p:last-child {
  margin: 0;
}

.features--full h3,
.features--full p,
.features--full li {
  color: #fff;
}
.features--full .features__graphic img {
  width: 150%;
  height: 100%;
  top: 0;
  left: -50%;
  object-fit: cover;
}
.features--full .features__content {
  padding: 8% 0;
}
.features--full p + h3 {
  margin-top: 2em;
}

.features--slate {
  background: #2c3444;
}
.features--slate::after {
  position: absolute;
  content: url(../img/shapes/circle.svg);
  width: 11.5em;
  top: -7em;
  right: 4em;
}


@media only screen and (max-width: 1300px) {
  .features__graphic {
    width: 40%;
  }
  .features__content {
    width: 52%;
  }
  .features--full .features__graphic img {
    width: 120%;
    left: -20%;
  }
}

@media only screen and (max-width: 1200px) {
  .features--slate::after {
    width: 9em;
    top: -5em;
    right: -3em;
  }
  .features__graphic {
    width: 38%;
  }
  .features__content {
    width: 54%;
  }
}

@media only screen and (max-width: 1000px) {
  .features__graphic {
    width: 32%;
  }
  .features__content {
    width: 60%;
  }
}

@media only screen and (max-width: 900px) {
  .features__inner {
    display: block;;
  }
  .features__graphic,
  .features__content {
    width: 100%;
  }
  .features__graphic {
    height: 30em;
    object-fit: cover;
    margin: 5em 0;
  }
  .features--full .features__graphic {
    margin: 0;
  }
  .features--full .features__graphic img {
    left: -10%;
  }
  .features--full .features__content {
    padding: 5em 0;
    margin: 0;
  }
  .features--image {
    margin-top: -2em;
  }
  .features--image .features__graphic {
    display: none;
  }
}

@media only screen and (max-width: 700px) {
  .features__graphic {
    height: 25em;
    margin: 4em 0;
  }
  .features__content ul {
    margin-top: 1.2em;
  }
  .features--full .features__graphic {
    margin: 0;
  }
  .features--full .features__content {
    padding: 4em 0;
  }
}

@media only screen and (max-width: 550px) {
  .features__graphic {
    height: 20em;
    margin: 3em 0;
  }
  .features--full .features__graphic {
    margin: 0;
  }
  .features--full .features__content {
    padding: 3em 0;
  }
  .features--full p + h3 {
    margin-top: 1.5em;
  }
  .features--image {
    margin-top: -1em;
  }
}





/*------------------------------------*\
  #LOGOS
\*------------------------------------*/


.logos {
  margin: 0 0 3em;
}

.features + .text,
.logos + .text {
  margin: 0 0 1.8em;
}
.features + .text .text__inner,
.logos + .text .text__inner {
  max-width: 100%;
}

.logos__inner {
  display: flex;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15.83%;
  height: 7em;
  background: #f4f3f5;
  margin: 0 1% 1% 0;
  border-radius: 8px;
}
.logo:nth-child(6n) {
  margin-right: 0;
}
.logo img {
  width: 60%;
}


@media only screen and (max-width: 1100px) {
  .logo {
    height: 6em;
  }
}

@media only screen and (max-width: 900px) {
  .logos {
    margin: 0 0 2.5em;
  }
  .features + .text,
  .logos + .text {
    margin: 0 0 1.5em;
  }
  .logo {
    height: 5em;
  }
}

@media only screen and (max-width: 800px) {
  .logo {
    width: 23.5%;
    margin: 0 1.5% 1.5% 0;
  }
  .logo:nth-child(6n) {
    margin-right: 1.5%;
  }
  .logo:nth-child(4n) {
    margin-right: 0;
  }
  .logo img {
    width: 55%;
  }
}

@media only screen and (max-width: 700px) {
  .logos {
    margin: 0 0 2em;
  }
  .features + .text,
  .logos + .text {
    margin: 0 0 1.2em;
  }
  .logo {
    height: 4.5em;
  }
}

@media only screen and (max-width: 550px) {
  .logos {
    margin: 0 0 1.5em;
  }
  .features + .text,
  .logos + .text {
    margin: 0 0 1em;
  }
  .logo {
    width: 32%;
    margin: 0 2% 2% 0;
  }
  .logo:nth-child(6n) {
    margin-right: 2%;
  }
  .logo:nth-child(4n) {
    margin-right: 2%;
  }
  .logo:nth-child(3n) {
    margin-right: 0;
  }
}





/*------------------------------------*\
  #COLUMNS
\*------------------------------------*/


.columns__inner {
  display: flex;
  justify-content: space-between;
}
.column {
  width: 28%;
}

.columns--two .columns__inner {
  display: flex;
  justify-content: space-between;
}
.columns--two .column {
  width: 45%;
  margin: 0;
}
.columns--two .column p:last-child {
  margin: 0;
}


@media only screen and (max-width: 1100px) {
  .columns__inner {
    display: block;
  }
  .column {
    width: 100%;
    margin-bottom: 2em;
  }
}

@media only screen and (max-width: 900px) {
  .columns--two .columns__inner {
    display: block;
  }
  .columns--two .column {
    width: 100%;
    margin-bottom: 2em;
  }
}

@media only screen and (max-width: 550px) {
  .column {
    margin-bottom: 1.5em;
  }
}





/*------------------------------------*\
  #TEXT
\*------------------------------------*/


.text {
  margin: 6em auto;
}
.text p + h3,
.text ul + h3,
.text table + h3 {
  margin-top: 1.5em;
}
.text ul {
  margin-bottom: 1.2em;
}
.text li {
  position: relative;
  padding-left: 1.5em;
  margin: 0.5em 0;
}
.text li::before {
  content: '\2022';
  width: inherit;
  height: inherit;
  font-size: 1.2em;
  top: -0.25em;
}
.text li:last-child {
  margin-bottom: 0;
}
.text ul li ul li {
  font-size: 1em;
}
.text ul li ul li::before {
  content: '\25CB';
  font-size: 0.8em;
  top: 0.25em;
}

.text__inner {
  max-width: 850px;
  margin: 0 auto;
}

.text--center {
  text-align: center;
}

.text--careers p + h3 {
  padding-top: 1.5em;
  border-top: 2px solid #f4f3f5;
}


@media only screen and (max-width: 1200px) {
  .text {
    margin: 5em auto;
  }
}

@media only screen and (max-width: 1100px) {
  .text li {
    padding-left: 1.2em;
    margin: 0.4em 0;
  }
  .text li::before {
    top: -0.2em;
  }
}

@media only screen and (max-width: 900px) {
  .text {
    margin: 4em auto;
  }
}

@media only screen and (max-width: 550px) {
  .text {
    margin: 3em auto;
  }
}





/*------------------------------------*\
  #MODULES
\*------------------------------------*/


.modules h2 {
  text-align: center;
  margin-bottom: 1.5em;
}

.modules__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.module {
  width: 48.5%;
  background: #f4f3f5;
  padding: 2.5em 3em;
  border-radius: 8px;
  margin-bottom: 3%;
}
.module p:last-child {
  margin: 0;
}


@media only screen and (max-width: 1300px) {
  .module {
    padding: 2.2em 2.5em;
  }
}

@media only screen and (max-width: 1000px) {
  .module {
    padding: 1.8em 2em;
  }
}

@media only screen and (max-width: 900px) {
  .modules__inner {
    display: block;
  }
  .module {
    width: 100%;
    margin-bottom: 1.5em;
  }
}

@media only screen and (max-width: 550px) {
  .module {
    padding: 1.5em;
    margin-bottom: 1em;
  }
}





/*------------------------------------*\
  #START
\*------------------------------------*/


.start {
  position: relative;
  background: #f4f3f5;
  padding: 6em 0;
  overflow: hidden;
  margin: 0;
}
.start::after {
  position: absolute;
  content: url(../img/shapes/circle.svg);
  width: 11.5em;
  top: -7em;
  right: 4em;
}

.start__headline {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}
.start__headline h1 span {
  color: #6abd45;
}
.start__headline p {
  font-size: 1.3em;
  margin: 0;
}

.start--form,
.start--blog {
  padding: 6em 0 14em;
}

.start--press .start__headline {
  max-width: 1000px;
}
.start--press .start__headline p span {
  font-weight: 700;
  color: #5eb03a;
  padding: 0 0.5em;
}

.subtitle + h1 {
  margin: 0;
}


@media only screen and (max-width: 1300px) {
  .start__headline {
    max-width: 700px;
  }
}

@media only screen and (max-width: 1200px) {
  .start {
    padding: 5em 0;
  }
  .start--form,
  .start--blog {
    padding: 5em 0 13em;
  }
}

@media only screen and (max-width: 1100px) {
  .start__headline {
    max-width: 600px;
  }
  .start__headline p {
    font-size: 1.2em;
  }
}

@media only screen and (max-width: 1000px) {
  .start::after {
    width: 9em;
    top: -5.5em;
    right: -4em;
  }
}

@media only screen and (max-width: 900px) {
  .start {
    padding: 4em 0;
  }
  .start--form,
  .start--blog {
    padding: 4em 0 12em;
  }
  .start__headline {
    max-width: 550px;
  }
}

@media only screen and (max-width: 700px) {
  .start__headline {
    max-width: 500px;
  }
  .start__headline p {
    font-size: 1.1em;
  }
}

@media only screen and (max-width: 600px) {
  .start__headline {
    max-width: 400px;
  }
}

@media only screen and (max-width: 550px) {
  .start,
  .start--form,
  .start--blog {
    padding: 3em 0;
  }
  .start::after {
    width: 7em;
    top: -4em;
    right: -3em;
  }
}





/*------------------------------------*\
  #RESOURCES
\*------------------------------------*/


.videos__inner {
  display: flex;
  flex-wrap: wrap;
}

.video {
  width: 45%;
  margin: 0 10% 4em 0;
}
.video:nth-child(2n) {
  margin-right: 0;
}
.video p {
  font-size: 1em;
  line-height: 1.6;
}
.video p:last-child {
  margin: 0;
}

.video__responsive {
  position: relative;
  padding-top: 56.25%;
  margin: 1em 0 1.5em;
}
.video__responsive iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}


@media only screen and (max-width: 1300px) {
  .video {
    width: 47%;
    margin: 0 6% 6% 0;
  }
}

@media only screen and (max-width: 1100px) {
  .video p {
    font-size: 0.9em;
  }
}

@media only screen and (max-width: 900px) {
  .videos__inner {
    display: block;
  }
  .video {
    width: 100%;
    margin: 0 0 3em;
  }
  .video__responsive {
    margin: 0.8em 0 1.2em;
  }
}

@media only screen and (max-width: 700px) {
  .video {
    margin: 0 0 2.5em;
  }
}

@media only screen and (max-width: 550px) {
  .video {
    margin: 0 0 2em;
  }
}







/*------------------------------------*\
  #FORM
\*------------------------------------*/


.form {
  margin-top: -8em;
}

.form__contact {
  max-width: 600px;
  background: #174376;
  padding: 3em 3.5em 3.5em;
  border-radius: 8px;
  margin: 0 auto;
}


@media only screen and (max-width: 900px) {
  .form__contact {
    max-width: 550px;
    padding: 2.5em 3em 3em;
  }
}

@media only screen and (max-width: 600px) {
  .form__contact {
    max-width: 550px;
    padding: 2em 2.5em 2.5em;
  }
}

@media only screen and (max-width: 550px) {
  .form {
    background: #174376;
    margin: 0 0 -3em;
  }
  .form__contact {
    max-width: 400px;
    padding: 3em 0;
    border-radius: 0;
  }
}





/*------------------------------------*\
  #PARTNERS
\*------------------------------------*/


.partners {
  margin-top: 4em;
  overflow: hidden;
}

.partners p {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 1.2em;
}

.slider {
  width: 100%;
}
.slick-track {
  display: flex;
  align-items: center;
}
.slick-list {
  margin: 0 -3.5em;
}
.slick-slide {
  margin: 0 3.5em;
}

.slide {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}
.slide img {
  width: 100%;
  margin: 0 auto;
}
.slide--smaller img {
  width: 80%;
}


@media only screen and (max-width: 1300px) {
  .partners {
    margin-top: 3.5em;
  }
  .partners p {
    font-size: 1.4em;
  }
  .slick-list {
    margin: 0 -3em;
  }
  .slick-slide {
    margin: 0 3em;
  }
}

@media only screen and (max-width: 1200px) {
  .slick-list {
    margin: 0 -2.5em;
  }
  .slick-slide {
    margin: 0 2.5em;
  }
}

@media only screen and (max-width: 1100px) {
  .partners {
    margin-top: 3em;
  }
  .partners p {
    font-size: 1.3em;
  }
}

@media only screen and (max-width: 900px) {
  .partners {
    margin-top: 4em;
  }
  .partners p {
    font-size: 1.2em;
  }
  .slick-list {
    margin: 0 -2em;
  }
  .slick-slide {
    margin: 0 2em;
  }
}

@media only screen and (max-width: 700px) {
  .partners {
    margin-top: 4em;
  }
  .partners p {
    font-size: 1.1em;
  }
}

@media only screen and (max-width: 600px) {
  .slick-list {
    margin: 0 -1.5em;
  }
  .slick-slide {
    margin: 0 1.5em;
  }
}

@media only screen and (max-width: 550px) {
  .partners {
    margin-top: 3em;
  }
  .partners p {
    font-size: 1em;
  }
}

@media only screen and (max-width: 450px) {
  .slick-list {
    margin: 0 -1em;
  }
  .slick-slide {
    margin: 0 1em;
  }
}






/*------------------------------------*\
  #PLANS
\*------------------------------------*/


.content--home .plans {
  margin: 0;
}

.plans {
  padding: 8em 0;
  background: #2c3444;
}

.plans__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4em;
}
.plans__header h2,
.plans__header p {
  color: #fff;
  margin: 0;
}
.header__headline,
.header__content {
  width: 45%;
}
.header__content {
  margin-top: 2.5em;
}


.plans__inner {
  display: flex;
  justify-content: space-between;
}

.plan {
  display: flex;
  flex-direction: column;
  width: 45%;
  background: #fff;
  border-radius: 8px;
}

.plan__header {
  display: flex;
  justify-content: space-between;
  padding: 2.2em 3.5em;
  border-radius: 8px 8px 0 0;
}
.plan--foundation .plan__header {
  background: #6abd45;
}
.plan--suite .plan__header {
  background: #faa31b;
}
.plan__header h3 {
  font-size: 1.9em;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 0.1em;
}
.plan__header p {
  font-size: 1.1em;
  line-height: 1.4;
  color: #fff;
  margin: 0;
}
.header__cost {
  text-align: right;
}

.plan__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2em 3.5em 3.5em;
}

.plan__table {
  margin-bottom: 2em;
}
.plan__table span {
  position: relative;
  display: block;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.4;
  color: #2c3444;
  padding: 0.5em 0;
  border-bottom: 2px solid #f4f3f5;
}
.plan__table span:last-child {
  border-bottom: none;
}
.plan__table span::after {
  position: absolute;
  width: 1em;
  height: 1em;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.plan--foundation .plan__table span::after {
  content: url(../img/icons/interface/check-green.svg);
}
.plan--suite .plan__table span::after {
  content: url(../img/icons/interface/check-orange.svg);
}

.plan__addon {
  background: #f4f3f5;
  padding: 2em 2.5em;
  border-radius: 4px;
  margin-bottom: 2em;
}
.plan__addon p {
  font-size: 1.1em;
  line-height: 1.6;
  margin: 0;
}

.plan__button {
  margin-top: auto;
}
.plan__button .button {
  width: 100%;
}

.start + .plans {
  margin-top: 0;
}

.content--subpage .plan--foundation .plan__addon,
.content--subpage .plan--suite .plan__table {
  margin-bottom: 0;
}


@media only screen and (max-width: 1300px) {
  .plans {
    padding: 7em 0;
  }
  .plan {
    width: 47%;
  }
  .plan__header {
    padding: 2em 2.5em;
  }
  .plan__content {
    padding: 1.5em 2.5em 2.5em;
  }
  .plan__table,
  .plan__addon {
    margin-bottom: 1.5em;
  }
  .plan__addon p {
    font-size: 1.1em;
  }
}

@media only screen and (max-width: 1200px) {
  .header__content {
    margin-top: 2em;
  }
}

@media only screen and (max-width: 1100px) {
  .plans {
    padding: 6em 0;
  }
  .plans__header {
    margin-bottom: 3em;
  }
  .plan {
    width: 48%;
  }
  .plan__header h3 {
    font-size: 1.7em;
    margin-bottom: 0.1em;
  }
  .plan__addon {
    padding: 1.5em 2em;
  }
  .plan__header p,
  .plan__table span,
  .plan__addon p {
    font-size: 1em;
  }
}

@media only screen and (max-width: 1000px) {
  .plan__header {
    padding: 1.8em 2em;
  }
  .plan__content {
    padding: 1.5em 2em 2em;
  }
}

@media only screen and (max-width: 900px) {
  .plans {
    padding: 5em 0;
  }
  .plans__header {
    display: block;
  }
  .header__headline,
  .header__content {
    width: 100%;
  }
  .header__content {
    margin-top: 0;
  }
  .plans__header h2 {
    margin-bottom: 0.5em;
  }
  .plans__inner {
    display: block;
  }
  .plan {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 2em;
  }
  .plan:last-child {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 700px) {
  .plans {
    padding: 4em 0;
  }
  .plans__header {
    margin-bottom: 2.5em;
  }
  .plan__header h3 {
    font-size: 1.5em;
  }
  .plan__header p,
  .plan__table span,
  .plan__addon p {
    font-size: 0.9em;
  }
}

@media only screen and (max-width: 550px) {
  .plans {
    padding: 3em 0;
  }
  .plans__header {
    margin-bottom: 2em;
  }
  .plan__header {
    padding: 1.5em;
  }
  .plan__header h3 {
    font-size: 1.4em;
  }
  .plan__content {
    padding: 1em 1.5em 1.5em;
  }
  .plan__table,
  .plan__addon {
    margin-bottom: 1em;
  }
  .plan__addon {
    padding: 1.2em 1.5em;
  }
}





/*------------------------------------*\
  #BLOG
\*------------------------------------*/


.blog-block {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.blog-block__image {
  width: 50%;
  min-height: 100%;
}
.blog-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.blog-block__content {
  width: 40%;
  padding: 4em 0;
}
.blog-block__content .content__link {
  justify-content: flex-start;
  margin-top: 1em;
}

.blog-grid__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.blog-card {
  display: flex;
  flex-direction: column;
  width: 30%;
  margin: 0 5% 5% 0;
}
.blog-card:nth-child(3n) {
  margin-right: 0;
}
.blog-card__image {
  width: 100%;
  height: 12em;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.blog-card__content {
  margin-top: 1.5em;
}
.blog-card__content .subtitle {
  font-size: 1em;
}
.blog-card__content h4 {
  color: #174376;
}
.blog-card__content p {
  font-size: 1em;
  margin: 0;
}

.start--blog .content__link {
  justify-content: flex-start;
  margin: -2em 0 2em;
}
.start--blog .content__link svg {
  margin: 0.1em 0.3em 0 0;
  transform: rotate(90deg);
}
.start--blog .content__link:hover span {
  color: #5eb03a;
}
.start--blog .content__link:hover svg {
  fill: #5eb03a;
}

.image--blog {
  margin: -8em auto 0;
}

.text--intro {
  margin-bottom: 0;
}
.text--intro + .text--blog {
  margin: 0;
}
.text--intro p {
  font-size: 1.4em;
}

.blog-video {
  background: #f4f3f5;
}


@media only screen and (max-width: 1200px) {
  .blog-block__image {
    width: 46%;
  }
  .blog-block__content {
    width: 46%;
    padding: 3em 0;
  }
  .blog-card__content .subtitle {
    font-size: 0.9em;
  }
}

@media only screen and (max-width: 1100px) {
  .blog-block__image {
    width: 47%;
  }
  .blog-block__content {
    width: 47%;
  }
  .blog-card__content p {
    font-size: 0.9em;
  }
  .text--intro p {
    font-size: 1.2em;
  }
}

@media only screen and (max-width: 900px) {
  .blog-block__content {
    padding: 2em 0;
  }
  .blog-card {
    width: 47%;
    margin: 0 6% 6% 0;
  }
  .blog-card:nth-child(3n) {
    margin-right: 6%;
  }
  .blog-card:nth-child(2n) {
    margin-right: 0;
  }
  .blog-card__content .subtitle {
    font-size: 0.8em;
  }
}

@media only screen and (max-width: 700px) {
  .blog-block {
    display: block;
  }
  .blog-block__image {
    width: 100%;
  }
  .blog-block__content {
    width: 100%;
    padding: 0;
    margin-top: 1.5em;
  }
  .blog-card {
    width: 48%;
    margin: 0 4% 2em 0;
  }
  .blog-card:nth-child(3n) {
    margin-right: 4%;
  }
  .text--intro p {
    font-size: 1.1em;
  }
}

@media only screen and (max-width: 550px) {
  .start--blog .content__link {
    margin: -1.5em 0 1.5em;
  }
  .image--blog .container {
    width: 100%;
  }
  .image--blog {
    margin: 0;
  }
  .blog-block {
    display: block;
    margin-bottom: -1em;
  }
  .blog-block__content h2 {
    font-size: 1.1em;
  }
  .blog-block__content .content__link {
    display: none;
  }
  .blog-grid__inner {
    display: block;
  }
  .blog-card {
    width: 100%;
    margin: 0 0 2em;
  }
  .blog-card:nth-child(3n) {
    margin-right: 0;
  }
}







