/*=============== NORMALIZE ===============*/
@import url('normalize.css');
/*=============== BOOTSTRAP GRID ===============*/
@import url('grid.css');

/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  --body-color: rgba(34, 34, 40, 1);
  --border-color: rgba(45, 45, 51, 1);
  --danger-color: rgba(239, 72, 83, 1);
  --footer-color: rgba(255, 255, 255, .7);
  --text-color: rgba(255, 255, 255, 1);

  /*========== Font and typography ==========*/
  --body-font: 'Oswald', sans-serif;
  --second-font: 'Lato', sans-serif;
  --h1-font-size: 0;
  --h2-font-size: 30px;
  --h3-font-size: 22px;
  --normal-font-size: 16px;
  --small-font-size: 16px;
  --smaller-font-size: 12px;

  /*========== Font weight ==========*/
  --font-light: 300;
  --font-regular: 400;
  --font-bold: 700;
}

/* Responsive typography */
@media only screen and (min-width: 768px) {
  :root {
    --h2-font-size: 54px;
    --normal-font-size: 18px;
  }
}

@media only screen and (min-width: 1024px) {
  :root {
    --h1-font-size: 0;
    --h2-font-size: 54px;
    --h3-font-size: 18px;
    --normal-font-size: 16px;
    --small-font-size: 16px;
    --smaller-font-size: 12px;
  }
}

@media only screen and (min-width: 1200px) {
  :root {
    --h3-font-size: 22px;
    --normal-font-size: 18px;
  }
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background: var(--body-color);
  color: var(--text-color);
  letter-spacing: calc(1em / 50);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-light);
  line-height: 72px;
}

ul {
  list-style: none;
}

a {
  position: relative;
  color: var(--text-color);
  font-size: var(--normal-font-size);
  font-weight: var(--font-light);
  text-decoration: none;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -o-transition: all .3s linear;
  -ms-transition: all .3s linear;
  transition: all .3s linear;
}

/*=============== HEADER ===============*/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 15px;
}

.header__logo {
  width: 140px;
}

.header__nav ul,
.header__social ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__nav ul li a {
  padding-right: 20px;
  padding-left: 20px;
  font-size: var(--normal-font-size);
}

.header__nav ul li:first-child a {
  padding-left: 0;
}

.header__nav ul li:last-child a {
  padding-right: 0;
}

.header__social {
  display: none;
  text-transform: uppercase;
}

.header__social ul li a {
  padding-right: 40px;
  padding-left: 40px;
}

.header__social ul li:first-child a {
  padding-left: 0;
}

.header__social ul li:last-child a {
  padding-right: 0;
}

.header__nav a span,
.header__social a span {
  position: relative;
  overflow: hidden;
}

.header__nav a span::before,
.header__social a span::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--text-color);
  border-bottom: 2px solid var(--text-color);
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -o-transition: all .3s linear;
  -ms-transition: all .3s linear;
  transition: all .3s linear;
}

.header__nav a:hover span::before,
.header__social a:hover span::before {
  width: 100%;
}

/*=============== MAIN ===============*/
.coming-soon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 680px;
  padding: 40px 0;
}

.coming-soon__title {
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 30px;
}

.coming-soon__desc {
  font-size: var(--h3-font-size);
  font-weight: var(--font-light);
  line-height: 32px;
  margin: 30px 0;
}

.coming-soon__desc:first-child {
  margin-top: 15px;
}

.coming-soon__desc span {
  background: var(--text-color);
  font-weight: var(--font-regular);
  color: var(--body-color);
  text-transform: uppercase;
  padding-right: 4px;
  padding-left: 4px;
}

.coming-soon__form {
  margin-top: 50px;
}

.coming-soon__form-title {
  font-family: var(--second-font);
  font-size: 14px;
  font-weight: var(--font-bold);
  line-height: 24px;
  text-align: center;
  width: 180px;
  margin: auto;
}

.coming-soon__form-title span {
  display: block;
  font-size: var(--normal-font-size);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.coming-soon__form form {
  display: block;
  padding-top: 50px;
}

.coming-soon__form-group {
  position: relative;
}

.coming-soon__form label,
.coming-soon__form input[type=text] {
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -o-transition: all .3s linear;
  -ms-transition: all .3s linear;
  transition: all .3s linear;
}

.coming-soon__form input[type=text] {
  background: var(--body-color);
  color: var(--text-color);
  border: 1px solid var(--text-color);
  font-family: var(--second-font);
  font-size: var(--small-font-size);
  font-weight: var(--font-regular);
  width: 270px;
  height: 50px;
  margin-bottom: 30px;
  padding: 10px 20px;
  outline: none;
}

.coming-soon__form label {
  position: absolute;
  top: -10px;
  left: 30px;
  background: var(--body-color);
  color: var(--text-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-regular);
  padding: 0 10px;
  z-index: 1;
}

.coming-soon__form .danger-message {
  display: none;
}

.coming-soon__form .danger input[type=text] {
  border: 1px solid var(--danger-color);
}

.coming-soon__form .danger label {
  color: var(--danger-color);
}

.coming-soon__form .danger .danger-message {
  display: block;
  position: absolute;
  top: 47px;
  font-family: var(--second-font);
  font-size: var(--smaller-font-size);
  color: var(--danger-color);
  padding-top: 10px;
}

.coming-soon__form button {
  position: relative;
  height: 50px;
  background: var(--text-color);
  color: var(--body-color);
  font-size: var(--h3-font-size);
  text-transform: uppercase;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  overflow: hidden;
  outline: none;
}

.coming-soon__form button::after,
.coming-soon__form button img,
.coming-soon__form button span {
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -o-transition: all .3s linear;
  -ms-transition: all .3s linear;
  transition: all .3s linear;
}

.coming-soon__form button img {
  position: relative;
  left: -20px;
  opacity: 0;
}

.coming-soon__form button span {
  position: relative;
  left: -15px;
}

.coming-soon__form button::after {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, .2);
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
}

