@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;700;900&display=swap");
.hero .icon img:not(.altice),
.icon-container .icon img {
  opacity: 0;
  animation: fade-in-left 1.5s ease-out 1s forwards;
}

.hero .text-container h1 {
  opacity: 0;
  animation: text-fade-presp 0.5s ease-out 1.4s forwards;
}
.hero .text-container h2 {
  opacity: 0;
  animation: text-fade-presp 0.5s ease-out 1s forwards;
}
.hero .line-title {
  width: 0em;
  animation: line-title 0.5s ease-out 2s forwards;
}
.hero h3 {
  opacity: 0;
  animation: fade-in-up 1s ease-out 1.2s forwards;
}

.intro a, .stats a {
  transition: all ease-in-out 200ms;
  transform: scale(1);
}
.intro a:hover, .stats a:hover {
  opacity: 1;
  transform: scale(1.05);
}

.features-slider .img-container figure.img-features {
  transition: all ease-in-out 800ms;
  transform: translateY(687px);
}
.features-slider .img-container figure.img-features.active {
  transform: translateY(0);
}
.features-slider .text-container .card-container h2 {
  transition: all ease-in-out 200ms;
  transform: scale(1);
}
.features-slider .text-container .card-container p {
  transition: all ease-in-out 200ms;
}
.features-slider .text-container .card-container:hover h2 {
  opacity: 1;
  transform: scale(1.02);
}
.features-slider .text-container .card-container.active h2 {
  opacity: 0;
  animation: text-fade-presp 0.5s ease-out 0s forwards;
}
.features-slider .text-container .card-container.active p {
  opacity: 0;
  animation: fade-in-down 0.7s ease-out 0s forwards;
}

.platforms .call-to-action {
  width: 50vw;
  transition: all ease-in-out 200ms;
}
.platforms .call-to-action:hover {
  width: 52.5vw;
}

