.navbar {
  position: relative;
  font-size: 13px;
  float: right;
  top: 2px;
}
.navbar .navbar-nav {
  font-weight: 300;
  min-height: 54px;
  width: auto;
  font-size: 1rem;
  line-height: 1.286rem;
  list-style: none;
  text-align: left;
}
.navbar .navbar-nav li {
  position: relative;
  display: inline-block;
}
.navbar .navbar-nav li a {
  display: block;
  color: #000;
  text-align: left;
  padding: 0 14px;
  text-decoration: none;
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.navbar .navbar-nav li a:hover {
  color: #2344ff;
  cursor: pointer;
}

@media only screen and (max-width: 975px) {
  .navbar {
    top: 7px;
  }
}
@media only screen and (max-width: 900px) {
  .navbar {
    top: 15px;
  }
}
@media only screen and (max-width: 800px) {
  .navbar {
    display: none;
    height: 100vh;
    width: 90%;
    max-width: 100%;
    right: auto;
    float: left;
    top: 0;
    left: 0;
    padding: 20px 5% 21px;
    background-color: #000;
    overflow-y: scroll;
  }
}
.navbar .open-menu, .navbar .close-menu {
  display: none;
}

@media only screen and (max-width: 800px) {
  .navbar .navbar-nav {
    display: block;
    height: auto;
    margin: 0 0 4.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
}
.navbar .navbar-nav li.active a {
  color: #0661f1;
}

.navbar .navbar-nav li.logo {
  display: none;
}

@media only screen and (max-width: 800px) {
  .navbar .navbar-nav li {
    display: block;
    margin: 0;
    padding: 1.25rem 0;
    color: #0661f1;
    font-size: 1.25rem;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.55);
  }
  .navbar .navbar-nav li:last-child, .navbar .navbar-nav li:first-child {
    border: none;
  }
  .navbar .navbar-nav li.logo {
    font-size: 2.25rem;
    display: block;
  }
}
.navbar .navbar-nav li a:hover {
  color: #0661f1;
}

@media only screen and (max-width: 800px) {
  .navbar .navbar-nav li a {
    padding: 18px 0;
    line-height: 18px;
    color: #fff;
    text-align: center;
  }
}
.navbar .navbar-nav li .btn {
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.75rem 2.25rem;
  margin: 0;
}

.navbar .navbar-nav li .btn:hover {
  color: #fff;
}

@media only screen and (max-width: 975px) {
  .navbar .navbar-nav li .btn .hidden {
    display: none;
  }
}
@media only screen and (max-width: 975px) {
  .navbar .navbar-nav li .btn {
    padding: 0.5rem 1.5rem;
    background-color: #fff;
  }
}
@media only screen and (max-width: 900px) {
  .navbar .navbar-nav li .btn {
    display: none;
  }
}
@media only screen and (max-width: 800px) {
  .navbar .navbar-nav li .btn {
    padding: 18px 0;
    line-height: 18px;
    color: #fff;
    max-width: 150px;
    text-align: center;
    display: block;
    margin: 1rem auto;
  }
}
.btn {
  display: inline-block;
  border-radius: 100px;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
  padding: 1rem 3rem;
  letter-spacing: 0.15rem;
  margin-right: 0.15rem;
  font-size: 0.8rem;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  cursor: pointer;
}
.btn.primary {
  color: #fff;
  background-color: #3b00d0;
  border: 1px solid #3b00d0;
}
.btn.primary:hover {
  background-color: #571aea;
}
.btn.secondary {
  border-color: #3b00d0;
  color: #3b00d0;
  background-color: transparent;
}
.btn.secondary:hover {
  border-color: #571aea;
  color: #571aea;
}

@media only screen and (max-width: 800px) {
  .btn {
    width: 100%;
    margin: 1rem auto;
  }
}
.header {
  width: 100%;
  max-width: 100%;
  min-height: 80px;
  top: 0;
  z-index: 999;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}
.header .header-logo {
  position: relative;
  float: left;
  font-size: 1.2rem;
  vertical-align: middle;
}
.header .header-logo a {
  display: block;
  padding: 1rem 0;
  margin: 0;
  outline: 0;
  text-decoration: none;
  font-weight: 700;
  height: 18px;
  width: 150px;
  border: none;
  position: absolute;
  left: 12px;
  top: 15px;
  line-height: 1.286rem;
  color: #2344ff;
  background-image: linear-gradient(45deg, #3b00d0, #2647ff 50%, #3b00d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  font-size: 1.75rem;
  font-family: "Paytone One", sans-serif;
}

@media only screen and (max-width: 800px) {
  .header {
    height: 90px;
    min-height: 0;
    top: 0;
    background-color: #000;
    position: fixed;
  }
}
.panel {
  border: 1px solid #ccc;
  border-radius: 1rem;
  background-color: transparent;
  margin: 1rem 0;
}
.panel .inner-panel {
  display: flex;
}
.panel .inner-panel .panel-left {
  padding: 1rem;
  width: 25%;
  border-right: 1px solid #ccc;
  background-color: #fff;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
.panel .inner-panel .panel-left .panel-left-header {
  color: #571aea;
}
.panel .inner-panel .panel-left p {
  color: #3b3a3a;
  font-weight: 300;
  line-height: 1.5rem;
}
.panel .inner-panel .panel-center {
  width: 70%;
}
.panel .inner-panel .panel-center .image-container {
  width: 90%;
  margin: 0 auto;
  padding: 1rem 0;
}
.panel .inner-panel .panel-center .image-container img {
  width: 70%;
  box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.09);
  -webkit-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.09);
}

.home-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 500px;
  width: 100%;
  padding: 0;
  margin-top: 4rem;
  position: relative;
  margin-bottom: 6rem;
  text-align: center;
}
.home-banner .home-banner-content {
  position: relative;
  z-index: 4;
  vertical-align: middle;
  color: #000;
  width: 70%;
  margin: 0 auto;
}
.home-banner .home-banner-content h1 {
  font-size: 4rem;
  margin-bottom: 0;
}
.home-banner .home-banner-content h1 .logo-text {
  background-image: linear-gradient(45deg, #3b00d0, #2647ff 50%, #3b00d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
.home-banner .home-banner-content p {
  font-weight: 300;
  margin: 0.5rem 0;
  font-size: 1.2rem;
}
.home-banner .image-container {
  display: block;
  width: 100%;
  margin-top: 2rem;
}
.home-banner .image-container img {
  max-width: 70%;
  box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.19);
  -webkit-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.19);
  -moz-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.19);
}

