@import url(//fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700);

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  font-size: 14px;
  color: #333333;
}

h1 {
  font-family: 'Poppins', sans-serif;
  letter-spacing: 2px;
  font-size: 48px;
}

p {
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  font-size: 14px;
  color: #333333;
}

.header {
  position: relative;
  background: linear-gradient(60deg, rgba(255, 190, 11, 0.2) 0%, rgba(255, 204, 62, 0.4) 100%);
  color: black;
  overflow: hidden;

  .header-content {
    width: 100%;
    display: flex;

    .claim {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: start;

      .title {
        margin: 30px 0 20px 0;
        font-size: 35px;
        line-height: 35px;
        font-weight: 300;

        .bold {
          font-weight: 900;
        }
      }

      .info {
        font-weight: 300;
        font-size: 18px;

      }
    }

    .action {
      margin-top: 20px;

      .button {
        margin-right: 10px;
      }
    }

    .image {
      width: 370px;

      img {
        height: 300px;
      }
    }
  }
}

.logo {
  width: 70px;
  fill: white;
  display: inline-block;
  vertical-align: middle;
}

.main-padding {
  padding: 0 30px;
}

.inner-header {
  height: 450px;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;

  .logo {
    padding-top: 30px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;

    img {
      width: 180px;
    }
  }
}

.flex {
  /*Flexbox for containers*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position: relative;
  width: 100%;
  height: 2vh;
  margin-bottom: -7px;
  /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
}

.container-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  max-width: 1440px;
}

.content {
  position: relative;
  text-align: center;
  background-color: white;
  margin-top: 40px;
}

/* Animation */

.parallax>use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
  animation-delay: -4s;
  animation-duration: 6s;
}

.parallax>use:nth-child(2) {
  animation-delay: -6s;
  animation-duration: 10s;
}

.parallax>use:nth-child(3) {
  animation-delay: -8s;
  animation-duration: 26s;
}

