/*COLORS*/
/*SECTION STANDARDS*/
* {
  font-family: 'Red Hat Display', sans-serif;
}

body, html {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #252525;
}

#navbar {
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: fixed;
  padding: 5px 0px;
  background: white;
  -webkit-box-shadow: 0px 10px 10px -7px rgba(24, 24, 24, 0.411);
          box-shadow: 0px 10px 10px -7px rgba(24, 24, 24, 0.411);
}

.navbar-wrapper {
  max-width: 1100px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: .2s;
  transition: .2s;
}

.input-error {
  border: 1px solid #ff5656 !important;
}

.form-success {
  color: #1a8b1a;
}

.form-error {
  color: #ff5656;
}

#logo img {
  max-width: 120px;
}

#nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  font-size: 18px;
  -webkit-transition: top .5s;
  transition: top .5s;
}

#nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#nav ul li {
  margin-right: 50px;
}

#cta {
  background: transparent;
  border: 1px solid #891aa5;
  border-radius: 2px;
  color: #222;
  cursor: pointer;
  padding: 10px 20px;
}

.is-sticky .navbar-wrapper {
  max-width: 1300px;
}

.is-sticky {
  background: #0E1330;
  z-index: 99999;
  -webkit-box-shadow: 0px 10px 10px -7px rgba(24, 24, 24, 0.411);
          box-shadow: 0px 10px 10px -7px rgba(24, 24, 24, 0.411);
  -webkit-transition: top 0.5s;
  transition: top 0.5s;
}

.is-sticky a {
  color: #252525 !important;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 4px;
  background: #891aa5;
  margin: 4px;
  border-radius: 2px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .burger {
    display: block;
    margin-left: 20px;
  }
  .nav-links {
    position: absolute;
    right: 0px;
    height: 94vh;
    background: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50%;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.5s ease-in;
    transition: -webkit-transform 0.5s ease-in;
    transition: transform 0.5s ease-in;
    transition: transform 0.5s ease-in, -webkit-transform 0.5s ease-in;
    margin-top: 0px;
    top: 55px;
  }
  #nav ul li:last-child {
    padding-bottom: 80px;
  }
  #nav ul li {
    opacity: 0;
  }
  #nav ul li {
    margin-right: 0px;
  }
  .navbar-wrapper {
    padding: 0px 30px;
  }
}

.nav-active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

@-webkit-keyframes navLinkFade {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

.toggle .line1 {
  -webkit-transform: rotate(-45deg) translate(-5px, 6px);
          transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  -webkit-transform: rotate(45deg) translate(-5px, -6px);
          transform: rotate(45deg) translate(-5px, -6px);
}

/*COTENT*/
#main {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(138, 138, 138, 0.32)), to(rgba(138, 138, 138, 0.32))), url(../assets/bg2.jpeg);
  background: linear-gradient(to bottom, rgba(138, 138, 138, 0.32), rgba(138, 138, 138, 0.32)), url(../assets/bg2.jpeg);
  background-size: cover;
  background-position: center;
  background-position: top;
}

.main-wrapper {
  max-width: 1000px;
  margin: auto;
  padding-top: 150px;
  padding-bottom: 50px;
}

#main h1, form h3 {
  color: #891aa5;
}

.main-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

form {
  background: rgba(255, 255, 255, 0.89);
  border-radius: 2px;
  max-width: 400px;
}

form label {
  color: #ff8d22;
}

.form-wrapper {
  padding: 20px 40px 20px 20px;
}

.form-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
  row-gap: 10px;
}

.form-inner input, .form-inner textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 5px 10px;
  color: #252525;
  background: #ffffffd2;
  border-radius: 2px;
  -webkit-appearance: none;
}

.form-inner input:focus, .form-inner textarea:focus {
  border: 1px solid #ff8d22;
}

.submit input:focus {
  border: none;
}

.email, .tel, .nachricht {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}

.submit {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}

.submit input {
  background: #891aa5;
  color: white;
  border: none;
  cursor: pointer;
  padding: 15px 0px;
  border-radius: 2px;
  font-size: 18px;
  -webkit-appearance: none;
}

.right {
  margin-left: auto;
}

.paragraphs-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

h2 {
  margin-bottom: 50px;
}