@media only screen and (max-width: 800px) {
  .home-banner {
    height: 80vh;
  }
}
@media only screen and (max-width: 800px) {
  .home-banner .home-banner-content {
    padding: 11rem 0 0 0;
    margin: 0 auto;
    display: block;
    text-align: center;
    width: 80%;
  }
}
* {
  font-family: "Lato", sans-serif;
}

html {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  background-color: #fbfcfd;
  width: 100%;
  max-width: 100%;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

#segment-section,
#campaign-section,
#analyze-section,
#email-marketing-section,
#contact-section {
  margin: 2rem 0 4rem;
}
#segment-section .wrapper h2, #segment-section .wrapper p,
#campaign-section .wrapper h2,
#campaign-section .wrapper p,
#analyze-section .wrapper h2,
#analyze-section .wrapper p,
#email-marketing-section .wrapper h2,
#email-marketing-section .wrapper p,
#contact-section .wrapper h2,
#contact-section .wrapper p {
  text-align: center;
}
#segment-section .wrapper p,
#campaign-section .wrapper p,
#analyze-section .wrapper p,
#email-marketing-section .wrapper p,
#contact-section .wrapper p {
  font-weight: 300;
  font-size: 1.2rem;
}

#segment-section {
  position: relative;
  display: block;
  min-height: 560px;
}
#segment-section .wrapper .section-header {
  margin: 1rem 0;
  position: relative;
}
#segment-section .wrapper .image-container {
  display: block;
  width: 90%;
  margin-top: 2rem;
  height: 100%;
  margin-left: 5%;
}
#segment-section .wrapper .image-container.segment-image-container {
  position: relative;
}
#segment-section .wrapper .image-container.segment-image-container #contact-list-one,
#segment-section .wrapper .image-container.segment-image-container #contact-list-two,
#segment-section .wrapper .image-container.segment-image-container #contact-list-three {
  position: absolute;
}
#segment-section .wrapper .image-container.segment-image-container #contact-list-one {
  top: 0;
  left: 0;
  z-index: 3;
}
#segment-section .wrapper .image-container.segment-image-container #contact-list-two {
  right: 0;
  top: 100px;
  z-index: 4;
}
#segment-section .wrapper .image-container.segment-image-container #contact-list-three {
  left: 55px;
  top: 250px;
  z-index: 3;
}
#segment-section .wrapper .image-container img {
  max-width: 50%;
  box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.19);
  -webkit-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.19);
  -moz-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.19);
}

