/* This comment is
* several lines long.
* since it uses the CSS comment syntax,
* it will appear in the CSS output. */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}
a:active, a:focus, a:hover {
  text-decoration: none;
}

/*
IMPORT FONTS
-------------------------------------------- */
body,
input,
select,
button,
textarea {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

h1 {
  margin-bottom: 30px;
  font-size: 62px;
  line-height: normal;
  font-weight: 300;
  color: #1A1A18;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
h1 strong {
  font-size: 92px;
  text-transform: none;
  font-weight: 600;
  letter-spacing: normal;
}
@media (max-width: 1024px) and (orientation: portrait) {
  h1 strong {
    font-size: 62px;
  }
}
@media (max-width: 480px) {
  h1 strong {
    font-size: 52px;
  }
}
@media (max-width: 1024px) and (orientation: portrait) {
  h1 {
    margin-bottom: 30px;
    font-size: 42px;
  }
}

h2,
h4 {
  position: relative;
  margin-bottom: 30px;
  padding-left: 10px;
  font-size: 12px;
  line-height: normal;
  font-weight: 600;
  color: #1A1A18;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
@media (max-width: 1024px) and (orientation: portrait) {
  h2,
  h4 {
    margin-bottom: 30px;
  }
}
h2:before,
h4:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #DD0519;
}

h3 {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: normal;
  font-weight: 600;
  color: #1A1A18;
  letter-spacing: 0.03em;
}
@media (max-width: 1024px) and (orientation: portrait) {
  h3 {
    margin-bottom: 30px;
  }
}

p {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 29px;
  color: #4E4E4E;
  letter-spacing: 0.05em;
}
@media (max-width: 1024px) and (orientation: portrait) {
  p {
    margin-bottom: 20px;
  }
}
p strong {
  font-weight: 600;
}
p a:not(.btn) {
  color: white;
  text-decoration: underline;
}
p a:not(.btn):hover {
  text-decoration: none;
}
p.small {
  font-size: 12px;
  color: #8E9090;
}
p.small a {
  color: #8E9090;
}
p:last-child {
  margin-bottom: 0;
}

/*
GLOBAL STYLES
-------------------------------------------- */
html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  position: relative;
  background-color: #EEEEEE;
  -webkit-overflow-scrolling: touch;
}

.wrapper {
  max-width: 860px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* apply a natural box layout model to all elements
*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
 } */
/*
|------------------------------------------------------------
| Help Classes
|------------------------------------------------------------
*/
.display-none {
  display: none;
}

.display-block {
  display: block;
}

.display-inline {
  display: inline;
}

.display-inline-block {
  display: inline-block;
}

.left {
  float: left;
}

.right {
  float: right;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.capitalize {
  text-transform: capitalize;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.fixed {
  position: fixed;
}

/*
|------------------------------------------------------------
| Clearfix
|------------------------------------------------------------
*/
.clearfix {
  zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}
.clearfix:after {
  clear: both;
}

/*
BUTTONS GLOBAL
-------------------------------------------- */
.btn {
  display: inline-block;
  position: relative;
  padding: 10px 90px 10px 0;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 24px;
  color: #1A1A18;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: all 0.3s;
}
.btn:after, .btn:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
}
.btn:after {
  width: 80px;
  height: 1px;
  background-color: #8E9090;
  transform: translateY(50%);
}
.btn:before {
  right: 1px;
  width: 5px;
  height: 5px;
  margin-top: -4px;
  border-bottom: #8E9090 solid 1px;
  border-right: #8E9090 solid 1px;
  transform: rotate(-45deg) translateY(50%);
}
.btn:hover {
  color: #8E9090;
}

/*
= HEADER
------------------------------------------------------------------------------------- */
header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
}
header .header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
}
@media (max-width: 1024px) and (orientation: portrait) {
  header .header-wrapper {
    flex-direction: column;
    gap: 20px;
    padding: 30px 10px;
  }
}
header .header-wrapper .logo {
  display: block;
}
header .header-wrapper .logo img {
  max-width: 177px;
  height: auto;
}
header .header-wrapper .main-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1024px) and (orientation: portrait) {
  header .header-wrapper .main-nav {
    gap: 20px;
  }
}
@media (max-width: 640px) {
  header .header-wrapper .main-nav {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
header .header-wrapper .main-nav li {
  font-size: 18px;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 0.09em;
}
@media (max-width: 1024px) and (orientation: portrait) {
  header .header-wrapper .main-nav li {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  header .header-wrapper .main-nav li {
    font-size: 14px;
    white-space: nowrap;
  }
}
header .header-wrapper .main-nav li a {
  display: inline-block;
  color: #1A1A18;
  transition: color 0.3s;
}
header .header-wrapper .main-nav li a:hover {
  color: rgba(0, 0, 0, 0.7);
}
header .header-wrapper .main-nav li.active a {
  position: relative;
}
header .header-wrapper .main-nav li.active a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}

/*
FOOTER
-------------------------------------------- */
footer {
  background-color: white;
}
footer p {
  color: #4E4E4E;
}
footer p a {
  color: #1A1A18;
  text-decoration: underline;
}
footer .footer-content {
  padding: 60px 30px;
}
footer .footer-content hgroup {
  max-width: 500px;
}
footer .footer-content hgroup h4 {
  margin-bottom: 30px;
}
footer .footer-content hgroup p {
  color: #C3C3C3;
}
footer .footer-content hgroup p a {
  color: #C3C3C3;
}
footer .footer-bottom {
  padding: 22px 30px;
  background-color: #EBEBEB;
}
footer .footer-bottom .footer-bottom-columns {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-end;
}
footer .footer-bottom .footer-bottom-columns .col:first-child {
  flex-basis: 50%;
}
@media (max-width: 1024px) and (orientation: portrait) {
  footer .footer-bottom .footer-bottom-columns .col:first-child {
    flex-basis: 100%;
  }
}
footer .footer-bottom .footer-bottom-columns .col:nth-child(2) {
  flex-basis: 1;
}
@media (max-width: 1024px) and (orientation: portrait) {
  footer .footer-bottom .footer-bottom-columns .col:nth-child(2) {
    flex-basis: 100%;
  }
}
@media (max-width: 1024px) and (orientation: portrait) {
  footer .footer-bottom .footer-bottom-columns {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/*
PAGE CONTENT
-------------------------------------------- */
.hero {
  margin-bottom: 180px;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .hero {
    margin-bottom: 80px;
  }
}
.hero .hero-content {
  padding: 218px 0 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #EEEEEE 100%);
}
@media (max-width: 1024px) and (orientation: portrait) {
  .hero .hero-content {
    padding: 260px 0 0;
  }
}
.hero .hero-content hgroup {
  padding: 0 30px 300px;
  text-align: center;
  background: url(../img/hero-writing.svg) 50% 100% no-repeat;
}
@media (max-width: 640px) {
  .hero .hero-content hgroup {
    background-size: auto 300px;
  }
}
.hero .hero-content hgroup h1 {
  line-height: 80px;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .hero .hero-content hgroup h1 {
    line-height: 50px;
  }
}
.hero figure {
  max-width: 560px;
  margin: -200px auto 0;
  padding: 0 30px;
}
.hero figure img {
  display: block;
  max-width: 100%;
  height: auto;
}

.intro-content {
  margin-bottom: 240px;
  padding: 0 30px;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .intro-content {
    margin-bottom: 80px;
  }
}
.intro-content .intro-content-columns {
  display: flex;
  justify-content: space-between;
  gap: 68px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .intro-content .intro-content-columns {
    display: block;
  }
}
.intro-content .intro-content-columns .col {
  flex: 1;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .intro-content .intro-content-columns .col {
    margin-bottom: 30px;
  }
}
.intro-content .intro-content-columns figure {
  max-width: 237px;
  margin-left: -80px;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .intro-content .intro-content-columns figure {
    display: none;
  }
}
.intro-content .intro-content-columns figure img {
  display: block;
  max-width: 100%;
  height: auto;
}
.intro-content .intro-content-columns.align-bottom {
  align-items: flex-end;
}

.hero-simple {
  padding: 160px 30px 150px;
  margin-bottom: 65px;
  background: linear-gradient(180deg, #FFFFFF 0%, #EEEEEE 100%);
}
@media (max-width: 1024px) and (orientation: portrait) {
  .hero-simple {
    padding: 220px 30px 80px;
    margin-bottom: 40px;
  }
}
.hero-simple hgroup {
  text-align: center;
}
.hero-simple hgroup small {
  display: block;
  font-size: 10px;
  color: #8E9090;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .hero-simple hgroup small {
    margin-bottom: 10px;
  }
}
@media (max-width: 1024px) and (orientation: portrait) {
  .hero-simple hgroup h1 {
    line-height: 45px;
  }
}

.app-download-content {
  padding: 0 30px;
  margin-bottom: 160px;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .app-download-content {
    padding: 60px 30px;
    margin-bottom: 80px;
  }
}
.app-download-content .inner-content-wrapper {
  max-width: 600px;
}
.app-download-content .inner-content-wrapper.space-bottom {
  margin-bottom: 80px;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .app-download-content .inner-content-wrapper.space-bottom {
    margin-bottom: 60px;
  }
}

.app-download-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin: 60px 0;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .app-download-options {
    gap: 20px;
    margin-bottom: 40px;
  }
}
@media (max-width: 640px) {
  .app-download-options {
    display: block;
    max-width: 250px;
  }
}
.app-download-options .app-download-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  padding: 60px 10px;
  background-color: white;
  transition: all 0.3s;
}
@media (max-width: 640px) {
  .app-download-options .app-download-item {
    padding: 30px 10px;
    margin-bottom: 40px;
  }
}
.app-download-options .app-download-item img {
  max-width: 100%;
  height: auto;
}
.app-download-options .app-download-item:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.product-grid-outer {
  padding: 0 30px;
  margin-bottom: 160px;
}
.product-grid-outer .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .product-grid-outer .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .product-grid-outer .product-grid {
    grid-template-columns: 1fr;
  }
}
.product-grid-outer .product-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  min-height: 260px;
  padding-bottom: 10px;
}
.product-grid-outer .product-grid article figure {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  height: 222px;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .product-grid-outer .product-grid article figure {
    margin-bottom: 10px;
  }
}
.product-grid-outer .product-grid article figure img {
  max-height: 100%;
  width: auto;
}
.product-grid-outer .product-grid article hgroup {
  flex: 1;
  position: relative;
  padding: 0 10px;
  text-align: center;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .product-grid-outer .product-grid article hgroup h3 {
    margin-bottom: 10px;
  }
}
.product-grid-outer .product-grid article hgroup p {
  margin-bottom: 10px;
  color: #8E9090;
  line-height: 21px;
  letter-spacing: 0.03em;
}
.product-grid-outer .product-grid article h5 {
  position: relative;
  font-size: 14px;
  color: #1A1A18;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
  text-align: center;
}
.product-grid-outer .product-grid article:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 240px;
  background-color: white;
}

