/* Imports */
/* Paddings & boarders are included in the total height & width */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  font-family: Google Sans, Roboto;
  color: #555555;
}

/*prevent from get involved other elements*/
.row::after {
  content: "";
  clear: both;
  display: table;
}

.fixed {
  position: fixed;
}

.center {
  margin: auto;
}

.left {
  float: left;
}

.right {
  float: right;
}

[class*=classic-] {
  padding: 0px 0px;
}

.text-left-s {
  text-align: left;
}

.text-right-s {
  text-align: right;
}

.lowercase {
  text-transform: lowercase;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.weight-300 {
  font-size: inherit;
  font-weight: 300;
}
.weight-600 {
  font-size: inherit;
  font-weight: 600;
}
.weight-900 {
  font-size: inherit;
  font-weight: 900;
}
.weight-lighter {
  font-size: inherit;
  font-weight: lighter;
}
.weight-bold {
  font-size: inherit;
  font-weight: bold;
}

.padding-killer-top {
  padding-top: 0;
}
.padding-killer-bottom {
  padding-bottom: 0;
}

.hilighted {
  color: #FA7676;
}

.bg-primary {
  background-color: #FA7676 !important;
}

.bg-secondary {
  background-color: #000000 !important;
}

.flip-horizontally {
  transform: scaleX(-1);
}

h1, h2 {
  font-weight: 300;
  max-width: 660px;
  width: fit-content;
  margin: 0;
  padding: 24px 0px;
  text-align: left;
}

h1 {
  font-size: 24px;
  line-height: 30px;
  position: relative;
}

h2 {
  font-size: 32px;
  line-height: 41px;
}

.underlined {
  font-weight: 900;
}
.underlined::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 100%;
  bottom: 20px;
  left: 0px;
  background-color: #FA7676;
}

.remove-pseudo-elements::before, .remove-pseudo-elements::after {
  content: none;
}

p {
  font-size: 14px;
  line-height: 20px;
  padding: 0 0 24px 0;
  margin: inherit;
}

/* For IgnitrendCom */
.button-text {
  color: #FA7676;
  font-size: 14px;
  text-align: left;
  font-weight: 600;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
}

.button-solid {
  color: #FFFFFF;
  background-color: #FA7676;
  border-radius: 4px;
  padding: 14px 16px 16px 16px;
  width: 328px;
  height: 48px;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
}

@media only screen and (min-width: 600px) {
  /* For large-mobiles: */
  h1 {
    font-size: 36px;
    line-height: 46px;
    padding: 40px 0;
  }

  h2 {
    font-size: 48px;
    line-height: 61px;
    padding: 40px 0;
  }

  p {
    font-size: 18px;
    line-height: 24px;
    padding: 0px 0 24px 0;
  }

  .underlined::before {
    bottom: 40px;
  }
}
.container {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding: 0px;
}

.row {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  margin-right: auto;
  margin-left: auto;
}

* {
  box-sizing: border-box;
}

.row::after {
  content: "";
  clear: both;
  display: block;
}

/* For mobile phones: */
/* is the same sa classic-t- */
[class*=classic-] {
  width: 100%;
}

