html, body {
  font-family: Verdana, sans-serif;
  letter-spacing: -0.01em;
  font-size: 30px;
  padding: 0;
  margin: 0;
  background: #000;
  color: rgba(255, 255, 255, 0.8);
}

/* Wrappers */
.page-wrapper{

}
.section{
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding: 200px 80px;
  box-sizing: border-box;
}

/* Titles */
.xl-title{
  font-size: 3em;
  text-align: center;
  font-weight: bold;
  color: #1a89a7;
  margin-bottom: 140px;
}
.l-title{
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 40px;
}
.m-title{
  color: rgba(255, 255, 255, 0.6);
}

/* Lists */
ul{
  list-style: none;
  padding: 0; margin: 0;
}
ul li{
  margin-bottom: 20px;
}
ul li:before{
  content: '-';
  padding-right: 20px;
}

/* Links */
a{
  color: #f37c1f;
}

/* ---- Pages ----*/

/* Hero */
.hero-content{
  display: flex;
  align-items: center;
  flex-direction: column;
}
.hero-content_logo{
  margin-bottom: 20px;
}

/* About */
.section-about .m-title{
  margin-bottom: 200px;
}

/* Products */
.products-list_item{
  padding: 80px;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px;
  margin-bottom: 100px;
}
.products-list_head{
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}
.products-list_img{
  width: 200px;
  margin-right: 60px;
}
.products-list_title{
  font-size: 1.6em;
  font-weight: bold;
  color: #f37c1f;
  margin-bottom: 20px;
}
.products-list_options{
  font-size: 0.8em;
}
.products-list_options div{
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
}
.products-list_options div:before{
  content: '—';
  position: absolute;
  top:50%; left:0;
  transform: translateY(-50%);
}

/* Technologies */
.section-technologies .m-title{
  margin-bottom: 100px;
}
.list{
  max-width: 100%;
}
.list-title{
  margin-bottom: 20px;
  color: #f37c1f;
  margin-top: 40px;
}
.list-item{
  font-size: 20px;
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
}
.list-item:before{
  content: '-';
  position: absolute;
  top:0; left:0;
}
.list-item_title{
  font-size: 26px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.9);
}

@media screen and (min-width: 1024px) {
  html, body {
    font-size: 24px;
  }
  .section:first-child{
    font-size: 20px;
    padding: 0;
    min-height: 100vh;
  }
  .hero-content{
    max-width: 1024px;
    margin: 0 auto;
    flex-direction: row;
  }
  .hero-content_logo{
    width: 600px;
    margin-bottom: 0;
  }
  .section{
    max-width: 1024px;
    margin: 0 auto;
  }
}


















