<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css?family=Roboto:100,400,500,700");
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700&amp;display=swap');

* {
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
}

.app-container {
  font-family: "Roboto", sans-serif;
  margin: auto;
  width: 100%;
}

.open-page {
  background: url(../images/bg_intro_mobile.png) center top no-repeat;
  background-size: contain;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 44px;
}
.img-open {

  width: 90%;
  margin-bottom: 20px;
}
.img-open img {
  width: 90%;
  margin: 0 auto;
  display: block;
}

.info-open {
  width: 100%;
  padding: 0 24px;
  box-sizing: border-box;

}

.info-open img {
  margin: 0 auto;
  display: block;
}

.info-open h3 {
  font-size: 32px;
  line-height: 32px;
  color: #067E5A;
  font-weight: 500;
  margin-top: 18%;
  margin-bottom: 10px;
}

.info-open p {
  color: #808080;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 30px;
}

.info-open b{
  color: #000000;
}

.info-open p.lead {
  color: #067E5A;
  font-size: 20px;
  font-weight: bold;
  line-height: 23px;
  margin-bottom: 10px;
}

.download-button {
  display: flex;
  flex-direction: column;
}

.download-button a {
  display: block;
  background: #067E5A;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-align: right;
  padding: 5px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 40px;

}

.download-button a:after {
  content: "";
  height: 24px;
  width: 24px;
  display: block;
  background: url(../images/arrow_right.svg) no-repeat center;

}



@media screen and (min-width: 375px) {
  .img-open {
    margin-bottom: 25px;
  }

}
@media screen and (min-width: 768px) {
	.open-page {
	  background: url(../images/bg_intro.png) left top no-repeat;
	}
	.img-open {
	  width: 70%;
	  margin: 0;
	}

}
@media screen and (min-width: 1024px) {
  .app-container {
    max-width: 1440px;
  }
  .open-page {
    flex-direction: row;
    padding-top: 60px;
    padding-bottom: 80px;
  }
  
  .img-open {
    width: 46%;
    margin: 0;
  }

  .img-open img {
    max-width: 580px;
    margin-right: 0;
  }

  .info-open {
    width: 50%;
    padding: 0 90px 0 100px;

  }
  .info-open img {
    margin-left: 0;
  }

  

  .info-open h3 {
    color: #fff;
    font-size: 32px;
    line-height: 34px;
    margin-top: 35px;
    margin-bottom: 15px;
  }

  .info-open p {
    color: #fff;
  }

  .info-open p.lead {
    color: #fff;
    margin-bottom: 15px;
  }

  .download-button {
    flex-direction: row;
  }

    .download-button a {
      width: 170px;
      margin-right: 35px;
      justify-content: center;
    }

    .download-button a:after {
      margin-right: -20px;
      margin-left: 5px;
    }

}
</pre></body></html>