/*
General / Shared
*/
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", Arial, sans-serif;
}

.section_heading_container {
  padding: 0px 20px;
}
.section_heading_container h2 {
  font-size: 1.7rem;
  margin: 0;
  padding-bottom: 5px;
}
.section_heading_container p {
  margin: 0;
  color: #424242;
}
@media (min-width: 1024px) {
  .section_heading_container h2 {
    font-size: 2.5rem;
  }
  .section_heading_container p {
    font-size: 1.2rem;
  }
}

footer {
  background-color: #eff1f5;
  display: flex;
  flex-direction: column;
  margin-top: 80px;
  padding-top: 50px;
  padding-bottom: 50px;
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 20px;
  gap: 8px;
}
@media (min-width: 768px) {
  footer ul {
    flex-direction: row;
    gap: 20px;
  }
}
footer ul a {
  all: unset;
  cursor: pointer;
}
@media (min-width: 768px) {
  footer ul li:not(:last-child)::after {
    content: "•";
    margin-left: 10px;
    color: #077a90;
  }
}
footer ul a:hover {
  color: #077a90;
  text-decoration: underline;
  text-underline-offset: 6px;
}
footer .footer_copyright {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .footer_copyright a {
  all: unset;
  cursor: pointer;
  color: #7d7d7d;
}
footer .footer_copyright a:hover {
  color: #077a90;
  text-decoration: underline;
  text-underline-offset: 6px;
}

/*
Hero section
*/
.section_hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
}
@media (min-width: 1024px) {
  .section_hero {
    padding-bottom: 40px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.section_hero .device_frame_container {
  position: relative;
}
.section_hero .device_frame_container img {
  width: 80vw;
  max-width: 300px;
  border: #000000 15px solid;
  border-radius: 50px;
  margin: 0;
}
@media (min-width: 1024px) {
  .section_hero .device_frame_container img {
    margin: 0px 20px;
  }
}
.section_hero .device_frame_container .device_frame_fade {
  position: absolute;
  top: 60%;
  left: 0;
  background: linear-gradient(to bottom, #ffffff00 0%, #ffffff 30%);
  width: 100%;
  height: 40%;
  display: none;
}
@media (min-width: 1024px) {
  .section_hero .device_frame_container .device_frame_fade {
    display: block;
  }
}

.section_hero .content_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}
@media (min-width: 1024px) {
  .section_hero .content_wrapper {
    flex-direction: row;
    max-width: 1024px;
    height: 580px;
    overflow: hidden;
    align-items: flex-start;
  }
}

.section_hero .text_container {
  position: absolute;
  top: 40%;
  left: 0;
  background: linear-gradient(to bottom, #ffffff00 0%, #ffffff 30%);
  width: 100%;
  height: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .section_hero .text_container {
    top: 0;
    position: relative;
    height: 100%;
    justify-content: center;
  }
}

.section_hero .branding_container {
  display: flex;
  margin-top: 160px;
  margin-bottom: 2px;
  align-items: center;
  gap: 15px;
  padding: 0px 10px;
}
@media (min-width: 1024px) {
  .section_hero .branding_container {
    margin: 0;
  }
}
.section_hero .branding_container img {
  height: 50px;
}
.section_hero .branding_container .app_title {
  font-weight: bold;
  font-size: 1.9rem;
  margin: 0;
}
@media (min-width: 1024px) {
  .section_hero .branding_container .app_title {
    font-size: 3.5rem;
  }
}

.section_hero .text_container .app_tagline {
  font-size: 1.2rem;
  padding: 0px 10px;
  text-align: center;
}

.section_hero .cta_link {
  padding: 30px;
}
.section_hero .cta_link img {
  height: 70px;
}

/*
Steps section
*/
.section_steps {
  display: flex;
  flex-direction: column;
  margin-top: 70px;
  margin-bottom: 150px;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .section_steps {
    margin-top: 0px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.section_heading_container h2 span:nth-of-type(1) {
  color: #10384b;
}
.section_heading_container h2 span:nth-of-type(2) {
  color: #0e9098;
}
.section_heading_container h2 span:nth-of-type(3) {
  color: #52cebf;
}

.section_steps .app_steps_wrapper {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 0px 20px;
  padding-top: 20px;
}
@media (min-width: 810px) {
  .section_steps .app_steps_wrapper {
    flex-direction: row;
    align-items: stretch;
    gap: 30px;
    padding-top: 35px;
  }
}

.section_steps .app_steps_wrapper .app_step_card {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
}

.section_steps .app_steps_wrapper .app_step_card img {
  width: 100%;
  border-radius: 20px 20px 10px 10px;
}

.section_steps .app_steps_wrapper .app_step_card .app_step_text h3 {
  margin-bottom: 8px;
}
.section_steps .app_steps_wrapper .app_step_card .app_step_text p {
  margin: 0;
}

/*
Features section
*/
.section_features {
  display: flex;
  flex-direction: column;
  margin-top: 70px;
  margin-bottom: 150px;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .section_features {
    margin-top: 0px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.section_features .app_features_wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  list-style: none;
  margin: 0;
  gap: 50px;
  padding: 0px 20px;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .section_features .app_features_wrapper {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 80px;
    padding-top: 35px;
  }
}

.section_features .app_features_wrapper .app_feature_card {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  gap: 20px;
}

.section_features .app_features_wrapper .app_feature_card img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
}

.section_features .app_features_wrapper .app_feature_card .app_feature_text h3 {
  margin-top: 0;
  margin-bottom: 8px;
}
.section_features .app_features_wrapper .app_feature_card .app_feature_text p {
  margin: 0;
}

/*
CTA card section
*/
.section_cta {
  display: flex;
  margin-top: 70px;
  margin-bottom: 150px;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1024px) {
  .section_cta {
    margin-top: 0px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.section_cta .section_cta_card {
  width: 100%;
  border-radius: 18px;
  background-color: #12364a;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 22px;
  gap: 50px;
}
.section_cta .section_cta_card .cta_card_heading {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
  color: #ffffff;
}
.section_cta .section_cta_card .cta_card_heading h2 {
  margin: 0;
}
@media (min-width: 680px) {
  .section_cta .section_cta_card .cta_card_heading h2 {
    font-size: 2.5rem;
  }
}
.section_cta .section_cta_card .cta_card_heading p {
  margin: 0;
}
.section_cta .section_cta_card .cta_card_link {
  /*padding: 30px;*/
}
.section_cta .section_cta_card .cta_card_link img {
  height: 65px;
}

/*
Privacy page
*/
.privacy_container {
  padding: 20px 20px;
  max-width: 720px;
  margin: 0 auto;
}

.privacy_container .privacy_heading {
  margin-bottom: 30px;
}
.privacy_container .privacy_heading h1 {
  margin-bottom: 10px;
}

.privacy_container hr {
  margin-top: 30px;
  margin-bottom: 20px;
}

.privacy_container h2 {
  margin-top: 0;
  margin-bottom: 20px;
}

.privacy_container h3 {
  margin-top: 40px;
  margin-bottom: 10px;
}

.privacy_container p {
  margin: 0;
}
