
/* Website CSS by Jonathan Bird: www.jonathanbird.com.au */

*,
body,
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6  {
	font-size: 14px;
	font-family: 'Allura' ,sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

h1,h2,h3,h4 {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-family: 'Allura' ,sans-serif;
  font-weight: 200;
}

h1 {
	font-size: 80px;
  display: block;
  margin-top: 20px;
  text-align: center;
}

h2 {
  display: block;
  margin-top: 100px;
  text-align: center;
  font-size: 55px;
}

h3 {
  font-size: 2em;
  line-height: 1.25em;
  margin-bottom: 30px;
  color: #212121;
}

h4 {
  font-size: 1.5em;
  line-height: 1.25em;
  color: #212121;
  margin-bottom: 10px;
}

a {
  color: rgb(255, 255, 255);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration:none;
  outline: 0!important;
  border: 0;
}

a:hover {
  color: rgb(255, 255, 255);
  text-decoration:none;
}

a[href^=tel]{ 
    color: inherit; 
    text-decoration: none;
}

input{
  font-size: 17px;
  width: 240px;
  font-family: Muli ,sans-serif;
  padding: 10px;
  margin: 5px;
  border: 1px solid #000;
  border-radius:0.3em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#login-error-msg, #error-msg-second-line{
  text-align: center;
  padding: 0px;
  font-size: 13px;
  font-family: Muli ,sans-serif;
  color: red;
  margin: 0px;
  opacity: 0;
}

#login-form-submit{
  background-color: #8bd69f;
}

.clear {
  clear: both;
}

.parallax{
  background-image: url("../img/LR-322.jpg");
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100%;       
}

.lr-logo{
  display: block;
  width: 100px;
  padding-top: 15%;
  margin-left: auto;
  margin-right: auto;
}

#gallery-container{
  display: none;
}

.workflow-item{
  float: left;
  width: 25%;
  text-align: center;
}

.workflow-item img{
  width: 170px;
  cursor: pointer;
}

.workflow-container{
  height: 400px;
}

.workflow-container p{
  font-size: 20px;
  font-family: Muli ,sans-serif;
}

.modal {
  display: none; 
  position: fixed; 
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.9); 
}

.modal-content {
  margin: auto;
  display: block;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

.modal-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  font-family: Muli ,sans-serif;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

