*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  font-family: "Lato", sans-serif;
  color: #333;
}
body {
  overflow-x: hidden;
  margin: 0;
  width: 100vw;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 10px;
}

.brand-title {
  font-size: 1.3rem;
}

.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 10px;
}

.nav {
  display: flex;
  gap: 32px;
  color: #f4f4f4;
}
.nav a {
  color: inherit;
}

.gradient-wrap {
  background: #126fed;
  background: linear-gradient(
    145deg,
    rgb(12, 45, 122) 0%,
    rgba(18, 111, 237, 1) 71%,
    rgba(0, 212, 255, 1) 100%
  );
  height: 50vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0%;
  z-index: -1;
}

.body-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 45px);
}

.quote-area {
  flex: 1;
  width: 100%;
  color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-align: center; */
  font-size: 1.8rem;
  font-family: "Rubik", sans-serif;
  /* height: 100%; */
  line-height: 1.25;
  min-height: calc(50vh - 75px);
}

.quote-symbol {
  font-size: 3em;
  display: flex;
  transition: 0.3s all ease-in-out;
}

.quote-symbol-start {
  line-height: 0;
}

.quote-symbol-end {
  text-align: right;
  justify-content: flex-end;
  line-height: 1;
}

.quote-text {
  padding: 0 20px;
  display: flex;
  min-height: 95px;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  margin: auto;
  transition: 0.3s all ease-in-out;
}

.quote-component {
  transition: 0.3s all ease-in-out;
  /* opacity: 0; */
}

.exit {
  transform: translateY(-25%);
  opacity: 0;
  transition: 0.3s all ease-in-out;
}

.entry {
  transform: translateY(25%);
  opacity: 0;
  transition: 0.3s all ease-in-out;
}

.app-header {
  /* text-align: center; */
  color: #555;
  font-size: 1.6rem;
  margin: 3rem 0;
  margin-bottom: 2rem;
}

.apps-area {
  flex: 1;
  width: 100%;
}

.apps-area img {
  width: 100%;
  height: 100%;
}

.app-card-container {
  display: grid;
  grid-template-columns: min-content auto;
  gap: 0.8rem 1.3rem;
  flex-direction: column;
  padding: 1.5rem 1rem;
  min-height: 140px;
  transition: 0.3s all ease-in-out;
  border-radius: 4px;
  /* cursor: pointer; */
  border: 1px solid #eee;
  border-radius: 0.5rem;
}

.app-card-container:hover {
  /* border: 2px solid #126fed; */
  /* transition: 0.3s all ease-in-out;
  box-shadow: 2px 6px 14px 1px #00000029; */
}

.app-card-icon {
}

.app-card-icon > img {
  width: 80px;
  height: 80px;
}

.card-root-container {
  width: 100%;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

.app-name-area {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: max-content 1fr;
}

.app-download-option {
  display: grid;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.app-download-option img {
  width: 28px;
}

.app-name {
  font-size: 1.4rem;
  margin: 0;
  width: 100%;
}

.app-desc {
  font-size: 1rem;
  grid-column: 1/-1;
  color: #333;
  margin: 0;
}

.app-meta {
  width: 100%;
  opacity: 1;
  transition: 0.3s all ease-in-out;
  color: #aeaeae;
  grid-column: 1/-1;
}

/* .app-card-container:hover .app-meta {
  opacity: 1;
} */

.app-privacy-link {
  font-size: 0.8rem;
  /* text-align: center; */
  width: 100%;
}

.coverage-area {
}

.coverage-header {
  /* text-align: center; */
  color: #555;
  font-size: 1.6rem;
  margin: 3rem 0;
  margin-bottom: 2rem;
}

.coverage-area {
  flex: 1;
  width: 100%;
}
.coverage-root-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.coverage-area img {
  width: 70%;
  height: 100%;
}

.coverage-card-container {
  display: grid;
  gap: 0.8rem 1.3rem;
  padding: 1.5rem 1rem;
  min-height: 140px;
  transition: 0.3s all ease-in-out;
  border-radius: 4px;
  /* cursor: pointer; */
  border: 1px solid #eee;
  border-radius: 0.5rem;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 25px #00000014;
  border: 1px solid #eeeeee;
  border-radius: 9px;
}

.coverage-name-area {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: max-content 1fr;
}

.coverage-name {
  font-size: 1rem;
  margin: 0;
  width: 100%;
  color: #000000;
}

.coverage-desc {
  font-size: 0.9rem;
  grid-column: 1/-1;
  color: #00000060;
  margin: 0;
}

.coverage-meta {
  width: 100%;
  opacity: 1;
  transition: 0.3s all ease-in-out;
  color: #aeaeae;
  grid-column: 1/-1;
  margin-top: 1rem;
}
.coverage-meta a {
  color: #0d3183;
  text-decoration: none;
}
@media (max-width: 1000px) {
  /* .body-contain {
    display: flex;
    flex-direction: column-reverse;
  } */

  /* .gradient-wrap {
    transform: none;
    left: 0;
    height: 55vh;
    position: absolute;
  } */

  /* .brand-title {
    color: #fff;
  } */

  /* .apps-area {
    justify-content: center;
  } */

  .quote-area {
    min-height: calc(50vh - 57px - 0.2rem);
  }

  .quote-area {
    font-size: 1.3rem;
  }

  .container {
    padding: 1rem;
  }

  #footer {
    bottom: unset;
    top: 100%;
    padding-top: 3.5rem;
  }
}

.default-link {
  text-decoration: unset;
  color: inherit;
  width: fit-content;
  display: inline-block;
}

.underline-link {
  text-decoration: underline;
  color: inherit;
}

#footer {
  /* pointer-events: none; */
  font-size: 0.9rem;
  margin: 0 auto;
  width: 100%;
  height: auto;
  color: #aeaeae;
  /* overflow: hidden; */
  position: relative;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

#footer a {
  margin-left: 5px;
  margin-right: 5px;
  color: inherit;
  text-decoration: none;
}
