/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
html,
body {
  font-family: 'Roboto', sans-serif;
}
h1 {
  font-size: 4rem;
}
h2 {
  font-size: 3.2rem;
  padding-bottom: 10px;
}
h4 {
  font-size: 2.5rem;
  padding-bottom: 10px;
}
p {
  line-height: 1.5;
  font-size: 1.6rem;
  padding-bottom: 10px;
}
img {
  max-width: 100%;
  height: auto;
}
header {
  border-bottom: 4px solid #000;
  margin: 0;
  padding: 20px 0;
  display: flex;
  justify-content: space-evenly;
  position: sticky;
  background-color: azure;
}
header nav {
  margin-left: 60px;
  margin-top: 0;
}
header a {
  margin-left: 90px;
  text-decoration: none;
  color: black;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: bold;
}
header a:hover {
  color: #89c9e4;
  transition: background-color 0.9s;
}
.footer {
  background-color: #333;
  color: #fff;
  height: 300px;
  position: relative;
}
@media (max-width: 1024px) {
  .footer {
    height: auto;
  }
}
.footer .footer-content {
  height: 350px;
  display: flex;
}
@media (max-width: 1024px) {
  .footer .footer-content {
    flex-wrap: wrap;
    height: 800px;
  }
}
.footer .footer-content .footer-section {
  flex: 1;
  padding: 30px;
}
.footer .footer-content .footer-section h2 {
  color: #89c9e4;
  font-size: 30px;
  text-align: center;
  font-weight: bold;
}
.footer .footer-content .footer-section p {
  font-size: 20px;
  text-align: center;
}
.footer .footer-content .footer-section span {
  font-size: 20px;
  line-height: 1.5;
  padding: 50px;
}
.footer .footer-content .footer-section .socials {
  font-size: 35px;
  text-align: center;
  padding-top: 20px;
}
.footer .footer-content .footer-section .socials a {
  color: #89c9e4;
}
.footer .footer-content .footer-section ul {
  text-align: center;
}
.footer .footer-content .footer-section ul a {
  font-size: 20px;
  color: white;
  text-decoration: none;
  line-height: 1.5;
}
.footer .footer-content .footer-section ul a:hover {
  color: #89c9e4;
}
.footer .footer-bottom {
  background-color: 0;
  color: #fff;
  width: 100%;
  height: 50px;
  text-align: center;
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding-top: 20px;
}
@media (max-width: 1024px) {
  .footer .footer-bottom {
    width: 90%;
    height: 100px;
    text-align: center;
  }
}
.footer .footer-bottom p {
  font-size: 15px;
}
.footer .footer-bottom p a {
  color: #89c9e4;
  text-decoration: none;
}
#top-section {
  background: linear-gradient(90deg, rgba(2, 0, 36, 0.7) 0%, rgba(18, 3, 5, 0.5) 72%, rgba(85, 65, 65, 0.8) 98%), url('../images/cover-pic.jpg');
  width: 100%;
  height: 800px;
  margin-top: 0;
  background-size: cover;
}
#top-section .top-container {
  padding: 100px;
  padding-left: 500px;
  height: 100px;
  width: 100%;
  box-sizing: border-box;
}
#top-section p {
  color: #89c9e4;
  font-size: 30px;
  font-weight: bold;
}
#top-section h1 {
  color: white;
  font-size: 60px;
  font-weight: bold;
}
.btn {
  display: block;
  background-color: white;
  width: 200px;
  height: 45px;
  font-size: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid black;
  margin: 10px 100px;
}
.btn a {
  text-decoration: none;
  color: black;
  font-size: 2rem;
}
.btn a:hover {
  color: #89c9e4;
}
#feature-section {
  width: 100%;
  height: auto;
}
#feature-section h2 {
  font-size: 100px;
  font-weight: bold;
  margin: 20px;
  padding: 30px;
  border-bottom: 3px solid black;
  padding-left: 25px;
}
#feature-section .feature-container {
  display: flex;
  justify-content: space-evenly;
}
#feature-section .featurettes {
  margin: 50px;
  background-color: #89c9e4;
  width: 100%;
  height: auto;
  box-shadow: 0 10px 6px -6px black;
  text-align: center;
  border-radius: 10px;
}
#feature-section p {
  font-size: 25px;
  padding: 20px;
}
#step-section {
  background: linear-gradient(90deg, rgba(2, 0, 36, 0.7) 0%, rgba(18, 3, 5, 0.5) 72%, rgba(85, 65, 65, 0.8) 98%), url('../images/parallax-pic.jpg');
  width: 100%;
  height: 600px;
  margin-top: 0;
  background-size: cover;
  padding-top: 10%;
}
#step-section .step-container {
  display: flex;
  justify-content: space-evenly;
}
#step-section .steps {
  margin: 50px;
  background-color: #89c9e4;
  width: 100%;
  height: auto;
  box-shadow: 0 10px 6px -6px black;
  text-align: center;
  border-radius: 10px;
}
#step-section h2 {
  font-size: 60px;
  font-weight: bold;
  margin: 10;
  padding: 40px;
  color: white;
}
#step-section h4 {
  font-size: 50px;
  font-weight: bold;
}
#step-section p {
  font-size: 25px;
}
#testimonial-section {
  width: 100%;
  height: 800px;
}
#testimonial-section h2 {
  font-size: 100px;
  font-weight: bold;
  margin: 20px;
  padding: 30px;
  border-bottom: 3px solid black;
  padding-left: 350px;
}
#testimonial-section .testimonial-container {
  display: flex;
  justify-content: space-evenly;
}
#testimonial-section .testimonial-container .testimonies {
  position: relative;
  width: 350px;
  margin: 50px;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 2px 10px 6px -1px #89c9e4;
}
#testimonial-section .testimonial-container p {
  font-size: 17px;
}
#testimonial-section .testimonial-container img {
  width: 150px;
  height: 150px;
  margin: 20px;
  border-radius: 50%;
  border-radius: 2px 20px;
}
#get-started-section {
  background: url('../images/ev-zQtmZjMdejU-unsplash.jpg');
  width: 100%;
  height: 700px;
  border: solid #89c9e4;
}
#get-started-section img {
  border-radius: 10px 30px;
}
#get-started-section h2 {
  font-size: 100px;
  font-weight: bold;
  margin: 20px;
  padding: 30px;
  border-bottom: 3px solid black;
}
#get-started-section .get-started-container {
  display: flex;
  justify-content: space-evenly;
  margin: 40px;
}
#get-started-section .start {
  margin: 50px;
  width: 500px;
  height: auto;
  text-align: center;
}
#get-started-section .start p {
  font-size: 25px;
  padding: 20px;
}
#get-started-section .start button {
  display: block;
  background-color: white;
  width: 200px;
  height: 45px;
  font-size: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid black;
  margin-left: 28%;
}
#get-started-section .start button a {
  text-decoration: none;
  color: black;
  font-size: 2rem;
}
#get-started-section .start button a:hover {
  color: #89c9e4;
}
@media (max-width: 1024px) {
  header {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 1024px) {
  header h1 {
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  header a {
    padding-right: 25px;
  }
}
@media (max-width: 1024px) {
  #top-section {
    height: auto;
  }
}
@media (max-width: 1024px) {
  #top-section .top-container {
    text-align: center;
    padding: 40px 30px;
    height: 400px;
  }
}
@media (max-width: 1024px) {
  #top-section p {
    font-size: 30px;
  }
}
@media (max-width: 1024px) {
  #top-section h1 {
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  #top-section button {
    margin-left: 25%;
    margin-top: 10%;
  }
}
#feature-section {
  width: 100%;
  height: 700px;
}
@media (max-width: 1024px) {
  #feature-section {
    height: auto;
  }
}
#feature-section h2 {
  font-size: 100px;
  font-weight: bold;
  margin: 20px;
  padding: 30px;
  border-bottom: 3px solid black;
  padding-left: 425px;
}
@media (max-width: 1024px) {
  #feature-section h2 {
    font-size: 50px;
    padding-left: 100px;
  }
}
#feature-section .feature-container {
  display: flex;
  justify-content: space-evenly;
}
@media (max-width: 1024px) {
  #feature-section .feature-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 1024px) {
  #feature-section p {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  #step-section {
    height: auto;
  }
}
@media (max-width: 1024px) {
  #step-section .step-container {
    text-align: center;
  }
}
@media (max-width: 1024px) {
  #step-section .steps {
    padding: 20px;
    height: auto;
  }
}
@media (max-width: 1024px) {
  #step-section h2 {
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  #step-section h4 {
    font-size: 25px;
  }
}
#step-section p {
  font-size: 25px;
}
@media (max-width: 1024px) {
  #step-section p {
    font-size: 18px;
  }
}
#testimonial-section {
  width: 100%;
  height: 800px;
}
@media (max-width: 1024px) {
  #testimonial-section {
    height: auto;
  }
}
#testimonial-section h2 {
  font-size: 100px;
  font-weight: bold;
  margin: 20px;
  padding: 30px;
  border-bottom: 3px solid black;
  padding-left: 350px;
}
@media (max-width: 1024px) {
  #testimonial-section h2 {
    font-size: 50px;
    padding-left: 40px;
  }
}
#testimonial-section .testimonial-container {
  display: flex;
  justify-content: space-evenly;
}
@media (max-width: 1024px) {
  #testimonial-section .testimonial-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 1024px) {
  #get-started-section {
    height: auto;
  }
}
#get-started-section h2 {
  font-size: 100px;
  font-weight: bold;
  margin: 20px;
  padding: 30px;
  border-bottom: 3px solid black;
}
@media (max-width: 1024px) {
  #get-started-section h2 {
    font-size: 30px;
  }
}
@media (max-width: 1024px) {
  #get-started-section .get-started-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 1024px) {
  #get-started-section .start button {
    margin-left: 20%;
  }
}
@media (max-width: 1024px) {
  #feature-section {
    height: auto;
  }
}
@media (max-width: 1024px) {
  #feature-section h2 {
    font-size: 50px;
    padding-left: 100px;
  }
}
@media (max-width: 1024px) {
  #feature-section .feature-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 1024px) {
  #feature-section p {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  #step-section {
    height: auto;
  }
}
@media (max-width: 1024px) {
  #step-section .step-container {
    text-align: center;
  }
}
@media (max-width: 1024px) {
  #step-section .steps {
    padding: 20px;
    height: auto;
  }
}
@media (max-width: 1024px) {
  #step-section h2 {
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  #step-section h4 {
    font-size: 25px;
  }
}
@media (max-width: 1024px) {
  #step-section p {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  #testimonial-section {
    height: auto;
  }
}
@media (max-width: 1024px) {
  #testimonial-section h2 {
    font-size: 50px;
    padding-left: 40px;
  }
}
@media (max-width: 1024px) {
  #testimonial-section .testimonial-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 1024px) {
  #get-started-section {
    height: auto;
  }
}
@media (max-width: 1024px) {
  #get-started-section h2 {
    font-size: 30px;
  }
}
@media (max-width: 1024px) {
  #get-started-section .get-started-container {
    flex-wrap: wrap;
  }
}
#get-started-section .start p {
  font-size: 25px;
  padding: 20px;
}
@media (max-width: 1024px) {
  #get-started-section .start button {
    margin-left: 20%;
  }
}
.a-top-container {
  background: linear-gradient(90deg, rgba(2, 0, 36, 0.7) 0%, rgba(18, 3, 5, 0.5) 72%, rgba(85, 65, 65, 0.8) 98%), url('../images/parallax-pic.jpg'), no-repeat, center;
  width: 100%;
  height: 700px;
  margin-top: 0;
  background-size: cover;
  background-attachment: fixed;
  padding: 100px;
  padding-left: 15%;
  text-align: center;
}
@media (max-width: 1024px) {
  .a-top-container {
    width: 100%;
    height: auto;
    padding: 20px 40px;
  }
}
.a-top-container p {
  color: white;
  font-size: 30px;
  font-weight: bold;
  margin-top: 25px;
}
@media (max-width: 1024px) {
  .a-top-container p {
    font-size: 20px;
  }
}
.a-top-container h1 {
  color: white;
  font-size: 7rem;
  font-weight: bold;
  border: 5px solid #89c9e4;
  border-radius: 40px;
  padding: 10px 60px;
  width: 50%;
  margin-left: 200px;
}
@media (max-width: 1024px) {
  .a-top-container h1 {
    font-size: 2.5rem;
    margin: 0 50px;
    padding: 20px;
    width: 70%;
  }
}
.a-btn {
  display: block;
  background-color: white;
  width: 200px;
  height: 45px;
  font-size: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 6px -6px black;
  margin: 10px 400px;
}
@media (max-width: 1024px) {
  .a-btn {
    margin-left: 25%;
    margin-top: 10%;
  }
}
.a-btn a {
  text-decoration: none;
  color: black;
  font-size: 2rem;
}
.a-btn a:hover {
  color: #89c9e4;
}
.about-container {
  margin: 0, auto;
  color: #fff;
}
.teams {
  color: 0;
  font-size: 100px;
  font-weight: bold;
  margin: 20px;
  padding: 30px;
  border-bottom: 3px solid black;
}
#team-section {
  width: 100%;
  height: auto;
}
#team-section h2 {
  font-size: 100px;
  font-weight: bold;
  margin: 20px;
  padding: 30px;
  border-bottom: 3px solid black;
  padding-left: 350px;
}
@media (max-width: 1024px) {
  #team-section h2 {
    font-size: 50px;
    padding-left: 20px;
  }
}
#team-section .team-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
#team-section .team-container .team-members {
  position: relative;
  width: 350px;
  margin: 50px;
  background: #89c9e4;
  padding: 20px;
  border-radius: 10px 30px;
  text-align: center;
  box-shadow: 0 10px 6px -6px black;
}
#team-section .team-container .team-members i {
  font-size: 30px;
  color: black;
}
#team-section .team-container .team-members i:hover {
  color: white;
}
#team-section .team-container p {
  font-size: 17px;
}
#team-section .team-container img {
  width: 150px;
  height: 150px;
  margin: 20px;
  border-radius: 50%;
}
#team-section .team-container a {
  font-size: 20px;
  color: 0;
  text-decoration: none;
}
#character-section {
  background: linear-gradient(90deg, rgba(2, 0, 36, 0.7) 0%, rgba(18, 3, 5, 0.5) 72%, rgba(85, 65, 65, 0.8) 98%), url('../images/parallax-pic.jpg');
  width: 100%;
  height: auto;
  background-attachment: fixed;
  margin-top: 0;
  background-size: cover;
  padding-top: 10%;
}
#character-section h2 {
  font-size: 80px;
  font-weight: bold;
  margin: 0;
  color: white;
  text-align: center;
}
@media (max-width: 1024px) {
  #character-section h2 {
    font-size: 40px;
  }
}
#character-section p {
  font-size: 25px;
  width: 70%;
  color: #89c9e4;
  margin: 20px 250px;
  text-align: center;
}
@media (max-width: 1024px) {
  #character-section p {
    font-size: 20px;
    width: 80%;
    margin: 30px;
    padding-left: 30px;
  }
}
