body {
  background: #fff;
  color: #666666;
  font-family: "Overpass", Arial, sans-serif;
  overflow-x: hidden;
}

a {
  color: #4e83b9;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #931477;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
  font-weight: 100;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 200;
  margin: 0 0 20px 0;
  padding: 0;
}

hr {
  width: 95%;
  margin: 0 0 40px 0;
  color: transparent;
  background: transparent;
  border: none;
}

.back-to-top {
  position: fixed;
  display: none;
  background: #931477;
  color: #fff;
  display: inline-block;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 1000;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.nav-menu, .nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

#nav-menu-container {
  float: right;
  margin: 0;
  padding-right: 100px;
}

@media (min-width: 1024px) {
  #nav-menu-container {
    padding-right: 100px;
  }
}

@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}

.nav-menu a {
  padding: 0 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-weight: 300;
  font-size: 18px;
  outline: none;
}

.nav-menu li:hover > a, .nav-menu {
  color: #931477;
}

.nav-menu > li {
  margin-left: 10px;
}

#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}

@media (max-width: 768px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.8);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}

body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  border: none;
  outline: none;
  padding: 0 8px 10px 8px;
  margin-bottom: 22px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-weight: 700;
  background-color: inherit;
  font-size: 20px;
  outline: none;
}

.dropdown-content {
  display: none;
  overflow: hidden;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  z-index: 50;
}

.dropdown-content a {
  float: none;
  padding: 12px;
  text-decoration: none;
  display: block;
  color: #931477;
  text-align: left;
  z-index: 100;
}

.dropdown:hover .dropbtn {
  color: #931477;

}

.dropdown-content a:hover {
  color: #4e83b9;
}

.dropdown:hover .dropdown-content {
  display: block;
}

#header {
  padding: 30px 0;
  height: 92px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header h1 span{
  font-weight: 200;
}

#header.header-scrolled {
  /* fallback background: #86909a; */

  background: #665fee;
  /* Old browsers */
  background: -moz-linear-gradient(311deg, #9f1f70, #00a2cc 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(311deg, #9f1f70, #00a2cc 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -o-linear-gradient(311deg, #9f1f70 #00a2cc 100%);
  background: linear-gradient(311deg, #9f1f70, #00a2cc 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#665fee', endColorstr='#27c2de',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  opacity: .9;

  padding: 20px 0;
  height: 82px;
  transition: all 0.5s;
}

#header #logo {
  float: left;
}

@media (min-width: 1024px) {
  #header #logo {
    padding-left: 100px;
  }
}

#header #logo h1 {
  font-size: 20px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 3px;
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: #f2f4f9;
  padding-left: 10px;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 15px;
  }
  #header #logo img {
    max-height: 40px;
  }
}

#intro {
  display: table;
  width: 100%;
  height: 800px;
  background: #000;
}

@media (max-width: 900px) {
  #intro {
    height: 600px;
  }
}

#intro h1 {
  margin-bottom: 10px;
  font-weight: 300;
  color: white;
  font-size: 40px !important;
}

#intro h2 {
  color: #fff;
  margin-bottom: 60px !important;
  padding-top: 150px;
  font-size: 70px;
  font-weight: 700;
}

#intro h2 span {
  font-weight: 300;
}

#intro h3 {
  margin-bottom: 50px;
  font-weight: 300;
  color: white;
  text-align: end;
  font-size: 25px;
  line-height: 35px;
}

#intro .container {
  max-width: 100% !important;
  padding-right: 120px !important;
}

#intro .flex-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#intro a {
  color: white;
  border: 2px solid white;
  padding: 10px 25px;
  font-size: 20px;
  font-weight: 300;
  margin-right: 5px;
}

@media (max-width: 900px) {
  #intro .container {
    padding-right: 0 !important;
  }
}

@media (max-width: 900px) {
  #intro h2 {
    padding-top: 70px;
    text-align: center;
    font-size: 25px;
  }
}

@media (max-width: 900px) {
  #intro h1 {
    font-size: 20px !important;
    text-align: center;
  }
}

@media (max-width: 900px) {
  #intro h3 {
    font-size: 15px !important;
    text-align: center;
    margin-bottom: 10px;
  }
}

@media (max-width: 900px) {
  #intro a {
    font-size: 15px !important;
  }
}

@media (max-width: 900px) {
  #intro .flex-box {
    align-items: center;
  }
}

.particles-wrapper {
  padding: 50px 0 0 0;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 50%;
}

.particles-js-canvas-el {
  height: 700px !important;
}

@media (max-width: 900px) {
  .hide {
    display: none;
  }
}

@media (max-width: 500px) {
  #particles-js {
    display: none;
  }
}

.section-header h3 {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  margin-top: 50px;
}

.section-header h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #931477;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}


.section-bg {
  background: #f7f7f7;
}

/*Team*/

#team {
  position: relative;
  z-index: 500;
}

#team .container {
  position: relative;
  z-index: 500;
}

#team h2 {
  color: black !important;
  margin-bottom: 0 !important;
}

#team p {
  margin-bottom: 20px !important;
}

#team .row {
  margin-bottom: 40px;
}

#team .img-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media (max-width: 800px) {
  .img-container {
    align-items: center !important;
    padding-bottom: 20px !important;
  }
}

@media (max-width: 800px) {
  h3, p {
    text-align: center !important;
  }
}

.hoverable {
  cursor: pointer;
}

.hoverable .hover {
  display: none;
}

.hoverable:hover .normal {
  display: none;
}

.hoverable:hover .hover {
  display: block;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
  font-style: italic;
}

