/*==================================
	header

  Päävärit:
  Punainen: #EF4836
  Oranssi: #F9AD3E
  Keltainen: #FDC642
  Musta: #020202

==================================*/

.header {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
}

    .header-overlay {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
    }

    .header-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      -ms-transform: translate(-50%,-50%);
      -webkit-transform: translate(-50%,-50%);
      -moz-transform: translate(-50%,-50%);
      -o-transform: translate(-50%,-50%);
      text-align: center;
      width: 45%;
      color: white;
	    /*text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.44);*/
    }

        .header-text-headline {
          margin-top: 0;
          margin-bottom: 32px;
		      font-weight: bold;
		      /*text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.42);*/
        }

        .header-text-subtext {
			margin-top: 0;
			margin-bottom: 32px;
			line-height: 1.3em;
			text-transform: none;
			font-weight: 400;
        }

        .header-text-button {
          display: inline-block;
			cursor: pointer;
			font-weight: bold;
			margin-top: 16px;
			margin-bottom: 0;
			min-width: 210px;
			text-align: center;
			text-transform: uppercase;
			color: #fff;
			background-color: #005fab;
          transition: 100ms ease-in-out;
		      /*text-shadow:none;*/
        }

        .header-text-button:hover,
        .header-text-button:focus,
        .header-text-button:active {
          color: #fff;
          background-color: #005fab;
        }

/*==== End of header ====*/


/*==================================
	Responsive
==================================*/

@media screen and (max-width: 991px) {
  .header {
    min-height: 480px!important;
    max-height: 480px!important;
  }
  .header-text {
    transform: translate(-50%,-50%)!important;
    -ms-transform: translate(-50%,-50%)!important;
    -webkit-transform: translate(-50%,-50%)!important;
    -moz-transform: translate(-50%,-50%)!important;
    -o-transform: translate(-50%,-50%)!important;
    width: 100%;
    padding: 0 16px;
  }
}

@media screen and (max-width:768px) {

  .header-text-headline {
    font-size: 2.2em!important;
    word-break: break-word;
  }

  .header-text-subtext {
    font-size: 1.4em!important;
  }
}

@media screen and (max-width:548px) {

  .header-text-headline {
		font-size: 2em!important;
	}
}


@media screen and (max-width:425px) {
	
	.header-text-headline {
		font-size: 1.8em!important;
	}

  .header-text-subtext {
    font-size: 1.2em!important;
  }
}


/*==== End of Responsive ====*/