.winnings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
}

.winnings img {
  max-width: 50px;
  margin-right: 50px;
}

.customers {
  width: 100%;
  padding-top: 70px;
}

.customers-wrapper {
  max-width: 1000px;
  margin: auto;
}

.slick-dots li button::before {
  font-size: 45px !important;
  color: #891aa5 !important;
}

.slider-inner {
  text-align: center;
  padding: 20px 0px;
}

.slider-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slider-img img {
  max-width: 50px;
  height: 50px;
  border-radius: 50px;
}

.slider-text img {
  max-width: 100px;
}

.slider-text {
  margin-left: 20px;
}

.slider-text p {
  margin: 0;
}

.work {
  margin-top: 100px;
  text-align: center;
}

.work-grid {
  margin: 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  width: 100%;
}

.work-grid img {
  width: 100%;
}

.contactus {
  width: 100%;
  margin-top: 100px;
  background: #891aa5;
}

.contactus-wrapper {
  padding: 20px 0px;
  color: white;
  max-width: 1000px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.contact-img img {
  width: 100px;
}

.contact-cta {
  margin-left: 20px;
}

.contact-cta p {
  margin: 0;
  padding-bottom: 20px;
}

.contact-cta a {
  padding: 10px 40px;
  color: white;
  background: #ff8d22;
  border-radius: 2px;
}

.faq {
  margin-top: 100px;
  text-align: center;
}

.faq-wrapper {
  max-width: 1000px;
  margin: auto;
}

.faq-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.faq-inner {
  text-align: left;
}

footer {
  background: #891aa5;
  width: 100%;
  margin-top: 100px;
}

.footer-wrapper {
  padding-top: 50px;
  max-width: 1000px;
  margin: auto;
}

.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  margin: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1;
          flex: 1 1 1;
}

.quicklinks, .logo-footer {
  width: 33.33%;
}

.quicklinks ul li a {
  color: white;
}

.footer-top ul {
  list-style: none;
  margin-left: 0px;
  padding-left: 10px;
}

.footer-top ul li {
  padding-bottom: 10px;
}

.footer-top {
  color: white;
}

.footer-top h3 {
  margin-top: 0;
  color: #ff8d22;
}

.footer-top div:nth-child(1), .footer-top div:nth-child(2) {
  margin-right: 50px;
}

.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  padding-bottom: 20px;
  padding-top: 10px;
  margin-top: 40px;
  border-top: 1px solid #fff;
  color: white;
}

.footer-bottom a {
  color: white;
}

.law {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.law a {
  margin-left: 20px;
}

.social img, .footer-winnings img {
  max-width: 50px;
  width: 50px;
  margin-right: 10px;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-winnings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

@media screen and (max-width: 1000px) {
  .navbar-wrapper, .faq-wrapper, .main-wrapper, .contactus-wrapper, .customers-wrapper, .footer-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  #nav {
    font-size: 16px;
  }
  #nav ul li {
    margin-right: 25px;
  }
}

@media screen and (max-width: 790px) {
  .main-flex {
    display: block;
  }
  .main-wrapper {
    padding-top: 100px;
  }
  form {
    max-width: 100%;
  }
  .is-sticky .navbar-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
  #navbar {
    padding: 10px 0px;
  }
  .submit {
    margin: auto;
    margin-left: 0px;
  }
  .submit input {
    margin: auto;
    padding-left: 40px;
    padding-right: 40px;
  }
  .submit input {
    max-width: 103%;
  }
  .customers-wrapper {
    overflow-x: hidden;
  }
  .paragraphs-flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .winnings {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 50px;
  }
  .left {
    text-align: center;
  }
  .winnings img:nth-child(3) {
    margin-right: 0;
  }
  .work-grid {
    display: block;
  }
  .faq-flex {
    display: block;
  }
  .faq-inner {
    text-align: center;
  }
  .footer-top {
    display: block;
  }
  .quicklinks, .logo-footer {
    width: 100%;
  }
  .social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 0;
  }
  .footer-top div:nth-child(1), .footer-top div:nth-child(2) {
    margin-right: 0;
  }
  .footer-winnings {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #main{
    background-position: 700px;
  }
}
/*# sourceMappingURL=style.css.map */