@media only screen and (min-width: 320px) {
  /* For large-mobiles: */
  .row .classic-t-1 {
    width: calc(8.33% - 14.66px);
  }
  .row .classic-t-2 {
    width: calc(16.66% - 13.66px);
  }
  .row .classic-t-3 {
    width: calc(25% - 12px);
  }
  .row .classic-t-4 {
    width: calc(33.33% - 10.66px);
  }
  .row .classic-t-5 {
    width: calc(41.66% - 8px);
  }
  .row .classic-t-6 {
    width: calc(50% - 8px);
  }
  .row .classic-t-7 {
    width: 58.33%;
  }
  .row .classic-t-8 {
    width: 66.66%;
  }
  .row .classic-t-9 {
    width: 75%;
  }
  .row .classic-t-10 {
    width: 83.33%;
  }
  .row .classic-t-11 {
    width: 91.66%;
  }
  .row .classic-t-12 {
    width: 100%;
  }
  .row .classic-t-push-1 {
    position: relative;
    left: 8.33%;
  }
  .row .classic-t-push-2 {
    position: relative;
    left: 16.66%;
  }
  .row .classic-t-push-3 {
    position: relative;
    left: 25%;
  }
  .row .classic-t-push-4 {
    position: relative;
    left: 33.33%;
  }
  .row .classic-t-push-5 {
    position: relative;
    left: 41.66%;
  }
  .row .classic-t-push-6 {
    position: relative;
    left: 50%;
  }
  .row .classic-t-push-7 {
    position: relative;
    left: 58.33%;
  }
  .row .classic-t-push-8 {
    position: relative;
    left: 66.66%;
  }
  .row .classic-t-push-9 {
    position: relative;
    left: 75%;
  }
  .row .classic-t-push-10 {
    position: relative;
    left: 83.33%;
  }
  .row .classic-t-push-11 {
    position: relative;
    left: 91.66%;
  }
  .row .classic-t-push-12 {
    position: relative;
    left: 100%;
  }
  .row .classic-t-pull-1 {
    position: relative;
    right: 8.33%;
  }
  .row .classic-t-pull-2 {
    position: relative;
    right: 16.66%;
  }
  .row .classic-t-pull-3 {
    position: relative;
    right: 25%;
  }
  .row .classic-t-pull-4 {
    position: relative;
    right: 33.33%;
  }
  .row .classic-t-pull-5 {
    position: relative;
    right: 41.66%;
  }
  .row .classic-t-pull-6 {
    position: relative;
    right: 50%;
  }
  .row .classic-t-pull-7 {
    position: relative;
    right: 58.33%;
  }
  .row .classic-t-pull-8 {
    position: relative;
    right: 66.66%;
  }
  .row .classic-t-pull-9 {
    position: relative;
    right: 75%;
  }
  .row .classic-t-pull-10 {
    position: relative;
    right: 83.33%;
  }
  .row .classic-t-pull-11 {
    position: relative;
    right: 91.66%;
  }
  .row .classic-t-pull-12 {
    position: relative;
    right: 100%;
  }
}
@media only screen and (min-width: 600px) {
  /* For large-mobiles: */
  .container {
    padding: 0px 16px;
  }

  .row .classic-s-1 {
    width: calc(8.33% - 14.66px);
  }
  .row .classic-s-2 {
    width: calc(16.66% - 13.66px);
  }
  .row .classic-s-3 {
    width: calc(25% - 12px);
  }
  .row .classic-s-4 {
    width: calc(33.33% - 10.66px);
  }
  .row .classic-s-5 {
    width: calc(41.66% - 8px);
  }
  .row .classic-s-6 {
    width: calc(50% - 8px);
  }
  .row .classic-s-7 {
    width: 58.33%;
  }
  .row .classic-s-8 {
    width: 66.66%;
  }
  .row .classic-s-9 {
    width: 75%;
  }
  .row .classic-s-10 {
    width: 83.33%;
  }
  .row .classic-s-11 {
    width: 91.66%;
  }
  .row .classic-s-12 {
    width: 100%;
  }
  .row .classic-s-push-1 {
    position: relative;
    left: 8.33%;
  }
  .row .classic-s-push-2 {
    position: relative;
    left: 16.66%;
  }
  .row .classic-s-push-3 {
    position: relative;
    left: 25%;
  }
  .row .classic-s-push-4 {
    position: relative;
    left: 33.33%;
  }
  .row .classic-s-push-5 {
    position: relative;
    left: 41.66%;
  }
  .row .classic-s-push-6 {
    position: relative;
    left: 50%;
  }
  .row .classic-s-push-7 {
    position: relative;
    left: 58.33%;
  }
  .row .classic-s-push-8 {
    position: relative;
    left: 66.66%;
  }
  .row .classic-s-push-9 {
    position: relative;
    left: 75%;
  }
  .row .classic-s-push-10 {
    position: relative;
    left: 83.33%;
  }
  .row .classic-s-push-11 {
    position: relative;
    left: 91.66%;
  }
  .row .classic-s-push-12 {
    position: relative;
    left: 100%;
  }
  .row .classic-s-pull-1 {
    position: relative;
    right: 8.33%;
  }
  .row .classic-s-pull-2 {
    position: relative;
    right: 16.66%;
  }
  .row .classic-s-pull-3 {
    position: relative;
    right: 25%;
  }
  .row .classic-s-pull-4 {
    position: relative;
    right: 33.33%;
  }
  .row .classic-s-pull-5 {
    position: relative;
    right: 41.66%;
  }
  .row .classic-s-pull-6 {
    position: relative;
    right: 50%;
  }
  .row .classic-s-pull-7 {
    position: relative;
    right: 58.33%;
  }
  .row .classic-s-pull-8 {
    position: relative;
    right: 66.66%;
  }
  .row .classic-s-pull-9 {
    position: relative;
    right: 75%;
  }
  .row .classic-s-pull-10 {
    position: relative;
    right: 83.33%;
  }
  .row .classic-s-pull-11 {
    position: relative;
    right: 91.66%;
  }
  .row .classic-s-pull-12 {
    position: relative;
    right: 100%;
  }
}
@media only screen and (min-width: 900px) {
  /* For tablets: */
  .row .classic-m-1 {
    width: calc(8.33% - 14.66px);
  }
  .row .classic-m-2 {
    width: calc(16.66% - 13.66px);
  }
  .row .classic-m-3 {
    width: calc(25% - 12px);
  }
  .row .classic-m-4 {
    width: calc(33.33% - 10.66px);
  }
  .row .classic-m-5 {
    width: calc(41.66% - 8px);
  }
  .row .classic-m-6 {
    width: calc(50% - 8px);
  }
  .row .classic-m-7 {
    width: 58.33%;
  }
  .row .classic-m-8 {
    width: 66.66%;
  }
  .row .classic-m-9 {
    width: 75%;
  }
  .row .classic-m-10 {
    width: 83.33%;
  }
  .row .classic-m-11 {
    width: 91.66%;
  }
  .row .classic-m-12 {
    width: 100%;
  }
  .row .classic-m-push-1 {
    position: relative;
    left: 8.33%;
  }
  .row .classic-m-push-2 {
    position: relative;
    left: 16.66%;
  }
  .row .classic-m-push-3 {
    position: relative;
    left: 25%;
  }
  .row .classic-m-push-4 {
    position: relative;
    left: 33.33%;
  }
  .row .classic-m-push-5 {
    position: relative;
    left: 41.66%;
  }
  .row .classic-m-push-6 {
    position: relative;
    left: 50%;
  }
  .row .classic-m-push-7 {
    position: relative;
    left: 58.33%;
  }
  .row .classic-m-push-8 {
    position: relative;
    left: 66.66%;
  }
  .row .classic-m-push-9 {
    position: relative;
    left: 75%;
  }
  .row .classic-m-push-10 {
    position: relative;
    left: 83.33%;
  }
  .row .classic-m-push-11 {
    position: relative;
    left: 91.66%;
  }
  .row .classic-m-push-12 {
    position: relative;
    left: 100%;
  }
  .row .classic-m-pull-1 {
    position: relative;
    right: 8.33%;
  }
  .row .classic-m-pull-2 {
    position: relative;
    right: 16.66%;
  }
  .row .classic-m-pull-3 {
    position: relative;
    right: 25%;
  }
  .row .classic-m-pull-4 {
    position: relative;
    right: 33.33%;
  }
  .row .classic-m-pull-5 {
    position: relative;
    right: 41.66%;
  }
  .row .classic-m-pull-6 {
    position: relative;
    right: 50%;
  }
  .row .classic-m-pull-7 {
    position: relative;
    right: 58.33%;
  }
  .row .classic-m-pull-8 {
    position: relative;
    right: 66.66%;
  }
  .row .classic-m-pull-9 {
    position: relative;
    right: 75%;
  }
  .row .classic-m-pull-10 {
    position: relative;
    right: 83.33%;
  }
  .row .classic-m-pull-11 {
    position: relative;
    right: 91.66%;
  }
  .row .classic-m-pull-12 {
    position: relative;
    right: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  /* For normal-desktop: */
  .row .classic-l-1 {
    width: calc(8.33% - 14.66px);
  }
  .row .classic-l-2 {
    width: calc(16.66% - 13.66px);
  }
  .row .classic-l-3 {
    width: calc(25% - 12px);
  }
  .row .classic-l-4 {
    width: calc(33.33% - 10.66px);
  }
  .row .classic-l-5 {
    width: calc(41.66% - 8px);
  }
  .row .classic-l-6 {
    width: calc(50% - 8px);
  }
  .row .classic-l-7 {
    width: 58.33%;
  }
  .row .classic-l-8 {
    width: 66.66%;
  }
  .row .classic-l-9 {
    width: 75%;
  }
  .row .classic-l-10 {
    width: 83.33%;
  }
  .row .classic-l-11 {
    width: 91.66%;
  }
  .row .classic-l-12 {
    width: 100%;
  }
  .row .classic-l-push-1 {
    position: relative;
    left: 8.33%;
  }
  .row .classic-l-push-2 {
    position: relative;
    left: 16.66%;
  }
  .row .classic-l-push-3 {
    position: relative;
    left: 25%;
  }
  .row .classic-l-push-4 {
    position: relative;
    left: 33.33%;
  }
  .row .classic-l-push-5 {
    position: relative;
    left: 41.66%;
  }
  .row .classic-l-push-6 {
    position: relative;
    left: 50%;
  }
  .row .classic-l-push-7 {
    position: relative;
    left: 58.33%;
  }
  .row .classic-l-push-8 {
    position: relative;
    left: 66.66%;
  }
  .row .classic-l-push-9 {
    position: relative;
    left: 75%;
  }
  .row .classic-l-push-10 {
    position: relative;
    left: 83.33%;
  }
  .row .classic-l-push-11 {
    position: relative;
    left: 91.66%;
  }
  .row .classic-l-push-12 {
    position: relative;
    left: 100%;
  }
  .row .classic-l-pull-1 {
    position: relative;
    right: 8.33%;
  }
  .row .classic-l-pull-2 {
    position: relative;
    right: 16.66%;
  }
  .row .classic-l-pull-3 {
    position: relative;
    right: 25%;
  }
  .row .classic-l-pull-4 {
    position: relative;
    right: 33.33%;
  }
  .row .classic-l-pull-5 {
    position: relative;
    right: 41.66%;
  }
  .row .classic-l-pull-6 {
    position: relative;
    right: 50%;
  }
  .row .classic-l-pull-7 {
    position: relative;
    right: 58.33%;
  }
  .row .classic-l-pull-8 {
    position: relative;
    right: 66.66%;
  }
  .row .classic-l-pull-9 {
    position: relative;
    right: 75%;
  }
  .row .classic-l-pull-10 {
    position: relative;
    right: 83.33%;
  }
  .row .classic-l-pull-11 {
    position: relative;
    right: 91.66%;
  }
  .row .classic-l-pull-12 {
    position: relative;
    right: 100%;
  }
}
body,
html {
  height: 100%;
  margin: 0;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #000000;
  z-index: 2;
}
header .navbar {
  width: auto;
  height: 56px;
  justify-content: space-between;
}
header .navbar-brand {
  margin-left: 16px;
}
header .navbar-brand img {
  width: auto;
  height: 40px;
}
header .navbar-google-play-icon {
  margin-right: 8px;
}
header .navbar-google-play-icon img {
  width: auto;
  height: 56px;
}
header .navbar.row::after {
  display: none;
}

#section-a {
  background-color: #F1F1F1;
  overflow-y: scroll;
  padding: 24px 16px 32px 16px;
  margin-top: 56px;
}
#section-a .row {
  flex-wrap: wrap;
}
#section-a .hero-img img {
  max-width: 100%;
}