.hoverable:hover .hover p {
  padding: 45px 0 25px 0 !important;
  line-height: 30px;
}

@-webkit-keyframes fadeIn {
  from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
    to { opacity: 1; }
}

/*About */

#pricing {
  background-size: cover;
  position: relative;
  z-index: 500;
}

#pricing .container {
  position: relative;
  z-index: 500;
}

#pricing .flex-row {
  display: flex;
  justify-content: space-between;
}

#pricing .flex-row img {
  padding-right: 20px;
}

@media (max-width: 800px) {
  #pricing .flex-center {
    display: flex;
    justify-content: center !important;
  }
}

/*service*/

#service {
  padding: 200px 0;
  margin: 65 0 55 0px;
  line-height: 40px;
  color: white;
}

#service h2 {
  font-size: 50px;
  font-weight: 400;
}

#service p {
  font-size: 18px;
}

#service ul {
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 100;
  list-style: none;;
}

#service li::before {
  content: "\2714";
}

#service .container {
  display: flex;
  justify-content: center;
  margin-top: 5vh;
}

@media (max-width: 768px){
  #service .container {
    justify-content: center;
  }
  #service h2 {
    font-size: 5vh;
  }
}


/*Vorteile*/

#vorteile {
  padding: 200px 0;
  margin: 65 0 55 0px;
  line-height: 40px;
  color: white;
}

#vorteile h2 {
  font-size: 50px;
  font-weight: 400;
}

#vorteile p {
  font-size: 18px;
}

#vorteile ul {
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 100;
  list-style: none;;
}

#vorteile li::before {
  content: "\2714";
}

#vorteile .container {
  display: flex;
  justify-content: center;
  margin-top: 5vh;
}

@media (max-width: 768px){
  #vorteile .container {
    justify-content: center;
  }
  #vorteile h2 {
    font-size: 5vh;
  }
}

/*Products */

#products {
  position: relative;
  padding: 0 0 20px 0;
}

#products .container {
  position: relative;
  z-index: 500;
}

#products .flex-row {
  display: flex;
  align-items: center;
}

.container-products {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 10vh;
}

.container-column {
  margin-bottom: 15px;
}

.container-column p {
  margin: 0;
}

.hide-show,.hide-show-content{
  cursor: pointer;
  padding: 4vh;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.377);
}

.hide-show-content{
  border-top-width: 0;
  transition: all 200ms ease-in-out;
  margin-bottom: 2vh;
  background-color: #f2f4f9;
}

.hide-show-content p {
  padding-top: 4vh;
}

.hide-show--expanded + .hide-show-content{
  padding: 2vh;
}

.hide-show--collapsed + .hide-show-content{
  font-size:0;
  height:0;
  padding:0;
  margin: 0;
}


/*#clients {
  padding: 200px 0;
  margin: 60 0 60 0px;
  background: #f2f4f9;
}

#clients img {
  max-width: 100%;
  opacity: 0.5;
  transition: 0.3s;
  padding: 15px 0;
}

#clients img:hover {
  opacity: 1;
}*/

#contact {
  padding: 250px 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-content: center;
}

#contact .container {
  display: flex;
  justify-content: center;
}

#contact .contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact p,h2, h3 {
  color: #fff;
}

@media (max-width: 768px){
  #contact p,h2,input {
  text-align: center;
  font-size: 22px;}
}


#contact input.contactButton {
  color: white;
  border: 2px solid white;
  background: transparent;
  padding: 10px 25px;
  font-size: 20px;
  font-weight: 300;
  margin-right: 5px;
  cursor: pointer;
}

#footer {
  background: #f2f4f9;
  padding: 60px 0 30px 0;
  color: #86909a;
  font-size: 14px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

/* custom */

.icon-gradient {
  background: #665fee;
  /* Old browsers */
  background: -moz-linear-gradient(45deg, #665fee 0%, #27c2de 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, #665fee 0%, #27c2de 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -o-linear-gradient(45deg, #665fee 0%, #27c2de 100%);
  background: linear-gradient(45deg, #665fee 0%, #27c2de 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }

.slant-light,
.slant-white {
    position: relative; }
  .slant-light:after,
  .slant-white:after {
      content: "";
      position: absolute;
      bottom: -100px;
      left: -50px;
      height: 200px;
      width: 130%;
      background-color: #f2f4f9;
      -webkit-transform: rotate(-4deg);
      -ms-transform: rotate(-4deg);
      transform: rotate(-4deg);
      z-index: 10; }
  .slant-light.slant-reverse:after,
  .slant-white.slant-reverse:after {
      -webkit-transform: rotate(4deg);
      -ms-transform: rotate(4deg);
      transform: rotate(4deg);
      left: -100px;
      bottom: -140px; }

  .slant-white:after {
    background-color: #fff; }

    .gradient_v1:before {
      background: #665fee;
      /* Old browsers */
      background: -moz-linear-gradient(311deg, #9f1f70, #00a2cc 100%);
      /* FF3.6-15 */
      background: -webkit-linear-gradient(311deg, #9f1f70, #00a2cc 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: -o-linear-gradient(311deg, #9f1f70, #00a2cc 100%);
      background: linear-gradient(311deg, #9f1f70, #00a2cc 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#665fee', endColorstr='#27c2de',GradientType=1 );
      /* IE6-9 fallback on horizontal gradient */
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0; }

  .cover_v3 a, .xl_cover a {
    color: rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid transparent; }
    .cover_v3 a:hover, .xl_cover a:hover {
      color: white;
      border-bottom: 2px solid white; }

  .cover_v3 .btn, .xl_cover .btn {
    color: white; }

  .cover-bg-opacity-8 {
    opacity: .8; }