/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
.header-and-text {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px; }
  @media (max-width: 1100px) {
    .header-and-text {
      padding-left: 40px;
      padding-right: 40px; } }
  @media (max-width: 419px) {
    .header-and-text {
      padding-left: 20px;
      padding-right: 20px; } }
  @media (max-width: 619px) {
    .header-and-text {
      padding-top: 10px;
      padding-bottom: 10px; } }

.header-and-text__wrapper {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 100px; }
  @media (max-width: 1100px) {
    .header-and-text__wrapper {
      padding: 60px; } }
  @media (max-width: 767px) {
    .header-and-text__wrapper {
      padding: 20px; } }
  @media (max-width: 619px) {
    .header-and-text__wrapper {
      padding: 0; } }

.header-and-text__header {
  display: block;
  margin-top: 0;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 24px;
  color: #FF8300;
  text-align: center;
  line-height: 1.5; }

.header-and-text__text {
  display: block;
  font-size: 18px;
  margin-top: 20px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  line-height: 1.54; }
  @media (max-width: 619px) {
    .header-and-text__text {
      padding: 0 20px; } }

.header-and-text__header {
  -webkit-transition: all 600ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 600ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 600ms cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform: translate3d(0, -20px, 0);
  -moz-transform: translate3d(0, -20px, 0);
  -ms-transform: translate3d(0, -20px, 0);
  -o-transform: translate3d(0, -20px, 0);
  transform: translate3d(0, -20px, 0);
  opacity: 0; }
  .js-in-view .header-and-text__header {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; }

.header-and-text__text {
  -webkit-transition: all 800ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 800ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 800ms cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform: translate3d(0, 20px, 0);
  -moz-transform: translate3d(0, 20px, 0);
  -ms-transform: translate3d(0, 20px, 0);
  -o-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
  opacity: 0; }
  .js-in-view .header-and-text__text {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; }