@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translate(100vh, 0);
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 0.03;
    transform: translate(-5vh, 0);
  }
  100% {
    opacity: 0.03;
    transform: translate(0, 0);
  }
}
@keyframes text-fade-presp {
  0% {
    opacity: 0;
    transform: rotate3d(5, 5, 0, 42deg);
  }
  100% {
    opacity: 1;
    transform: rotate3d(0, 0, 0, 0deg);
  }
}
@keyframes line-title {
  0% {
    width: 0em;
  }
  100% {
    width: 20em;
  }
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translate(0, -6em);
  }
  75% {
    opacity: 1;
    transform: translate(0, 0.5em);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translate(0, 3em);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
header {
  opacity: 0;
  animation: fade-in-up 1s ease-out 0.5s forwards;
  position: relative;
}

header a {
  transition: all ease-in-out 200ms;
  transform: scale(1);
}

header a:hover {
  opacity: 1;
  transform: scale(1.05);
}

header .special-link:hover {
  transform: scale(1.1);
}

body > .call-to-action a.special-link {
  animation: fade-in-up 1s ease-out 0.5s forwards;
  transition: all ease-in-out 200ms;
  transform: scale(1);
}

body > .call-to-action a.special-link:hover {
  transform: scale(1.1);
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translate(0, -6em);
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
    transform: translate(0, 0.5em);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.edit-block .Normal {
  font-size: 1rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 1rem;
  background-color: #091922;
  color: #f7f7f7;
  font-family: "Montserrat", sans-serif;
  max-width: 100vw;
  overflow-x: hidden;
}

body > form {
  font-size: 1rem;
}

p, h1, h2, h3, h4, h5, span {
  font-family: "Montserrat", sans-serif;
  color: inherit;
  line-height: initial;
}

header {
  z-index: 10;
  display: flex;
  max-width: 1400px;
  margin: auto;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
}
header .logo img {
  width: 9rem;
}
header nav {
  font-size: 0.9em;
  display: flex;
  align-items: center;
}
header nav a, header nav a:active, header nav a:focus, header nav a:visited {
  text-decoration: none;
  color: #f7f7f7;
  opacity: 0.6;
  font-weight: 500;
  margin-left: 2em;
  display: block;
}
header nav a:hover, header nav a:active:hover, header nav a:focus:hover, header nav a:visited:hover {
  color: #f7f7f7;
}
header nav a.special-link, header nav a:active.special-link, header nav a:focus.special-link, header nav a:visited.special-link {
  background-color: #f7f7f7;
  opacity: 1;
  color: #091922;
  padding: 1em 2em;
  border-radius: 2em;
  opacity: 0;
}

@media only screen and (max-width: 700px) {
  header {
    z-index: 8;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0;
  }
  header nav {
    margin-top: 1em;
  }
  header nav a {
    padding: 1.5em;
    margin-left: 0;
  }
  header nav a:first-child {
    padding-left: 0em;
  }
  header nav a:nth-last-child(2) {
    padding-right: 0em;
  }
  header nav a:last-child {
    display: none;
  }
}
.call-to-action-header {
  position: fixed;
  z-index: 9;
  width: 100%;
  top: 0;
}
.call-to-action-header .call-to-action-container {
  max-width: 1400px;
  margin: auto;
  padding: 2rem 3rem;
  display: flex;
  justify-content: flex-end;
}
.call-to-action-header .call-to-action-container a.special-link {
  font-size: 0.9em;
  text-decoration: none;
  background-color: #f7f7f7;
  opacity: 1;
  color: #091922;
  padding: 1em 2em;
  border-radius: 2em;
  font-weight: 500;
  display: block;
  width: max-content;
  border: 1px solid #f0f0f0;
  box-shadow: 0px 0px 14px 5px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 700px) {
  .call-to-action-header {
    right: 0;
    width: max-content;
  }
}
.icon-container {
  position: relative;
}
.icon-container .icon {
  position: absolute;
  z-index: 1;
}
.icon-container > section {
  position: relative;
  z-index: 2;
}

footer {
  background-color: #16191b;
}
footer section {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding-top: 2em;
}
footer section div {
  margin: 0 3rem;
}
footer section div ul {
  list-style: none;
  color: #f7f7f7;
  margin: 0;
}
footer section div ul li a {
  font-size: 0.8em;
  line-height: 2em;
  text-decoration: none;
  color: #f7f7f7;
  opacity: 0.3;
  transition: all ease-in-out 200ms;
  transform: scale(1);
  display: block;
  width: max-content;
  color: #f7f7f7 !important;
}
footer section div ul li a:hover {
  opacity: 0.8;
  transform: scale(1.1);
  color: #f7f7f7;
}
footer section div h3 {
  margin-bottom: 0.5em;
  color: #f7f7f7;
}
footer section div h4 {
  margin-top: 2em;
  color: #f7f7f7;
}
footer section div p {
  opacity: 0.3;
  font-size: 0.8em;
  padding-top: 1em;
  color: #f7f7f7;
}
footer section > ul {
  margin: 0 3rem;
  display: flex;
  list-style: none;
}
footer section > ul li a {
  text-decoration: none;
  transform: scale(1);
  display: block;
  transition: all ease-in-out 200ms;
  color: #f7f7f7 !important;
  opacity: 0.5;
  font-size: 0.8em;
  margin-right: 1em;
  margin-bottom: 2em;
}
footer section > ul li a:hover {
  opacity: 1;
  transform: scale(1.05);
  color: #f7f7f7;
}
footer section .stamps {
  display: flex;
  align-items: center;
  margin-top: -4em;
  font-size: 0.8em;
}
footer section .stamps img {
  display: block;
  margin: 0.5em;
}
footer section:nth-child(2) {
  padding-bottom: 2em;
}
footer .footer-bottom {
  width: 100%;
  background-color: #1c2023;
  max-width: 100%;
  padding: 2em 0;
}
footer .footer-bottom .footer-container {
  max-width: 1400px;
  margin: auto;
  width: 100%;
  display: flex;
  align-items: center;
}
footer .footer-bottom .footer-container img {
  margin-left: 3rem;
  margin-right: 1rem;
  display: block;
}
footer .footer-bottom .footer-container p {
  padding-top: 0;
  font-size: 0.7em;
}

@media only screen and (max-width: 700px) {
  footer section {
    flex-direction: column;
  }
  footer section div {
    margin: 1rem 3rem;
  }
  footer section > ul {
    flex-direction: column;
  }
  footer section .stamps {
    margin-top: 1rem;
  }
}
.hero {
  position: relative;
}
.hero .icon img {
  height: 130vh;
  position: absolute;
  top: -20vh;
  right: -20vw;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  pointer-events: none;
}
.hero .text-container {
  font-size: 0.9em;
  max-width: 1400px;
  margin: auto;
  height: calc(100vh - 8em);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .text-container .edit-block .Normal {
  font-size: 0.9rem;
}
.hero .text-container h1 {
  font-size: 10em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 1px #f7f7f7;
  font-weight: 900;
  margin-left: 3rem;
  margin-right: 3rem;
  margin-top: 0.2em;
  margin-bottom: 0em;
  line-height: 1em;
  font-family: "Poppins", sans-serif;
}
.hero .text-container h2 {
  text-transform: uppercase;
  font-size: 3.5em;
  font-weight: 900;
  letter-spacing: 4px;
  margin-left: 3rem;
  margin-right: 3rem;
  margin-top: 0em;
  margin-bottom: 0em;
  color: #f7f7f7;
}
.hero .text-container div.sub-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 2em;
}
.hero .text-container div.sub-container h3 {
  font-size: 2em;
  font-weight: 400;
  margin-right: 3rem;
  color: #f7f7f7;
  margin-top: 0em;
  margin-bottom: 0em;
}
.hero .text-container div.sub-container span.line-title {
  height: 1px;
  background-color: #f7f7f7;
  display: block;
  margin-top: 3px;
  margin-right: 1.5em;
}

@media only screen and (max-width: 700px) {
  .hero {
    font-size: 0.8em;
    width: 100vw;
    overflow: hidden;
  }
  .hero .text-container {
    height: calc(100vh - 14em);
  }
  .hero .text-container h2 {
    font-size: 3em;
  }
  .hero .text-container h1 {
    font-size: 6em;
  }
}
@media only screen and (max-width: 550px) {
  .hero .text-container h1 {
    font-size: 6em;
  }
}
.intro {
  display: flex;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  position: relative;
  z-index: 2;
}
.intro figure {
  width: 40%;
  margin: 0em 2.5em 0 3em;
}
.intro .text-container {
  width: 60%;
  margin: 0em 3em;
}
.intro .text-container h3 {
  text-transform: uppercase;
  font-size: 2em;
  margin-right: 2em;
  margin-bottom: 0.5em;
  color: #f7f7f7;
}
.intro .text-container p {
  line-height: 2em;
  margin-bottom: 2em;
  font-size: 1.1em;
  white-space: pre-wrap;
  color: #f7f7f7;
}
.intro .text-container a.button {
  display: block;
  font-weight: 500;
  text-decoration: none;
  background-color: #f7f7f7;
  opacity: 1;
  color: #091922;
  padding: 0.8em 2em;
  border-radius: 2em;
  width: max-content;
}

@media only screen and (max-width: 900px) {
  .intro {
    flex-direction: column;
    margin-top: 2em;
  }
  .intro figure {
    min-width: 16em;
  }
  .intro .text-container {
    width: auto;
    margin-top: 2em;
  }
  .intro .text-container h3 {
    margin-right: 0;
  }
}
.highlight-phrase {
  max-width: 1400px;
  margin: auto;
}
.highlight-phrase p {
  margin: 8em 3rem;
  max-width: 800px;
  font-size: 1.2em;
  font-weight: 100;
  line-height: 2em;
  color: #f7f7f7;
}

.features-slider {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
}
.features-slider .img-container {
  margin-left: 3rem;
  position: relative;
  min-height: 687px;
  min-width: 510px;
  overflow: hidden;
}
.features-slider .img-container figure {
  position: absolute;
  top: 0;
}
.features-slider .img-container figure.img-features {
  z-index: 1;
}
.features-slider .img-container figure.img-features.active {
  z-index: 2;
}
.features-slider .img-container figure img {
  display: block;
}
.features-slider .text-container {
  margin: 0 6em 0 4em;
}
.features-slider .text-container .card-container {
  margin-bottom: 2.5em;
}
.features-slider .text-container .card-container h2 {
  color: rgba(0, 0, 0, 0);
  text-transform: uppercase;
  -webkit-text-stroke: 0.5px #f7f7f7;
  opacity: 0.3;
  font-size: 2.2em;
  margin-bottom: 0.5em;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}
.features-slider .text-container .card-container p {
  line-height: 2em;
  height: 0;
  overflow: hidden;
  color: #f7f7f7;
}
.features-slider .text-container .card-container.active h2 {
  color: #f7f7f7;
  opacity: 1;
  -webkit-text-stroke: 0px #f7f7f7;
  cursor: inherit;
}
.features-slider .text-container .card-container.active p {
  display: block;
  height: 125px;
}

@media only screen and (max-width: 1300px) {
  .features-slider .text-container .card-container.active p {
    height: 180px;
  }
}
@media only screen and (max-width: 1200px) {
  .features-slider {
    display: block;
    position: relative;
  }
  .features-slider .img-container {
    position: relative;
    top: 0;
    min-width: auto;
    min-height: auto;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .features-slider .img-container figure {
    position: inherit;
    margin: 3rem;
    transform: translateY(0) !important;
  }
  .features-slider .img-container figure::after {
    height: 25em;
    width: 11em;
    content: "";
    position: absolute;
    background: linear-gradient(90deg, #091922 0%, rgba(9, 25, 34, 0) 100%);
    top: 0;
  }
  .features-slider .img-container figure img {
    height: 25em;
    opacity: 0.6;
  }
  .features-slider .text-container {
    position: absolute;
    top: 0;
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    z-index: 2;
  }
  .features-slider .text-container .card-container {
    height: 25em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 4.5rem 3rem 6rem;
  }
  .features-slider .text-container .card-container h2 {
    color: #f7f7f7;
    opacity: 1;
    -webkit-text-stroke: 0px #f7f7f7;
    cursor: inherit;
  }
  .features-slider .text-container .card-container p {
    display: block;
    height: 14em;
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 650px) {
  .features-slider {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 0;
    grid-auto-flow: row;
    grid-template-areas: "area1" "area2" "area3";
  }
  .features-slider .img-container figure {
    margin: 3rem 0rem;
    width: 100%;
  }
  .features-slider .img-container figure::after {
    height: 25em;
    width: 11em;
    content: "";
    position: absolute;
    background: linear-gradient(90deg, #091922 0%, rgba(9, 25, 34, 0) 100%);
    top: 0;
  }
  .features-slider .img-container figure img {
    height: auto;
    width: 100%;
    opacity: 0.6;
  }
  .features-slider .area1 {
    grid-area: area2;
  }
  .features-slider .text-container {
    position: absolute;
    top: 0;
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    z-index: 2;
  }
  .features-slider .text-container .card-container {
    height: 25em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 4.5rem 3rem 6rem;
  }
  .features-slider .text-container .card-container h2 {
    color: #f7f7f7;
    opacity: 1;
    -webkit-text-stroke: 0px #f7f7f7;
    cursor: inherit;
  }
  .features-slider .text-container .card-container p {
    display: block;
    height: 14em;
    font-size: 0.9em;
  }
}
.payment-methods {
  background-color: #15242D;
  padding: 1.5rem 0rem;
}
.payment-methods .logos {
  max-width: 1200px;
  padding-top: 2em;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.payment-methods .logos img {
  margin: 1em;
}
.payment-methods .text-container {
  text-align: center;
  margin: auto;
  padding: 2rem 3rem;
}
.payment-methods .text-container p {
  white-space: pre-wrap;
  font-weight: 100;
  font-size: 1em;
  line-height: 1.4em;
  color: #f7f7f7;
}

.icon-container {
  background-color: #f7f7f7;
}
.icon-container .icon {
  width: 100%;
}
.icon-container .icon img {
  height: 130vh;
  position: absolute;
  top: 0;
  right: -20vw;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  pointer-events: none;
}

.ingress-steps, .platforms {
  position: relative;
}
.ingress-steps .title-container, .platforms .title-container {
  color: #091922;
  text-transform: uppercase;
  max-width: 1400px;
  margin: auto;
  padding-top: 3em;
  padding-bottom: 3em;
}
.ingress-steps .title-container.alt, .platforms .title-container.alt {
  text-align: right;
}
.ingress-steps .title-container.alt > div, .platforms .title-container.alt > div {
  flex-direction: row-reverse;
}
.ingress-steps .title-container.alt div h2, .platforms .title-container.alt div h2 {
  font-family: "Poppins", sans-serif;
  margin-left: 0;
  margin-right: 3rem;
}
.ingress-steps .title-container.alt div.outline h2, .platforms .title-container.alt div.outline h2 {
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 1px #091922;
  margin-left: 0;
  margin-right: 0.5em;
}
.ingress-steps .title-container.alt .line-title, .platforms .title-container.alt .line-title {
  height: 1px;
  width: 35vw;
  background-color: #091922;
  display: inline-block;
  margin-left: 0;
  margin-right: -25vw;
}
.ingress-steps .title-container > div, .platforms .title-container > div {
  display: flex;
  align-items: center;
}
.ingress-steps .title-container div h2, .platforms .title-container div h2 {
  font-weight: 900;
  font-size: 2em;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  font-family: "Poppins", sans-serif;
  margin-left: 3rem;
  color: #091922;
}
.ingress-steps .title-container div.outline h2, .platforms .title-container div.outline h2 {
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 1px #091922;
  margin-left: 0.5em;
}
.ingress-steps .title-container .line-title, .platforms .title-container .line-title {
  height: 1px;
  width: 35vw;
  background-color: #091922;
  display: inline-block;
  margin-left: -25vw;
}
.ingress-steps .ingress-graph > div, .platforms .ingress-graph > div {
  display: flex;
  align-items: center;
  margin: auto;
  max-width: 40em;
}
.ingress-steps .ingress-graph > div.path, .platforms .ingress-graph > div.path {
  justify-content: center;
}
.ingress-steps .ingress-graph > div.path .bullet, .platforms .ingress-graph > div.path .bullet {
  height: 2em;
  width: 4em;
  border-radius: 2em;
  border: 5px solid #091922;
  display: block;
}
.ingress-steps .ingress-graph > div.path .line, .platforms .ingress-graph > div.path .line {
  width: 100%;
  height: 5px;
  background-color: #091922;
}
.ingress-steps .ingress-graph > div.images, .ingress-steps .ingress-graph > div.labels, .platforms .ingress-graph > div.images, .platforms .ingress-graph > div.labels {
  justify-content: space-between;
  margin-top: 1em;
}
.ingress-steps .ingress-graph > div.images img, .ingress-steps .ingress-graph > div.labels img, .platforms .ingress-graph > div.images img, .platforms .ingress-graph > div.labels img {
  width: 6em;
}
.ingress-steps .ingress-graph > div.images img:first-child, .ingress-steps .ingress-graph > div.labels img:first-child, .platforms .ingress-graph > div.images img:first-child, .platforms .ingress-graph > div.labels img:first-child {
  margin-left: -2.5em;
  margin-right: 2.5em;
}
.ingress-steps .ingress-graph > div.images img:last-child, .ingress-steps .ingress-graph > div.labels img:last-child, .platforms .ingress-graph > div.images img:last-child, .platforms .ingress-graph > div.labels img:last-child {
  margin-left: 1.5em;
  margin-right: -2em;
}
.ingress-steps .ingress-graph > div.labels, .platforms .ingress-graph > div.labels {
  color: #091922;
  text-align: center;
  padding: 1em 0;
}
.ingress-steps .ingress-graph > div.labels img:first-child, .ingress-steps .ingress-graph > div.labels > div:first-child, .platforms .ingress-graph > div.labels img:first-child, .platforms .ingress-graph > div.labels > div:first-child {
  margin-left: -5.5em;
  margin-right: 5.5em;
}
.ingress-steps .ingress-graph > div.labels img:last-child, .ingress-steps .ingress-graph > div.labels > div:last-child, .platforms .ingress-graph > div.labels img:last-child, .platforms .ingress-graph > div.labels > div:last-child {
  margin-left: 4em;
  margin-right: -6em;
}
.ingress-steps .ingress-graph > div.labels span, .platforms .ingress-graph > div.labels span {
  display: block;
}

@media only screen and (max-width: 700px) {
  .ingress-steps .ingress-graph {
    display: flex;
    margin: 0rem 3rem;
  }
  .ingress-steps .ingress-graph .path {
    display: none;
  }
  .ingress-steps .ingress-graph > div.images {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    margin-right: 1em;
  }
  .ingress-steps .ingress-graph > div.images img:first-child {
    margin-left: 0;
    margin-right: 0;
  }
  .ingress-steps .ingress-graph > div.images img:last-child {
    margin-left: 0;
    margin-right: 0;
  }
  .ingress-steps .ingress-graph > div.images img {
    margin: 1em;
  }
  .ingress-steps .ingress-graph > div.labels {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    width: 50%;
    text-align: left;
    margin-left: 0;
  }
  .ingress-steps .ingress-graph > div.labels span {
    height: 5.5em;
    display: flex;
    align-items: center;
    margin-top: 1em;
  }
  .ingress-steps .ingress-graph > div.labels span:first-child {
    margin-right: 0;
    margin-left: 0;
  }
  .ingress-steps .ingress-graph > div.labels span:last-child {
    margin-right: 0;
    margin-left: 0;
  }
}
.platforms .image-container {
  max-width: calc(1400px - 6rem);
  margin: 0 auto 2em auto;
  display: flex;
  justify-content: space-between;
}
.platforms .row {
  max-width: calc(1400px - 6rem);
  display: flex;
  justify-content: space-between;
  margin: 4em auto;
  padding-bottom: 4em;
}
.platforms .row .text-container {
  color: #091922;
}
.platforms .row .text-container p {
  white-space: pre-line;
  font-size: 1.2em;
  font-weight: 300;
  line-height: 1.6em;
}
.platforms .row .call-to-action {
  background-color: #091922;
  display: flex;
  align-items: center;
  padding: 1rem 3rem 1rem 3rem;
  border-top-left-radius: 3em;
  border-bottom-left-radius: 3em;
  margin-right: -30vw;
}
.platforms .row .call-to-action a.button {
  color: #f7f7f7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
}
.platforms .row .call-to-action a.button b {
  display: block;
}
.platforms .row .call-to-action a.button span {
  display: block;
}

@media only screen and (max-width: 700px) {
  .platforms .image-container {
    margin: 0 3rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .platforms .row {
    flex-direction: column;
    align-items: flex-end;
  }
  .platforms .row p {
    margin: 0 3rem 2rem 3rem;
  }
  .platforms .row .call-to-action {
    margin-right: 0;
    width: 80%;
  }
}
.stats {
  padding-top: 2em;
  padding-bottom: 3em;
}
.stats .full-line {
  height: 1px;
  width: 100%;
  background-color: #f7f7f7;
  display: block;
}
.stats .title-container {
  max-width: 1400px;
  margin: auto;
  padding-bottom: 2.5em;
}
.stats .title-container h2 {
  text-transform: uppercase;
  width: max-content;
  color: #f7f7f7;
  background-color: #091922;
  margin: -1.6em 3rem 0 3rem;
  padding: 1em;
  font-size: 2em;
}
.stats .conter h1 {
  font-family: "Poppins", sans-serif;
  font-size: 16em;
  margin: auto;
  width: max-content;
  line-height: 0.8em;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 1px #f7f7f7;
}
.stats .conter h3 {
  color: #f7f7f7;
  width: max-content;
  margin: auto;
  font-size: 2em;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
  margin-top: 0.5em;
  padding-bottom: 3em;
}
.stats span.left-line {
  height: 1px;
  width: 50%;
  background-color: #f7f7f7;
  display: block;
}
.stats a.button {
  display: block;
  font-weight: 500;
  text-decoration: none;
  background-color: #f7f7f7;
  opacity: 1;
  color: #091922;
  padding: 0.8em 2em;
  border-radius: 2em;
  width: max-content;
  margin: -1.4em auto 2em auto;
}

@media only screen and (max-width: 700px) {
  .stats {
    width: 100%;
  }
  .stats .title-container {
    width: 100%;
  }
  .stats .title-container h2 {
    width: 80%;
    text-align: center;
  }

  .conter {
    font-size: 0.6em;
  }
}

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