@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,700');
@import url('https://fonts.googleapis.com/css?family=Raleway:900');

@charset "UTF-8";


* {
  box-sizing: border-box;
}

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;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

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;
}

/*====================================================
02. Bootstrap fix for WinPhone 8 and IE10
====================================================*/

@-webkit-viewport {
    width: device-width;
}

@-moz-viewport {
    width: device-width;
}

@-ms-viewport {
    width: device-width;
}

@-o-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}

/*====================================================
03. Basic Document Styles
====================================================*/

html, body {
    height: 100%;
}

body {
    position: relative;
    font-size: 16px;
    line-height: 1.4em;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: normal;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    overflow: hidden;
    white-space: normal;
    background-color: #262626;
    position: relative;
    height: 100vh;
    width: 100vw;
}

input,
select {
  position: relative;
  width: 100%;
  background: transparent;
  outline: none;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  float: left;
  -webkit-appearance: none;
  color: inherit;
  border-width: 1px;
  border-style: solid;
  border-color: inherit;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  height: auto;
  padding: 16px 24px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  resize: none;
}

textarea {
  position: relative;
  width: 100%;
  background: transparent;
  outline: none;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  float: left;
  -webkit-appearance: none;
  color: inherit;
  border-width: 1px;
  border-style: solid;
  border-color: inherit;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  padding: 16px 24px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  resize: none;
  height: 140px;
}

/*====================================================
04. Grid
====================================================*/

.container {
  position: relative;
  min-height: 100%;
}

.row {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
}

.row--contact {
  align-items: flex-start;
}

/*====================================================
05. Typography
====================================================*/

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  margin-bottom: 20px;
  line-height: 1.4em;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 20px;
}

a, a > * {
  color: inherit;
  text-decoration: none;
  border-color: inherit;
}

a:hover, a > *:hover, a:focus {
  color: inherit;
  text-decoration: none;
  outline: 0;
}

em {
  font-style: italic;
}

strong {
  font-weight: 700;
}


.title--large {
  font-size: 88px;
  font-family: 'Raleway', serif;
  line-height: 96px;
  font-weight: 900;
}

.title--middle {
  font-size: 24px;
  font-family: 'Raleway', serif;
  line-height: 32px;
  font-weight: 900;
}

.text--large {
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  line-height: 36px;
  font-weight: 400;
  opacity: 0.8;
}

.text--middle {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  opacity: 0.8;
}

/*====================================================
06. Header & Logo
====================================================*/

.header {
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  z-index: 100;
}

.header__logo {
  float: left;
  display: flex;
}

.header__logo-img {
  height: 54px;
  pointer-events: none;
}

/*====================================================
07. Navigation
====================================================*/


.header__nav {
  float: right;
  display: flex;
}

.header__nav-link {
  color: inherit;
  margin: 16px 0 16px 40px;
  position: relative;
  font-size: 16px;
  line-height: 1.4;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  transition: opacity 0.3s ease;
}

.header__nav-link:hover {
  opacity: 0.6;
}

.header__menu
{
  position: relative;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

.header__menu input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}

.header__menu span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #fff;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

.header__menu span:first-child {
  transform-origin: 0% 0%;
}

.header__menu span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

.header__menu input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #fff;
}

.header__menu input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

.header__menu input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

.header__menu input:checked ~ .header__nav {
  transform: translate(0, 0);
}

/*====================================================
08. Countdown
====================================================*/