#campaign-section {
  position: relative;
  margin-bottom: 6rem;
}
#campaign-section .wrapper .image-container {
  display: block;
  width: 60%;
  margin: 2rem auto;
}
#campaign-section .wrapper .image-container img {
  max-width: 100%;
  box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.19);
  -webkit-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.19);
  -moz-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.19);
}

#analyze-section {
  height: 640px;
}
#analyze-section .wrapper .image-container {
  position: relative;
}
#analyze-section .wrapper .image-container img {
  max-width: 50%;
  position: absolute;
  box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.19);
  -webkit-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.19);
  -moz-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.19);
}
#analyze-section .wrapper .image-container img#analyze-image-one {
  right: 0;
  top: 0;
  z-index: 5;
}
#analyze-section .wrapper .image-container img#analyze-image-two {
  top: 100px;
  left: 0;
  z-index: 3;
}
#analyze-section .wrapper .image-container img#analyze-image-three {
  top: 200px;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
}

#contact-section .wrapper .contact-form {
  padding: 1rem 0;
  width: 80%;
  border: 1px solid #888;
  margin: 1rem auto;
  background-color: #fff;
  text-align: center;
}
#contact-section .wrapper .contact-form .btn {
  margin: 1rem auto;
  display: inline-block;
}

@media only screen and (max-width: 800px) {
  .wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}
@media only screen and (max-width: 800px) {
  .header .header-logo {
    left: 40px;
    top: 10px;
  }
}
@media only screen and (max-width: 600px) {
  .header .header-logo {
    height: 90px;
    top: 12px;
  }
}
@media only screen and (max-width: 600px) {
  .header .header-logo {
    left: 30px;
  }
}
@media only screen and (max-width: 800px) {
  .header .header-logo a {
    color: #fff;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .header .header-logo a {
    top: 22px;
  }
}
.header .header-logo a img {
  max-width: 100%;
}

.logo {
  font-family: "Paytone One", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 2rem;
  padding-left: 16px;
  color: #2344ff;
  background-image: linear-gradient(45deg, #3b00d0, #2647ff 50%, #3b00d0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 1rem 0 0 0;
}

@media only screen and (max-width: 450px) {
  .home-banner .home-banner-content h1 {
    font-size: 3rem;
  }
}
.home-banner .home-banner-content .btn-row {
  margin-top: 2rem;
}

@media only screen and (max-width: 800px) {
  .home-banner .home-banner-content .btn-row {
    margin: 2rem auto;
    width: 50%;
  }
}
@media only screen and (max-width: 550px) {
  .home-banner .home-banner-content .btn-row {
    width: 60%;
  }
}
@media only screen and (max-width: 550px) {
  .home-banner .home-banner-content .btn-row {
    width: 75%;
  }
}
@media only screen and (max-width: 550px) {
  .home-banner .home-banner-content .btn-row {
    width: 85%;
  }
}
.home-banner .search-card {
  position: absolute;
  z-index: 4;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  -webkit-box-shadow: 6px 14px 100px -29px rgba(0, 0, 0, 0.55);
  -moz-box-shadow: 6px 14px 100px -29px rgba(0, 0, 0, 0.55);
  box-shadow: 6px 14px 100px -29px rgba(0, 0, 0, 0.55);
  padding: 1rem;
  width: 90%;
}

@media only screen and (max-width: 450px) {
  .home-banner, .search-card {
    width: 85%;
  }
}
.home-banner .search-card .search-card-container {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex: 1;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.home-banner .search-card .search-card-container .input-field {
  -ms-flex-preferred-size: 24%;
  flex-basis: 24%;
}

.home-banner .search-card .search-card-container .input-field input, .home-banner .search-card .search-card-container .input-field select {
  outline: 0;
  padding: 0 2.5%;
  height: 40px;
  width: 95%;
  background-color: #f2f2f2;
  border: none;
}

@media only screen and (max-width: 800px) {
  .home-banner .search-card .search-card-container .input-field {
    -ms-flex-preferred-size: 95%;
    flex-basis: 95%;
  }
}
.home-banner .search-card .btn {
  margin: 2.25rem auto 1rem;
  display: block;
  width: 30%;
}

@media only screen and (max-width: 800px) {
  .home-banner .search-card .btn {
    width: 50%;
  }
}
@media only screen and (max-width: 450px) {
  .home-banner .search-card .btn {
    width: 65%;
  }
}
@media only screen and (max-width: 800px) {
  .home-banner .search-card {
    position: relative;
    transform: translate(0%, 15%);
    left: 0;
    margin: auto;
  }
}

/*# sourceMappingURL=index.css.map */