#section-b {
  overflow-y: scroll;
  padding: 32px 16px 0px 16px;
}
#section-b .row {
  flex-wrap: wrap;
}
#section-b .step {
  padding: 24px 0 40px 0;
}
#section-b .step-number img {
  max-width: 100%;
}
#section-b .step-description {
  padding-top: 24px;
}
#section-b .step-img img {
  max-width: 100%;
}

#section-c {
  padding: 0px 16px 0px 16px;
  margin: 60px 0 40px 0;
  background-color: #FA7676;
}
#section-c .row {
  flex-wrap: wrap;
}
#section-c .row img {
  width: 100%;
}
#section-c .row .img-a {
  margin-top: -40px;
}
#section-c .row .img-b {
  margin-bottom: -40px;
}
#section-c .row .content {
  padding: 0 0 24px 0;
}
#section-c .row .content h2 {
  color: #000;
}
#section-c .row .content p {
  color: #FFFFFF;
  text-align: center;
}

#section-d {
  padding: 32px 16px 44px 16px;
}
#section-d .full-width {
  max-width: 100%;
}
#section-d .survey-cta {
  padding: 16px 0 0 0;
  justify-content: flex-end;
  flex-direction: column;
}
#section-d .survey-cta .cta-primary span,
#section-d .survey-cta .cta-secondary span {
  float: right;
}
#section-d .survey-cta .cta-secondary {
  padding: 16px 0;
}
#section-d .survey-cta .cta-secondary span {
  width: 328px;
  text-align: center;
}