.countdown {
  background-color: #fff;
  padding: 12px 24px;
  border-radius: 32px;
  color: #000;
  height: 56px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.countdown__preload {
  font-size: 18px;
  display: flex;
  align-items: center;
}

.countdown__time {
  margin: 0 -8px;
  display: flex;
  flex-direction: row;
}

.countdown__time-item,
.countdown__colon {
  display: inline-block;
  padding: 0 4px;
  font-size: 14px;
  font-weight: bold;
  vertical-align: top;
  line-height: 1.4em;
}

.countdown__time .number {
  font-size: 24px;
  display: block;
  text-align: center;
}

.countdown__time .word {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: normal;
  text-align: center;
  line-height: 1.4em;
  margin-top: 2px;
}

/*====================================================
09. Footer
====================================================*/

.footer {
  position: absolute;
  bottom: 40px;
  right: 40px;
  left: 40px;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/*====================================================
10. Socials
====================================================*/

.socials {
  cursor: pointer;
  margin: 0 -15px;
}

.socials--mobile {
  display: none;
}

.socials__list {
  display: flex;
  margin: 0;
  padding: 0;
}

.socials__item {
  display: inline-block;
  padding: 0;
}

.socials__link {
  display: block;
  position: relative;
  width: 50px;
  height: 30px;
  text-align: center;
  font-size: 16px;
  line-height: 1.4em;
  transition: opacity 0.3s ease;
}

.socials__link:hover {
  opacity: 0.6;
}

/*==================================================
11. Forms
==================================================*/
.form {
  display: flex;
  flex-direction: column;
}

.form--subscribe {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.form--contact {
  margin-left: auto;
}

.form__field {
  position: relative;
  width: 100%;
  background: transparent;
  outline: none;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  float: left;
  -webkit-appearance: none;
  color: inherit;
  border-width: 1px;
  border-style: solid;
  border-color: inherit;
  border-radius: 32px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  height: auto;
  padding: 16px 24px;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  resize: none;
}

.form__notice {
  font-size: 16px;
  display: inline-block;
  margin-left: 15px;
  text-align: left;
  margin-top: 10px;
}

.form__field--textarea {
  resize: none;
  height: 140px;
}

.form__field--error {
  border-color: #cc2828;
}

.form__field::-webkit-input-placeholder {
  color: inherit;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
}

.form :-moz-placeholder {
  color: inherit;
  opacity: 1;
}

.form ::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

.form :-ms-input-placeholder {
  color: inherit;
}

:-moz-placeholder {
  color: inherit;
  opacity: 1;
}

::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
}

/*====================================================
12. Sections
====================================================*/

canvas {
  position: absolute;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Group elements */

.group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -8px;
}

.group--home-text {
  margin-top: 40px;
}

.group__item {
  margin: 0 8px;
}

.features {
  display: flex;
  flex-direction: row;
  padding-top: 16px;
}

.features__item {
  padding: 32px 16px;
  margin: 0 16px;
  max-width: 320px;
}

.features__title {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
}

.features__title i.fa {
  font-size: 56px;
  margin: 0 auto 16px;
  display: block;
}

.features__text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  opacity: 1;
}

/* Slider */

.slider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  height: 100%;
}