.coming-soon__form input[type=text],
.coming-soon__form button {
  display: block;
  width: 100%;
}

.coming-soon__form-sent {
  display: none;
  color: rgba(139, 139, 152, 1);
  font-family: var(--second-font);
  font-size: var(--small-font-size);
  font-weight: var(--font-regular);
  line-height: 24px;
  text-align: center;
  margin-top: 20px;
}

.coming-soon__form-sent-show {
  display: block;
  animation: showBlock 1s linear forwards;
}

.coming-soon__form-sent-hide {
  display: block;
  animation: hideBlock 1s linear forwards;
}

@keyframes showBlock {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes hideBlock {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.go-trial-us {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 620px;
  padding: 40px 0;
}

.go-trial-us__title {
  line-height: 44px;
  max-width: 880px;
  margin-bottom: 55px;
}

.go-trial-us__title span {
  text-transform: uppercase;
}

.go-trial-us__aside {
  font-size: 18px;
  font-weight: var(--font-regular);
  line-height: 34px;
  text-align: justify;
  margin-bottom: 25px;
}

.go-trial-us__desc {
  font-family: var(--second-font);
  font-size: var(--normal-font-size);
  font-weight: var(--font-regular);
  line-height: 24px;
  text-align: justify;
  margin-bottom: 15px;
}

.go-trial-us__desc:last-child {
  margin-bottom: 0;
}

/*=============== FOOTER ===============*/
.footer {
  color: var(--footer-color);
}

.footer__social {
  text-transform: uppercase;
  margin: 50px 0 20px;
}

.footer__social ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.footer__social ul li a {
  padding-right: 40px;
  padding-left: 40px;
}

.footer__social ul li:first-child a {
  padding-left: 0;
}

.footer__social ul li:last-child a {
  padding-right: 0;
}

.footer__social a span {
  position: relative;
  overflow: hidden;
}

.footer__social a span::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--text-color);
  border-bottom: 2px solid var(--text-color);
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -o-transition: all .3s linear;
  -ms-transition: all .3s linear;
  transition: all .3s linear;
}

.footer__social a:hover span::before {
  width: 100%;
}

.footer__copyright {
  display: block;
  font-family: var(--second-font);
  font-size: var(--smaller-font-size);
  font-weight: var(--font-light);
  line-height: 48px;
  text-align: center;
}


/* Responsive typography */
@media only screen and (min-width: 576px) {
  .coming-soon,
  .go-trial-us {
    padding: 80px 0;
  }

  .coming-soon__desc {
    margin: 50px 0;
  }
}

@media only screen and (min-width: 768px) {
  .header__social {
    display: block;
  }

  .header__brand,
  .header__social {
    width: 220px;
  }

  main {
    min-height: 680px;
    height: calc(100vh - 140px);
  }

  .coming-soon,
  .go-trial-us {
    padding: 150px 0;
  }

  .coming-soon__title {
    padding-bottom: 0;
  }

  .go-trial-us__title {
    line-height: 72px;
  }

  .coming-soon__form-title {
    width: 100%;
    margin: 0;
  }

  .coming-soon__form-title,
  .coming-soon__form-title span {
    font-size: var(--small-font-size);
  }

  .coming-soon__form form {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
  }

  .coming-soon__form input[type=text] {
    width: 270px;
    margin-bottom: 0;
  }

  .coming-soon__form button {
    width: 170px;
    margin-left: 20px;
  }

  .go-trial-us__aside {
    font-size: 22px;
  }

  .footer__social {
    display: none;
  }
}

@media only screen and (min-width: 1024px) {
  main {
    min-height: 620px;
  }
  .container {
    width: 1000px;
  }

  .coming-soon,
  .go-trial-us{
    min-height: 620px;
    padding: 100px 0;
  }

  .coming-soon__desc {
    line-height: 28px;
  }

  .go-trial-us__title {
    padding-bottom: 0;
  }

  .coming-soon__desc {
    margin-bottom: 0;
  }

  .coming-soon__form button:hover::after {
    left: 0;
  }

  .coming-soon__form button:hover img {
    opacity: 1;
    left: 0;
  }

  .coming-soon__form button:hover span {
    left: 10px;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    width: 1200px;
  }
  main {
    min-height: 720px;
  }

  .coming-soon,
  .go-trial-us{
    min-height: 720px;
    padding: 100px 0;
  }

  .coming-soon__desc {
    line-height: 34px;
  }

  .coming-soon__form-title,
  .coming-soon__form-title span {
    font-size: var(--normal-font-size);
  }

  .coming-soon__form button {
    width: 230px;
  }
}
