@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-VariableFont_wdth\,wght.ttf") format("truetype");
}

@font-face {
  font-family: "Circular Std";
  src: url("../fonts/circular-std-medium-500.ttf") format("truetype");
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-VariableFont_wght.ttf");
}

:root {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
::before,
::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #222222;
}

::-webkit-scrollbar {
  width: 6px;
  background-color: #303030;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 255, 255, 0.671);
  border-radius: 1em;
}

body {
  margin: 0;
  color: white;
}

header {
  z-index: 999;
  position: fixed;
  width: 100%;
  padding-top: 0.4em;
  -webkit-transition: background-color 0.3s, padding 0.3s,
    -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, padding 0.3s, -webkit-box-shadow 0.3s;
  -o-transition: background-color 0.3s, padding 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, padding 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, padding 0.3s, box-shadow 0.3s,
    -webkit-box-shadow 0.3s;
}

header.sticky {
  padding-top: 0;
  background-color: rgba(58, 58, 58, 0.932);
  -webkit-box-shadow: rgba(0, 0, 0, 0.37) 0px 3px 8px;
  box-shadow: rgba(0, 0, 0, 0.37) 0px 3px 8px;
}

main {
  background-color: rgb(48, 48, 48);
}

section:not(.features-section) {
  overflow: auto;
}

nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.container-nav {
  max-width: 900px;
  margin: 0 auto;
  padding: 1em 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.logo {
  margin: 0;
  font-size: 2rem;
  font-family: "Circular Std";
  font-weight: normal;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
}

.navigation {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  list-style-type: none;
  margin: 0;
}

.navigation > li {
  margin-left: 1em;
}

.navigation > li > a {
  text-decoration: none;
  color: white;
  font-family: "Open Sans";
}

.socials {
  text-align: right;
  font-size: 0;
}

.socials > a {
  color: white;
  font-size: 1rem;
}

.socials > a + a {
  margin-left: 1em;
}

@media (max-width: 600px) {
  nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .navigation {
    margin-top: 1em;
  }

  .socials {
    display: none;
  }
}

.hero {
  padding: 0 1em;
  min-height: 660px;
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(32, 32, 32, 0.8)),
      to(rgba(32, 32, 32, 0.8))
    ),
    url("../img/snowy.jpg");
  background: -o-linear-gradient(
      top,
      rgba(32, 32, 32, 0.8) 0%,
      rgba(32, 32, 32, 0.8) 100%
    ),
    url("../img/snowy.jpg");
  background: linear-gradient(
      180deg,
      rgba(32, 32, 32, 0.8) 0%,
      rgba(32, 32, 32, 0.8) 100%
    ),
    url("../img/snowy.jpg");
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 255, 255, 0.281);
}

.hero-welcome {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero-text {
  font-size: calc(1.6rem + 1vw);
  font-family: "Circular Std";
  font-weight: normal;
  text-align: center;
}

.highlight {
  text-decoration: underline;
  -webkit-text-decoration-color: aqua;
  text-decoration-color: aqua;
  text-underline-offset: 0.1em;
}

.hero-desc {
  font-size: calc(1rem + 0.2vw);
  margin-bottom: 2em;
  color: rgb(182, 182, 182);
  text-align: center;
  font-weight: normal;
  font-family: "Circular Std";
}

.btn {
  padding: 0.8em 1em;
  border: 2px solid aqua;
  text-decoration: none;
  color: white;
  font-family: "Circular Std";
  font-weight: normal;
  -webkit-transition: color 0.3s, background-color 0.3s;
  -o-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}

.btn:hover {
  background-color: aqua;
  color: black;
}

.features-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.container-features {
  max-width: 1400px;
  padding: 0 1em;
  margin: 0 auto;
}

.features {
  margin-top: -4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.features .feature:nth-last-child(-n + 3) {
  margin-bottom: 0;
}

.feature {
  width: 32%;
  text-align: center;
  background-color: rgb(65, 65, 65);
  padding: 1.5em 1em;
  border-radius: 0.3em;
  border-top: 1px solid rgba(0, 255, 255, 0.281);
  margin-top: 1.6em;
}

.feature-icon {
  font-size: 3rem;
}

.feature-title {
  font-size: 1.4rem;
  font-family: "Circular Std";
  font-weight: normal;
}

.feature-desc {
  font-family: "Open Sans";
  font-weight: normal;
  color: rgb(209, 209, 209);
}

@media (max-width: 1024px) {
  .feature {
    width: 49%;
  }
  .features .feature:nth-last-child(-n + 2) {
    margin-bottom: 0;
  }
}

@media (max-width: 600px) {
  .feature {
    width: 98%;
  }
}

.why-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 1em;
  color: white;
}

.section-title {
  text-align: center;
  font-weight: bold;
  margin: 2.4em 0;
  font-family: "Circular Std";
  font-size: 2.6rem;
  font-weight: bold;
}

.container-cards {
  max-width: 1240px;
  padding: 0 1em;
  margin: 0 auto;
}

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cards > .card + .card {
  margin-top: 6em;
}

.card-image {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-item-align: center;
  align-self: center;
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 0.1em;
  border: 2px solid rgba(0, 255, 255, 0.438);
}

.card-right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 3em;
}

.cards .card:nth-child(even) > .card-right {
  padding-left: 0;
  padding-right: 3em;
}

.aqua {
  color: rgba(0, 255, 255, 0.534);
}

@media (max-width: 900px) {
  .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .cards .card:nth-child(even) > .card-right {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .card-right {
    margin-top: 2em;
    padding: 0;
    max-width: 500px;
  }
}

.card-title {
  margin: 0 0 0.6em 0;
  font-family: "Circular Std";
  font-weight: normal;
  font-size: 1.6em;
}

.card-desc {
  margin: 0;
  font-family: "Open Sans";
  color: rgb(199, 199, 199);
}

.card-btn {
  margin-top: 2em;
  display: inline-block;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.screenshot-section {
  padding-bottom: 8em;
}

.slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider li {
  text-align: center;
}

.slider img {
  width: 100%;
  max-width: 800px;
  max-height: 400px;
  height: auto;
}

.glide__arrow {
  border-radius: 10em;
  font-size: 2rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

footer {
  background-color: rgb(41, 41, 41);
  padding: 3em 0;
}

.footer-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer-logo {
  margin-bottom: 3em;
}

.footer-logo h1 {
  font-size: 3rem;
}

.logo-small {
  font-family: "Raleway";
  color: rgb(145, 145, 145);
  font-size: 1rem;
}

.footer-small {
  font-family: "Open Sans";
  color: rgb(145, 145, 145);
  font-size: 1rem;
}

.footer-title {
  margin: 0 0 0.8em 0;
  font-size: 1.4rem;
  font-family: "Circular Std";
  font-weight: normal;
}

.footer-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer-contact h2 {
  margin: 0 0 0.4em 0;
  font-size: 1.4rem;
  font-family: "Circular Std";
  font-weight: normal;
}

.footer-links {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

.footer-links > li > a {
  color: rgb(145, 145, 145);
  font-family: "Open Sans";
  text-decoration: none;
}

.footer-socials-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-socials-icons > a {
  font-size: 1.6rem;
  color: white;
}

.footer-socials-icons > a + a {
  margin-left: 0.4em;
}

.copyright {
  margin-top: 2em;
}

.copyright-text {
  font-family: "Open Sans";
  color: rgb(145, 145, 145);
}

footer hr {
  border: 1px solid rgb(51, 51, 51);
}

@media (max-width: 800px) {
  .footer-left {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