.static-page-outer {
  margin-bottom: 160px;
  padding: 0 30px;
}
.static-page-outer .static-page-content {
  max-width: 653px;
}
.static-page-outer .static-page-content h2 {
  margin-bottom: 40px;
}
.static-page-outer .static-page-content hgroup {
  margin-bottom: 64px;
}
.static-page-outer .static-page-content hgroup:last-child {
  margin-bottom: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 100px;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .feature-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.feature-list li {
  padding-left: 30px;
  border-left: #DD0519 solid 1px;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .feature-list li {
    padding-bottom: 40px;
    padding-left: 0;
    border-left: 0;
    border-bottom: rgba(142, 144, 144, 0.2) solid 1px;
  }
}
.feature-list li h3 {
  font-size: 38px;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .feature-list li h3 {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .feature-list li h3 {
    margin-bottom: 10px;
    font-size: 28px;
  }
}

.product-awards-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  margin-bottom: 100px;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .product-awards-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.product-awards-list li {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px;
  background-color: white;
}
.product-awards-list li hgroup {
  padding-left: 30px;
  border-left: #DD0519 solid 1px;
}
.product-awards-list li hgroup h3 {
  font-size: 38px;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .product-awards-list li hgroup h3 {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .product-awards-list li hgroup h3 {
    margin-bottom: 10px;
    font-size: 28px;
  }
}
.product-awards-list li hgroup p {
  color: #8E9090;
}
.product-awards-list li hgroup p strong {
  font-size: 16px;
  color: #1A1A18;
  font-weight: 600;
}
.product-awards-list li figure {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-awards-list li figure img {
  max-width: 100%;
  height: auto;
}

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