@font-face {
  font-family: "Satoshi";
  src: url("fonts/satoshi/Satoshi-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi";
  src: url("fonts/satoshi/Satoshi-Bold.ttf") format("truetype");
  font-weight: bold;
}
html, body {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Satoshi", sans-serif;
}

a, button {
  cursor: pointer;
}

#intro-section {
  width: 100%;
  height: fit-content;
  background-image: url("../img/blue-background-image.png");
  background-position: center;
  background-size: cover;
}
#intro-section #intro-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#intro-section #intro-container #navigation-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 15px;
}
#intro-section #intro-container #navigation-bar #top-right-homepage-logo {
  width: auto;
  height: 40px;
  margin-left: 40px;
}
#intro-section #intro-container #navigation-bar #links-header {
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
}
#intro-section #intro-container #navigation-bar #links-header a, #intro-section #intro-container #navigation-bar #links-header a:visited {
  color: #178BF6;
  background-color: white;
  text-decoration: none;
  font-weight: bold;
  margin-left: 10px;
  margin-right: 10px;
  border-radius: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
}
#intro-section #intro-container #intro-heading {
  color: white;
  font-size: 39px;
  font-weight: 600;
  margin-bottom: 5px;
}
#intro-section #intro-container #intro-text {
  width: 60%;
  color: white;
  font-size: 18.5px;
  text-align: center;
}
#intro-section #intro-container #homepage-intro-go-button {
  margin-top: 25px;
  margin-bottom: 50px;
  color: #178BF6;
  background-color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  cursor: pointer;
  font-size: 18px;
}

#main-section {
  background: linear-gradient(#fff, #b0d3fd, #fff 100%);
}

#steps-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
#steps-container #partners-container {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
#steps-container #partners-container .partner-logo {
  width: 100px;
  height: auto;
  margin-left: 20px;
  margin-right: 20px;
}
#steps-container .step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  background-color: white;
  margin-top: 15px;
  margin-bottom: 15px;
  border-radius: 6px;
  box-shadow: 0px 0px 50px 5px rgba(0, 0, 0, 0.2);
  padding: 15px 30px;
}
#steps-container .step h3 {
  width: fit-content;
  font-size: 21px;
  margin-bottom: 5px;
}
#steps-container .step p {
  font-size: 16.5px;
  text-align: center;
}
#steps-container .steps-down-arrow {
  height: 30px;
}

#walkthroughs-button, #walkthroughs-button:visited {
  display: block;
  margin: 0 auto;
  width: fit-content;
  background-color: #178BF6;
  color: white;
  text-decoration: none;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 35px;
  padding-right: 35px;
  border-radius: 6px;
}

#price-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
  margin-top: 50px;
}
#price-box h1 {
  margin: 0px;
}
#price-box #currency-span {
  font-size: 20px;
}
#price-box #price-tick-box-container {
  display: flex;
  flex-flow: row wrap;
  width: 60%;
  margin-top: 30px;
}
#price-box #price-tick-box-container .price-tick-box {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  width: 50%;
}
#price-box #price-tick-box-container .price-tick-box img {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}
#price-box #price-tick-box-container .price-tick-box p {
  font-size: 17px;
}
#price-box #price-guarantee-text {
  text-align: center;
  font-size: 17px;
}

#lower-get-started-section {
  clip-path: ellipse(75% 100% at top);
  background-color: #178BF6;
  height: auto;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
#lower-get-started-section h1 {
  color: white;
  margin-bottom: 30px;
  font-size: 35px;
}
#lower-get-started-section #get-started-button, #lower-get-started-section #get-started-button:visited {
  width: fit-content;
  color: #178BF6;
  background-color: white;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 6px;
  text-decoration: none;
}

#social-media {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
#social-media img {
  width: 35px;
  height: 35px;
  margin-left: 20px;
  margin-right: 20px;
}

footer {
  display: flex;
  width: 100vw;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
footer p {
  color: #178BF6;
  margin-left: 25px;
  margin-right: 25px;
}
footer a, footer a:visited {
  color: #178BF6;
  text-decoration: none;
}

#walkthroughs-container {
  display: flex;
  flex-direction: column;
}

.walkthrough-box {
  display: flex;
  flex-direction: row;
}
.walkthrough-box .walkthrough-text-box {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 40px;
  box-sizing: border-box;
  justify-content: center;
}
.walkthrough-box .walkthrough-text-box h3 {
  font-size: 28px;
  margin: 0px;
  margin-bottom: 10px;
}
.walkthrough-box .walkthrough-text-box p {
  margin: 0px;
  font-size: 18px;
}
.walkthrough-box .walkthrough-video-box {
  width: 50%;
  box-sizing: border-box;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.walkthrough-box .walkthrough-video-box video {
  height: 300px;
  width: auto;
  border-radius: 6px;
}

#terms-and-conditions-heading {
  color: white;
  font-size: 39px;
  font-weight: 600;
  margin-bottom: 75px;
}

#terms-and-conditions-inner {
  width: 80%;
  margin: 0 auto;
  margin-top: 75px;
  margin-bottom: 75px;
}
#terms-and-conditions-inner p {
  margin: 0px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 600px) {
  #intro-section #intro-container #navigation-bar {
    flex-direction: column;
  }
  #intro-section #intro-container #navigation-bar #top-right-homepage-logo {
    margin-left: 0px;
    margin-top: 15px;
    height: 50px;
  }
  #intro-section #intro-container #navigation-bar #links-header {
    justify-content: center;
  }
  #intro-section #intro-container #navigation-bar #links-header a {
    font-size: 18px;
  }
  #intro-section #intro-container #intro-heading {
    text-align: center;
    font-size: 35px;
    padding-left: 10px;
    padding-right: 10px;
  }
  #intro-section #intro-container #intro-text {
    width: 80%;
  }
  #steps-container #partners-container .partner-logo {
    margin-bottom: 30px;
  }
  #price-box #price-tick-box-container {
    width: 80%;
  }
  #price-box #price-tick-box-container .price-tick-box {
    width: 100%;
  }
  #price-box #price-guarantee-text {
    padding-left: 20px;
    padding-right: 20px;
  }
  #lower-get-started-section {
    padding-left: 20px;
    padding-right: 20px;
    height: fit-content;
  }
  #lower-get-started-section h1 {
    text-align: center;
  }
  #lower-get-started-section a {
    margin-bottom: 50px;
  }
  footer {
    flex-flow: column;
  }
  footer p {
    margin-top: 0px;
  }
  #walkthroughs-container {
    display: none !important;
  }
  #walkthroughs-container-phone {
    display: flex !important;
    flex-direction: column;
    margin-bottom: 40px;
  }
  #walkthroughs-container-phone .walkthrough-box {
    flex-direction: column;
  }
  #walkthroughs-container-phone .walkthrough-box .walkthrough-text-box, #walkthroughs-container-phone .walkthrough-box .walkthrough-video-box {
    width: 100%;
  }
  #walkthroughs-container-phone .walkthrough-box .walkthrough-text-box {
    align-items: center !important;
  }
  #walkthroughs-container-phone .walkthrough-box .walkthrough-text-box h3, #walkthroughs-container-phone .walkthrough-box .walkthrough-text-box p {
    text-align: center !important;
  }
  #walkthroughs-container-phone .walkthrough-box .walkthrough-video-box {
    padding-top: 0px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  #walkthroughs-container-phone .walkthrough-box .walkthrough-video-box video {
    width: 100%;
    height: auto;
  }
  #terms-and-conditions-heading {
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
  }
}

/*# sourceMappingURL=homepage-style.css.map */