.parallax>use:nth-child(4) {
  animation-delay: -10s;
  animation-duration: 40s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

.bold {
  font-weight: 600;
}

.bolder {
  font-weight: 700;
}

.button {
  background-color: #FFBE0B;
  border-radius: 42px;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-family: Arial;
  font-size: 16px;
  padding: 16px 31px;
  border: 2px solid #FFBE0B;
  text-decoration: none;
}

.button:hover {
  background-color: #FFCB3A;
}

.button:active {
  position: relative;
  top: 1px;
}


input[type=text] {
  font-size: 16px;
  background-color: #fff;
  border-radius: 50px;
  padding: 16px 31px;
  border: 2px solid white;
  outline: none;
}

input[type=text]:focus,
input[type=text]:focus-visible {
  border: 2px solid #FFCB3A !important;
}

.call-to-action {
  position: relative;
  width: 400px;
  height: 50px;


  .input {
    width: 100%;
    border: 2px solid white;
    border-radius: 100px;
    height: 100%;
    padding: 10px 100px 10px 20px;
    line-height: 1;
    box-sizing: border-box;
    outline: none;
    -webkit-box-shadow: 0px 0px 39px 0px rgba(231, 231, 231, 1);
    -moz-box-shadow: 0px 0px 39px 0px rgba(231, 231, 231, 1);
    box-shadow: 0px 0px 39px 0px rgba(231, 231, 231, 1);
  }

  .button {
    position: absolute;
    right: 7px;
    top: 7px;
    bottom: 7px;
    border: 0;
    background: #FFCB3A;
    color: #fff;
    outline: none;
    margin: 0;
    padding: 0 10px;
    border-radius: 100px;
    z-index: 2;
  }
}

.do-you-know {
  display: flex;
  flex-direction: column;
  align-items: center;

  .info {
    text-align: start;

    .point {
      font-size: 18px;
    }
  }
}

.solution {
  .feedlab {
    width: 180px;
  }
}

.two-sides {
  display: flex;
  flex-direction: row;

  .title {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 20px;
  }

  .info {
    margin-bottom: 15px;
    text-align: start;
    font-size: 16px;
    margin-bottom: 15px;
  }

  .points {
    text-align: start;

    .point {
      display: flex;
      margin-bottom: 15px;
      text-align: start;
      font-size: 16px;

      .check {
        fill: #FFCB3A;
        margin-top: 3px;
        margin-right: 15px;
      }
    }
  }

  .left {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .right {
    flex: 1;
  }
}

.b2b {

  .img {
    max-width: 500px;
  }
}

.b2c {
  .img {
    max-width: 500px;
  }
}


.lets-talk {
  margin-top: 100px;

  a {
    text-decoration: none;
    color: white;
  }

  .lets-talk-button {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #0e76a8;
    border: 2px solid #0e76a8;
    padding: 16px;
    font-size: 20px;
    border-radius: 100px;
    font-weight: 100;

    .title {
      margin: 0 20px;
    }

    .pic {
      width: 30px;
    }

    .li {
      width: 30px;
      margin-left: 10px;
    }
  }

  .lets-talk-button:hover {
    background-color: #1892CD;
    border: 2px solid #1892CD;
  }
}

.for-me {
  margin-top: 70px;

  .title {
    font-size: 40px;
  }

  .point {
    display: flex;
    flex-direction: column;
    align-items: start;
    font-size: 20px;
    margin-bottom: 15px;
  }
}

.gen-quote {
  margin-top: 100px;
  font-size: 30px;
}

.founder-quote {
  margin-top: 100px;
  display: flex;
  flex-direction: row;
  text-align: start;

  .avatar {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;

    .pic {
      margin: 0 30px;
    }
  }

  .quote {
    flex: 5;


    .text {
      max-width: 600px;
      font-style: italic;
    }

    .signature {
      display: flex;
      flex-direction: column;
      align-items: end;

      .avatar {
        display: none;
      }

      .name {
        font-weight: 600;
      }

      .title {
        font-weight: 200;
      }
    }
  }
}

.claim-bottom {
  font-size: 30px;
  margin: 80px 0 40px 0;
}

.call-to-action-bottom {
  #call_bottom {
    margin-top: 30px;
  }

  .title {
    font-size: 18px;
  }

  .input {
    width: 400px;
    -webkit-box-shadow: 0px 0px 39px 0px rgba(231, 231, 231, 1);
    -moz-box-shadow: 0px 0px 39px 0px rgba(231, 231, 231, 1);
    box-shadow: 0px 0px 39px 0px rgba(231, 231, 231, 1);
  }
}

.footer {
  margin-top: 100px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hidden {
  display: none;
}

/*Shrinking for mobile*/
@media (max-width: 768px) {
  .claim {
    margin: 10px 0 40px 0;
  }

  .content {
    width: calc(100% - 60px);
    height: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .showcase {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;

    .main-padding {
      padding: 0;
    }

    img {
      width: 100%;
    }

    .ipad {
      width: 120%;
    }
  }

  .img {
    width: 100%;
  }

  .b2b {
    .two-sides {
      flex-direction: column-reverse;
    }
  }

  #call_top {
    display: flex;
    flex-direction: column-reverse;

    .button {
      margin: 20px 0 0 0;
    }
  }

  .inner-header {
    height: 650px;
  }

  .header-content {
    .image {
      display: none;
    }
  }

  .two-sides {
    flex-direction: column;

    .title {
      font-size: 25px;
    }

    .main-padding {
      padding: 0;
    }
  }

  .waves {
    height: 40px;
    min-height: 40px;
  }

  .call-to-action-bottom {

    .input {
      width: 80%;
      margin-bottom: 20px;
    }

    .button {
      width: 100%;
    }
  }

  .for-me {
    .title {
      font-size: 30px;
    }

    .point {
      .info {
        margin-top: 20px;
        text-align: start !important;
      }
    }

    .point::first-child {
      margin-bottom: 40px;
    }

  }

  .gen-quote {
    font-size: 25px;
  }

  .founder-quote {
    .avatar {
      display: none;
    }

    .signature {
      display: flex;
      flex-direction: row !important;
      align-items: center !important;

      .avatar {
        margin-top: 20px;
        display: block !important;

        img {
          margin: 0 10px !important;
        }
      }
    }
  }

  .do-you-know {
    .point {
      margin-bottom: 20px;
    }
  }

  .lets-talk {
    margin-top: 70px;
    .lets-talk-button {
      .title {
        margin: 0 10px;
      }
      .pic {
        width: 10px !important;
      }
      .li {
        width: 30px !important;
      }
    }
  }

  h1 {
    font-size: 24px;
  }
}