.slider__item {
  position: absolute;
  top: 50%;
  left: 50%;
  clear: both;
  width: 100vw;
  margin: 0 auto;
  padding: 40px;
  box-sizing: border-box;
  opacity: 0;
  overflow: hidden;
  text-align: center;
  color: inherit;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.slider:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.slide__item--active {
  z-index: 2;
  opacity: 1;
  transition: opacity 2s ease;
}

/* Sections helpers */

.home__info,
.about__info,
.subscribe__info,
.contact__info{
  max-width: 1200px;
}

.home__info {
  text-align: left;
}

.about__info,
.subscribe__info,
.contact__info{
  text-align: center;
}

.home__title,
.about__title,
.subscribe__title {
  margin-bottom: 24px;
}

.contact__title {
  margin-bottom: 64px
}

.home__text,
.about__text,
.subscribe__text,
.contact__text {
  margin-bottom: 48px;
}

.about__text {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.subscribe__email {
  width: auto;
  min-width: 280px;
  margin: 0;
}

.subscribe__email,
.subscribe__submit {
  margin: 0 8px;
}

.contact__content {
  text-align: left;
}

.contact__content,
.contact__form {
  flex: 1 0 50%;
  padding: 0 8px;
}

/* Contact links */
.contact__links {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
}

.contact__link {
  position: relative;
  cursor: pointer;
  text-decoration: underline;
  margin-bottom: 16px;
}

.contact__link i {
  margin-right: 8px;
}

.contact__link:hover {
  opacity: 0.8;
  text-decoration: underline;
}


/* Buttons */
.btn {
  position: relative;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: inherit;
  border-radius: 32px;
  outline: none;
  padding: 16px 24px;
  background: transparent;
  border-width: 1px;
  font-size: 14px;
  line-height: 24px;
  font-weight: bold;
  border-style: solid;
  border-color: inherit;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  overflow: hidden;
}

.btn:focus {
  outline: none;
}

.btn:hover,
.btn--inverse {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #252525;
}

.btn--inverse:hover {
  cursor: pointer;
  -webkit-animation: pulse .2s linear;
  -moz-animation: pulse .2s linear;
  -ms-animation: pulse .2s linear;
  -o-animation: pulse .2s linear;
  animation: pulse .2s linear;
}

/* Preview images text */

.loading-txt {
  text-align: center;
  width: 100%;
  font-size: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.loading-txt.is-hidden {
  display: none;
}


/*====================================================
13. Helpers
====================================================*/

.hide {
  display: none;
}

/*====================================================
14. Responsive
====================================================*/

/* Desktop width >= 1920px */

@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
    margin: 0 auto;
  }

  .home__info,
  .about__info,
  .subscribe__info,
  .contact__info {
    max-width: 1540px;
  }

  .row--home{
    justify-content: flex-start;
  }
}

/* Desktop width < 1199px */

@media (max-width: 1199px) {
  .home__info,
  .about__info,
  .subscribe__info,
  .contact__info{
    max-width: 800px;
  }

  .home__content,
  .subscribe__content{
    max-width: 360px;
  }

  .group__item {
    margin: 8px;
    width: 100%;
  }

  .title--large {
    font-size: 72px;
    line-height: 80px;
  }

  .contact__title {
    margin-bottom: 44px;
  }
}


/* Tablets */
@media(max-width: 991px) {
  .title--large {
    font-size: 64px;
    line-height: 76px;
  }

  .home--left, .about--left, .subscribe--left, .contact--left,
  .home--right, .about--right, .subscribe--right, .contact--right {
    text-align: center;
  }

  .group--home-text {
    justify-content: center;
  }

  .about__content {
    margin-bottom: 40px;
  }

  .home__info,
  .about__info,
  .subscribe__info {
    max-width: 600px;
    text-align: center;
  }

  .home__info,
  .about__info,
  .subscribe__info {
    margin-bottom: 40px;
  }

  .home__content,
  .subscribe__content{
    max-width: 600px;
    text-align: center;
  }

  .about__content {
    max-width: 600px;
    width: auto;
    text-align: center;
  }

  .features {
    flex-direction: column;
    padding-top: 0;
  }

  .features__item {
    padding: 16px 16px 32px 80px;
    max-width: none;
    width: 100%;
    position: relative;
  }

  .features__title {
    text-align: left;
    margin-bottom: 8px;
  }

  .features__text {
    text-align: left;
  }

  .features__title i.fa {
    position: absolute;
    left: 0;
    top: 16px;
    margin: 0;
  }
}


/* Mobiles */
@media(max-width: 767px) {
  .header {
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .header__nav-link {
    margin: 10px;
  }

  .header__logo-img {
    height: 48px;
  }

  .form--subscribe, .form--contact {
    margin: 20px auto 0;
  }

  .header__nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: #262626;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  }

  .footer {
    bottom: 0;
    right: 0;
    left: 0;
    padding: 20px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    pointer-events: none;
  }

  .socials {
    margin: 20px auto 0;
    float: none;
    display: none;
  }

  .socials--mobile {
    display: flex;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    margin: 0;
    flex-direction: row;
    justify-content: center;
  }

  .countdown {
    border-radius: 24px;
    height: 48px;
  }

  .countdown__time-item, .countdown__colon {
    font-size: 8px;
    line-height: 1.2em;
  }

  .countdown__colon {
    font-size: 16px;
  }

  .countdown__time {
    justify-content: space-between;
  }

  .countdown__time .number {
    font-size: 16px;
  }

  .countdown__time .word {
    margin-top: 4px;
  }

  .title--large {
    font-size: 32px;
    line-height: 40px;
  }

  .title--middle {
    font-size: 20px;
  }

  .text--large {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .text--middle {
    font-size: 16px;
  }

  .slider__item {
    padding: 80px 20px;
    height: 100vh;
    overflow-y: scroll;
  }

  .group--home-text {
    margin-top: 12px;
  }

  .btn {
    border-radius: 24px;
    padding: 12px 18px;
    margin: 0;
  }

  .group--home-text .btn {
    margin: 0 8px;
  }

  .home__text {
    margin: 0 auto;
  }

  .about__content {
    margin-bottom: 0;
  }

  .row--home {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .contact__links {
    margin: 0 0 24px;
  }

  .contact__item {
    margin-bottom: 0;
  }

  .contact__content, .contact__form {
    flex: 1 0 100%;
    padding: 0;
  }

  .subscribe__email, .subscribe__submit {
    margin: 0 0 16px;
    width: 100%;
  }
}

/* Mobiles in portrait orientation */
@media only screen
    and (max-width: 767px)
    and (orientation : portrait) {
  .countdown {
    width: 100%;
  }

  .group--home-text {
    flex-direction: column;
  }

  .group--home-text .btn {
    margin: 8px 0;
  }

  .home__info,
  .about__info,
  .subscribe__info {
    margin-bottom: 0;
    width: 100%;
  }

  .home__text {
    max-width: 320px;
  }
}

/* Mobiles in landscape orientation */
@media only screen
    and (max-width: 767px)
    and (orientation : landscape) {
  .home__info {
    text-align: center;
    margin-right: 0;
    margin-bottom: 0;
  }

  .hone__text {
    text-align: center;
    margin: 0 auto;
  }

  .home__content {
    max-width: 420px;
    text-align: left;
  }

  .home__title, .about__title, .subscribe__title {
    margin-bottom: 16px;
  }

  .title--large {
    font-size: 32px;
    line-height: 40px;
  }

  .home__title br,
  .subscribe__title br{
    display: none;
  }

  .group {
    margin-top: 0;
  }

  .group--home-text {
    justify-content: center;
  }

  .group__item {
    margin: 0 8px;
    width: auto;
  }

  .contact__content, .contact__form {
    max-width: 480px;
  }
}

/* Mobiles in landscape orientation */
@media only screen
    and (max-width: 650px)
    and (orientation : landscape) {
  .title--large {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 10px;
  }

  .text--large {
    font-size: 16px;
    line-height: 28px;
  }

  .home__info, .about__info, .subscribe__info {
    margin-bottom: 10px;
  }

  .home__info {
    max-width: none;
    margin: auto;
  }

  .home__content {
    text-align: center;
  }
}

/* iPhone X in landscape orientation styles */
@media only screen
    and (max-height: 412px)
    and (min-width: 812px)
    and (-webkit-device-pixel-ratio : 3)
    and (orientation : landscape) {

  .slider__item {
    padding: 80px 20px;
    height: 100vh;
    overflow-y: scroll;
  }

  .header {
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .header__nav-link {
    margin: 10px;
  }

  .header__logo-img {
    height: 48px;
  }

  .footer {
    bottom: 0;
    right: 0;
    left: 0;
    padding: 20px;
  }

  .btn {
    border-radius: 24px;
    padding: 12px 18px;
    font-size: 12px;
    margin: 0;
  }

  .countdown {
    border-radius: 24px;
    height: 48px;
  }

  .countdown__time-item, .countdown__colon {
    font-size: 8px;
    line-height: 1.2em;
  }

  .countdown__colon {
    font-size: 16px;
  }

  .countdown__time .number {
    font-size: 16px;
  }

  .countdown__time .word {
    margin-top: 4px;
  }

  .home__info {
    text-align: center;
    max-width: none;
    width: 100%;
    margin: 0;
  }

  .home__title br,
  .subscribe__title br{
    display: none;
  }

  .home__title, .about__title, .subscribe__title {
    margin-bottom: 16px;
  }

  .home__text, .about__text, .subscribe__text, .contact__text {
    margin-bottom: 24px;
  }

  .home__content {
    max-width: 420px;
    text-align: left;
  }

  .group {
    margin-top: 0;
  }

  .group__item {
    margin: 0 8px;
    width: auto;
  }

  .group--home-text {
    justify-content: center;
  }

  .title--large {
    font-size: 40px;
    line-height: 56px;
  }

  .title--middle {
    font-size: 20px;
    font-weight: normal;
  }

  .text--large {
    font-size: 18px;
  }

  .text--middle {
    font-size: 16px;
  }

  .home__info,
  .about__info,
  .subscribe__info {
    margin-bottom: 0;
  }
}

/* Pixel 2 XL and similar others in landscape orientation styles */
@media screen
  and (min-device-width: 400px)
  and (max-device-height: 832px)
  and (-webkit-device-pixel-ratio: 3.5)
  and (orientation: landscape) {
  .slider__item {
    padding: 80px 20px;
    height: 100vh;
    overflow-y: scroll;
  }

  .header {
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .header__nav-link {
    margin: 10px;
  }

  .header__logo-img {
    height: 48px;
  }

  .footer {
    bottom: 0;
    right: 0;
    left: 0;
    padding: 20px;
  }

  .btn {
    border-radius: 24px;
    padding: 12px 18px;
    font-size: 12px;
    margin: 0;
  }

  .countdown {
    border-radius: 24px;
    height: 48px;
  }

  .countdown__time-item, .countdown__colon {
    font-size: 8px;
    line-height: 1.2em;
  }

  .countdown__colon {
    font-size: 16px;
  }

  .countdown__time .number {
    font-size: 16px;
  }

  .countdown__time .word {
    margin-top: 4px;
  }

  .home__info {
    text-align: center;
    max-width: none;
    width: 100%;
    margin: 0;
  }

  .home__title br,
  .subscribe__title br{
    display: none;
  }

  .home__title, .about__title, .subscribe__title {
    margin-bottom: 16px;
  }

  .home__text, .about__text, .subscribe__text, .contact__text {
    margin-bottom: 24px;
  }

  .home__content {
    max-width: 420px;
    text-align: left;
  }

  .group {
    margin-top: 0;
  }

  .group__item {
    margin: 0 8px;
    width: auto;
  }

  .group--home-text {
    justify-content: center;
  }

  .title--large {
    font-size: 40px;
    line-height: 56px;
  }

  .title--middle {
    font-size: 20px;
    font-weight: normal;
  }

  .text--large {
    font-size: 18px;
  }

  .text--middle {
    font-size: 16px;
  }

  .home__info,
  .about__info,
  .subscribe__info {
    margin-bottom: 0;
  }
}

/* iPhone 5/SE */
@media (max-width: 320px) {
  .features__item {
    padding: 16px 16px 32px 60px;
  }

  .features__title i.fa {
    top: 20px;
    font-size: 32px;
  }
}

/* All screens instead of mobile */
@media (min-width: 768px) {
  .header__menu input,
  .header__menu span {
    display: none;
  }
}