#footer {
  padding: 24px 16px;
  border-top: 1px solid #555;
}

#modal,
.modal {
  display: none;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}
#modal-content,
.modal-content {
  background-color: #fff;
  width: 320px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -140px;
  margin-left: -160px;
  animation-name: modalopen;
  animation-duration: 0.75s;
}
#modal-content-container,
.modal-content-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 16px 24px 16px;
}
#modal-content-header .closeBtn,
#modal-content-header .closeBtn2,
.modal-content-header .closeBtn,
.modal-content-header .closeBtn2 {
  font-size: 24px;
  float: right;
  color: #777;
  padding: 8px;
}
#modal-content-header .closeBtn:focus, #modal-content-header .closeBtn:hover,
#modal-content-header .closeBtn2:focus,
#modal-content-header .closeBtn2:hover,
.modal-content-header .closeBtn:focus,
.modal-content-header .closeBtn:hover,
.modal-content-header .closeBtn2:focus,
.modal-content-header .closeBtn2:hover {
  color: #FA7676;
  text-decoration: none;
  cursor: pointer;
}
#modal-content-header h4,
.modal-content-header h4 {
  color: #modal-content-header h4, .modal-content-header h4 #555555;
}
#modal-content-body input,
.modal-content-body input {
  width: 168px;
  height: 48px;
  border-radius: 4px;
  border: 1px solid #555555;
  margin-right: 16px;
  padding-left: 8px;
  color: #555555;
  font-size: 14px;
}
#modal-content-body button,
.modal-content-body button {
  border: none;
  max-width: 96px;
}

@media only screen and (min-width: 600px) {
  /* For large-mobiles: */
  header .navbar {
    height: 96px;
  }
  header .navbar-brand img {
    height: 56px;
  }
  header .navbar-google-play-icon {
    margin-right: 16px;
  }
  header .navbar-google-play-icon img {
    height: 76px;
  }

  #section-a {
    padding: 120px 0px 80px 0px;
    margin-top: 96px;
  }

  #section-b {
    padding: 80px 0px 60px 0px;
  }
  #section-b .step {
    padding: 40px 0 60px 0;
  }
  #section-b .step-title h2 {
    color: #FA7676;
  }
  #section-b .step-description {
    padding-top: 54px;
  }

  #section-c .row .img-a {
    margin-top: -240px;
  }
  #section-c .row .img-b {
    margin-bottom: -240px;
  }
  #section-c .row .content {
    padding: 40px 0 80px 0;
  }

  #section-d .survey-cta {
    padding: 40px 0 56px 0;
  }

  #footer {
    padding: 24px 0 32px 0;
  }
}
@media only screen and (min-width: 900px) {
  /* For normal-desktop: */
}
@media only screen and (min-width: 1200px) {
  /* For large-desktop: */
}
@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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