/*! minireset.css v0.0.3 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
ul {
  list-style: none;
}
button,
input,
select,
textarea {
  margin: 0;
}
html {
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
img,
audio,
video {
  height: auto;
  max-width: 100%;
}
iframe {
  border: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
  text-align: left;
}
/* GLOBAL STYLES
--------------------------w------------------------ */
body {
  color: rgba(0, 0, 0, 0.7);
  font-size: 15px;
  line-height: 1.4;
  scroll-behavior: smooth;
}
body,
button,
input,
select,
textarea {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
.navy {
  color: #3273dc;
}
p {
  margin: 0 0 10px;
}
h1,
h2 {
  margin-top: 10px;
  font-size: 30px;
  font-weight: 200;
}
h3 {
  font-size: 20px;
  font-weight: 600;
}
h1,
h2,
h3 {
  margin-bottom: 10px;
  line-height: 1.1;
}
a {
  color: hsl(217, 71%, 53%);
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  color: hsl(0, 0%, 21%);
}
.navy-line {
  width: 60px;
  height: 1px;
  margin: 0 auto 0;
  border-bottom: 2px solid #3273dc;
}
/* NAVBAR
-------------------------------------------------- */
.navbar {
  min-height: 50px;
  position: relative;
  z-index: 30;
  background-color: white;
  box-shadow: 3px 0 5px #9f9f9f;
  transition: all 0.3s ease-in-out 0s;
  line-height: 1;
}
.navbar.is-fixed-top {
  top: 0;
  left: 0;
  position: fixed;
  right: 0;
  z-index: 30;
}
@media screen and (min-width: 768px) {
  .navbar .container {
    display: flex;
    padding-left: 0;
    padding-right: 0;
  }
}
.navbar-brand {
  align-items: stretch;
  display: flex;
  flex-shrink: 0;
  min-height: 50px;
}
.navbar .navbar-brand .navbar-logo {
  color: #fff;
  height: auto;
  display: block;
  font-size: 20px;
  background: #3273dc;
  padding: 15px 25px;
  border-radius: 0 0px 5px 5px;
  font-weight: 500;
  transition: all 0.3s ease-in-out 0s;
}
.navbar.is-white .navbar-brand .navbar-logo {
  border-radius: 0;
}
@media (max-width: 767px) {
  .navbar .navbar-brand .navbar-logo {
    border-radius: 0;
  }
}
.navbar-burger {
  cursor: pointer;
  display: block;
  height: 3.1rem;
  position: relative;
  width: 3.1rem;
  margin-left: auto;
}
.navbar-burger span {
  background-color: currentColor;
  display: block;
  height: 1px;
  left: calc(50% - 8px);
  position: absolute;
  -webkit-transform-origin: center;
  transform-origin: center;
  transition-duration: 86ms;
  transition-property: background-color, opacity, -webkit-transform;
  transition-property: background-color, opacity, transform;
  transition-property: background-color, opacity, transform, -webkit-transform;
  transition-timing-function: ease-out;
  width: 16px;
}
.navbar-burger span:nth-child(1) {
  top: calc(50% - 6px);
}
.navbar-burger span:nth-child(2) {
  top: calc(50% - 1px);
}
.navbar-burger span:nth-child(3) {
  top: calc(50% + 4px);
}
.navbar-burger:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.navbar-burger.is-active span:nth-child(1) {
  -webkit-transform: translateY(5px) rotate(45deg);
  transform: translateY(5px) rotate(45deg);
}
.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}
.navbar-burger.is-active span:nth-child(3) {
  -webkit-transform: translateY(-5px) rotate(-45deg);
  transform: translateY(-5px) rotate(-45deg);
}
.navbar-menu {
  display: none;
}
.navbar-item {
  color: #4a4a4a;
  display: block;
  padding: 0.5rem 0.75rem;
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
}
a.navbar-item {
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
}
a.navbar-item:hover,
a.navbar-item.is-active {
  color: #3273dc;
}
.navbar-item img {
  max-height: 1.75rem;
}
.navbar-item.btn {
  margin-top: 6px;
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .navbar-brand .navbar-item {
    align-items: center;
    display: flex;
  }
  .navbar-menu {
    padding: 0.5rem 0;
  }
  .navbar-menu.is-active {
    display: block;
  }
  .navbar.is-fixed-top .navbar-menu {
    -webkit-overflow-scrolling: touch;
    max-height: calc(100vh - 3.25rem);
    overflow: auto;
  }
  .navbar-menu .navbar-item {
    padding: 1rem 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .navbar,
  .navbar-menu,
  .navbar-start,
  .navbar-end {
    align-items: stretch;
    display: flex;
  }
  .navbar-burger {
    display: none;
  }
  .navbar-item {
    align-items: center;
    display: flex;
  }
  .navbar-menu {
    flex-grow: 1;
    flex-shrink: 0;
  }
  .navbar-start {
    justify-content: flex-start;
    margin-left: 40px;
    margin-right: auto;
  }
  .navbar-end {
    justify-content: flex-end;
    margin-left: auto;
  }
  .navbar.is-transparent {
    background-color: transparent !important;
    box-shadow: none;
  }
  .navbar.is-transparent a.navbar-item {
    color: white;
  }
  .navbar.is-transparent a.navbar-item:hover {
    color: #3273dc;
  }
}
.btn-hidden-sm {
  margin-left: 12px;
}
@media screen and (max-width: 992px) {
  .navbar-end .btn-hidden-sm {
    display: none;
  }
}
/* CAROUSEL
-------------------------------------------------- */
.carousel {
  height: 470px;
  overflow: visible;
}
.carousel .container {
  position: relative;
}
.carousel-caption {
  color: white;
  position: absolute;
  top: 100px;
  left: 0;
  bottom: auto;
  right: auto;
  text-align: left;
  top: 140px;
  z-index: 10;
}
@media (max-width: 767px) {
  .carousel-caption {
    left: 20px;
  }
}
.carousel-caption h1 {
  font-weight: 700;
  font-size: 38px;
  text-transform: uppercase;
  text-shadow: none;
  letter-spacing: -1.5px;
}
.carousel-caption p {
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: none;
  margin-bottom: 30px;
}
.carousel-image {
  position: absolute;
  right: 10px;
  top: 120px;
  width: 632px
}
@media (max-width: 992px) {
  .carousel-image {
    display: none;
  }
}
.carousel > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 470px;
}
.header-back {
  height: 470px;
  width: 100%;
  background: url('../img/header.jpg') 50% 0 no-repeat;
}
/* Container
------------------------- */
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
/* Fontawesome
------------------------- */
.fa-inline {
  display: inline-block;
  font-size: inherit;
  height: 1em;
  width: 1em;
  min-width: 1em;
  overflow: visible;
  vertical-align: -0.125em;
  text-align: center;
}
.fa-inline.features-flag {
  font-size: 40px;
  overflow: visible;
}
.fa-inline.features-icon {
  color: #3273dc;
  font-size: 40px;
  overflow: visible;
}
/* Images
------------------------- */
img {
  vertical-align: middle;
}
.img-responsive {
  display: block;
}
/* Sections
------------------------- */
.core-features {
  padding-top: 80px;
}
.digitalization,
.integrations,
.testimonials,
.benefits,
.pricing,
.contact {
  padding-top: 60px;
}
.optimization {
  padding-top: 80px;
}
.integrations {
  text-align: center;
}
.benefits,
.testimonials,
.contact {
  background: #f4f4f4;
}
.core-features .heading,
.integrations .heading,
.digitalization .heading,
.optimization .heading,
.testimonials .heading,
.benefits .heading,
.pricing .heading,
.contact .heading {
  margin-bottom: 30px;
  text-align: center;
}
.core-features-list {
  display: grid;
  grid-gap: 20px;
}
.core-features-list h3 {
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .core-features-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .core-features-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.integrations-list {
  display: grid;
  grid-gap: 30px;
}
.integration-image img {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 992px) {
  .integrations-list {
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-areas: "online  image  email" "oem     image  callcenter" "website image  custom";
  }
  .online-marketplace {
    grid-area: online;
  }
  .oem-marketplace {
    grid-area: oem;
  }
  .website {
    grid-area: website;
  }
  .integration-image {
    grid-area: image;
    align-self: center;
  }
  .email {
    grid-area: email;
  }
  .callcenter {
    grid-area: callcenter;
  }
  .custom {
    grid-area: custom;
  }
}
.core-features h3,
.integrations h3 {
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-top: 10px;
}
.digitalization-content {
  display: grid;
  grid-gap: 20px;
}
.digitalization-content div {
  align-self: center;
  justify-self: center;
}
.digitalization-image img {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .digitalization-content {
    grid-template-columns: 1fr 1fr;
  }
}
.optimization {
  margin-bottom: 20px;
  padding-bottom: 60px;
}
.optimization-content {
  display: grid;
  grid-gap: 20px;
}
.optimization-content div {
  align-self: center;
  justify-self: center;
}
.optimization-content-revenue {
  text-align: right;
}
@media screen and (min-width: 960px) {
  .optimization-content {
    grid-template-columns: 1fr 2fr 1fr;
  }
}
.testimonials {
  padding-bottom: 80px;
}
.testimonials-content {
  display: grid;
  grid-gap: 20px;
}
@media screen and (min-width: 960px) {
  .testimonials-content {
    grid-template-columns: 1fr 1fr;
  }
}
.bubble {
  position: relative;
  height: 120px;
  padding: 20px;
  background: #FFFFFF;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  font-style: italic;
}
.bubble:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 15px 14px 0;
  border-color: #FFFFFF transparent;
  display: block;
  width: 0;
  z-index: 1;
  bottom: -15px;
  left: 30px;
}
.comments-avatar {
  display: flex;
  margin-top: 25px;
  margin-left: 22px;
}
.comments-avatar img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-right: 10px;
}
.comments-avatar .comments-name {
  font-weight: 600;
}
.comments-avatar .comments-role {
  font-size: 12px;
  color: #777;
}
.benefits {
  padding-bottom: 60px;
}
.benefits-content {
  display: grid;
  grid-gap: 20px;
}
@media screen and (min-width: 960px) {
  .benefits-content {
    grid-template-columns: 1fr 1fr;
  }
}
.benefits-item {
  display: flex;
  justify-content: space-between;
  align-content: start;
}
.benefits-item h3 {
  margin-top: 0;
}
.benefits-item .fa-inline {
  margin-right: 20px;
}
.pricing-content {
  margin-top: 20px;
  display: grid;
  grid-gap: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .pricing-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pricing-plan {
  background: #f4f4f4;
  margin: 0 20px;
  padding: 20px;
}
.pricing-title {
  text-align: center;
  text-transform: uppercase;
}
.pricing-title .navy-line {
  margin: 10px auto 0;
}
.pricing-price {
  margin-top: 30px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
.pricing-price.pricing-onrequest {
  margin-bottom: 50px;
}
.pricing-unit {
  margin-bottom: 30px;
  font-weight: 500;
  text-align: center;
}
.pricing-features {
  padding-left: 0;
  list-style: none;
}
.pricing-features li {
  padding: 5px 0;
  display: flex;
}
.pricing-features li svg {
  margin-top: 3px;
  margin-right: 10px;
}
.pricing-cta {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.contact {
  background-image: url('../img/word_map.png');
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin-top: 60px;
  text-align: center;
}
.contact .btn {
  margin-top: 20px;
}
.contact .container p:last-child {
  margin-bottom: 0;
  padding-bottom: 10px;
}
.imprint {
  padding-top: 80px;
  text-align: center;
}
.datenschutz {
  padding-top: 80px;
}
.datenschutz .heading {
  text-align: center;
}
footer {
  text-align: center;
}
/* Buttons - only primary custom button
------------------------- */
.btn {
  color: #fff;
  background-color: #3273dc;
  border-color: #3273dc;
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 0;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn:focus,
.btn:hover {
  color: white;
  background-color: #205bbb;
}
.btn-white {
  color: rgba(0, 0, 0, 0.7);
  background-color: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.7);
}
a.navbar-item.btn-white:hover,
a.navbar-item.btn-white:focus {
  color: rgba(0, 0, 0, 0.7);
  background-color: rgba(207, 207, 207, 0.479);
}
a.navbar-item.btn.btn-blue:hover:focus,
a.navbar-item.btn.btn-blue:hover:hover,
.navbar a.navbar-item.btn.btn-blue:focus,
.navbar a.navbar-item.btn.btn-bule:hover {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .navbar a.navbar-item.btn.btn-white {
    margin-left: 24px;
  }
}
@media screen and (min-width: 768px) {
  .navbar.is-transparent a.navbar-item.btn.btn-white {
    color: rgba(0, 0, 0, 0.7);
  }
  .navbar.is-transparent a.navbar-item.btn.btn-white:focus,
  .navbar.is-transparent a.navbar-item.btn.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.6);
  }
}
