/*
Project: 16-17_3.4 Film
Author: Huw Jones, adapted from template by Richy Thomas
Date: 20/07/17
Colour Palletee: Dark Blue: rgb(6,9,69), light blue: rgb(121, 165, 234)
*/


/* Google Fonts */

@import url('https://fonts.googleapis.com/css?family=Montserrat:200,300,400,600|Roboto+Slab:400,700|Roboto:300,400,500');


/* Structure */

body {
  background-color: #F5F5F5;
  background-image: url("https://www.transparenttextures.com/patterns/subtle-grunge.png");
  font-family: 'Roboto', sans-serif;
}

section {
  display: none;
}

#section-1 {
  display: block;
}


/* Typography */

h1, h2, h3, h4, h5 ,h6 {
  margin: 10px 0 20px;
  font-family: 'Roboto Slab', serif;
}

h1 {
  font-size: 2em;
}

p.lead {
  color: rgb(6,9,69);
  font-weight:500;
  font-size: 1.4em;
  line-height: 1.6em;
}

p, ol li, ul li {
  font-size: 1.2em;
  line-height: 1.5em;
}

a, a:visited {
  color: rgb(121, 165, 234);
  font-weight:700;
  text-decoration: underline;
}

a:hover {
  color: rgb(6,9,69);
  text-decoration: none;
}


/* Re-Usable Stuff */

.img-center {
  margin-left: auto;
  margin-right: auto;
}

.no-margin-bottom {
  margin-bottom: 0;
}


.btn-lg{
  margin-top:30px;
}

.embed-responsive{
  margin-top:30px;
}

/* Header */

#header {
  background: rgb(6,9,69);
  background-image:url("../images/little-knobs.png");
  color: rgba(255,255,255,1);
  padding: 3em 0 10em;
  width: 100%;
}

#company-branding {
  margin-top: 50px;
  text-align: center;
}

#company-branding img {
  margin-right: 15px;
}

#company-branding img:last-child {
  margin-right: 0;
}

#print-branding {
  display: none;
}

#title {
  text-align: center;
  width: 100%;
  text-align: center;
}

#title h1 {
  color: #EEEEEE;
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  padding: 0;
  text-shadow: 0 0 30px rgb(0,1,85);
  font-family: "Montserrat";
}

#title h3 {
  color: #EEEEEE;
  font-size: 20px;
  font-weight: 200;
  letter-spacing: 2px;
  line-height: 1;
  margin: 0;
  padding: 0;
  text-shadow: 0 0 30px rgb(0,1,85);
  font-family: "Montserrat";
}


/* Main Content */

.content {
  background: rgba(255,255,255,1);
  border-radius: 0;
  box-shadow: 0 0 1px 0 rgba(0,0,0,.14);
  padding: 50px 0;
  position: relative;
}

/* Placeholder text */
[contenteditable=true]:empty:before {
	color:#bbb;
	content: attr(placeholder);
	display: block; /* For Firefox */
}

.text-entry {
  background: #FFF;
  border-radius: 4px;
  border: 1px solid #CCC;
  font-size: 16px;
  min-height: 100px;
  padding: 10px;
}

.img-responsive{
  margin-bottom:20px;
}

/* Activity Instructions */

.activity-instructions {
  text-align: center;
}

.activity-instructions hr {
  border-color: rgb(204,204,204);
  margin: 30px auto;
  width: 40%;
}


/* Activity Controls */

.activity-controls {
  margin-top: 30px;
}

.btn-default {
  background-color: rgb(6,9,69);
  border-color: rgb(6,9,69);
  box-shadow: none;
  -webkit-box-shadow: none;
  color: rgb(255,255,255);
}

.btn-default:hover, .btn-default.focus, .btn-default:focus, .btn-default.active, .btn-default:active, .btn-default:active:hover {
  background-color: rgb(255,255,255);
  background-image: none;
  border-color: rgb(6,9,69);
  color: rgb(6,9,69);
  outline: 0;
}

.btn-info {
  background-color: rgb(121, 165, 234);
  border-color:rgb(121, 165, 234);
  box-shadow: none;
  -webkit-box-shadow: none;
  color: rgb(255,255,255);
}

.btn-info:hover, .btn-info.focus, .btn-info:focus, .btn-info.active, .btn-info:active, .btn-info:active:hover {
  background-color: rgb(255,255,255);
  background-image: none;
  border-color: rgb(121, 165, 234);
  color: rgb(121, 165, 234);
  outline: 0;
}


/* Modals */

.modal-header {
  background-color: rgb(121, 165, 234);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px 6px 0 0;
  color: rgb(255,255,255);
}

.modal-title {
   color: rgb(255,255,255);
}

.close {
  color: rgb(255,255,255);
  font-size: 35px;
  margin: 0;
  opacity: .6;
  text-shadow: none;
}

.close:hover {
  color: rgb(255,255,255);
  opacity: .9;
}

.modal-content {
  border-radius: 8px;
}


/* Alerts */

.alert {
  font-weight: 500;
  font-size: 16px;
}

.alert-danger {
  border: 1px solid rgb(169,68,66);
}

.alert-success {
  border: 1px solid rgb(60,118,61);
}

.alert-info {
  border: 1px solid rgb(49,112,143);
}

.alert-warning {
  border: 1px solid rgb(138,109,59);
}

.alert-top {
  margin-top: 20px;
}

.alert-bottom {
  margin-bottom: 0;
}


/* Hints Well */

.hint {
  margin-top: 30px;
}


/* Footer */

#footer {
  margin: 20px 0;
}


/* Tablet */
@media(min-width: 768px){

  #company-branding {
    margin-top: 0;
    text-align: right;
  }

  #title {
    text-align: left;
  }

  #activity-content {
    margin-top: -100px;
  }

  .content {
    border-radius: 5px;
    padding: 50px;
  }

}


/* Desktop */
@media(min-width:992px){

  #title {
    text-align: center;
  }

}


/* Large Desktop */
@media(min-width:1200px){


}


/* Print */
@media print {


  #plasm, #plasm-container {
    display: none;
  }

  #header {
    position: relative;
  }

  #company-branding {
    margin-top: 30px;
  }

  #digital-branding {
    display: none;
  }

  #print-branding {
    display: inline-block;
  }

  .content {
    padding: 0;
    margin: 0;
  }

  .btn {
    display: none;
  }

  #footer {
    text-align: center;
  }

}


/* Animations */

.animate-1 {
  animation-duration: 1s;
  animation-delay: 0s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 0s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 0s;
}

.animate-2 {
  animation-duration: 1s;
  animation-delay: 0.2s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
}

.animate-3 {
  animation-duration: 1s;
  animation-delay: 0.3s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 0.3s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay:0.3s;
}

.animate-4 {
  animation-duration: 1s;
  animation-delay: 0.5s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 0.5s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 0.5s;
}

.animate-5 {
  animation-duration: 1s;
  animation-delay: 0.8s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 0.8s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 0.8s;
}

.animate-6 {
  animation-duration: 1s;
  animation-delay: 1s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 1s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1s;
}

.animate-7 {
  animation-duration: 1s;
  animation-delay: 1.1s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 1.1s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1.1s;
}

.animate-8 {
  animation-duration: 1s;
  animation-delay: 1.2s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 1.2s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1.2s;
}

.animate-9 {
  animation-duration: 1s;
  animation-delay: 1.3s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 1.3s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1.3s;
}

.animate-10 {
  animation-duration: 1s;
  animation-delay: 1.4s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 1.4s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1.4s;
}

.animate-11 {
  animation-duration: 1s;
  animation-delay: 1.5s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 1.5s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1.5s;
}

.animate-12 {
  animation-duration: 1s;
  animation-delay: 1.6s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 1.6s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1.6s;
}

.animate-13 {
  animation-duration: 1s;
  animation-delay: 1.8s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 1.8s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1.8s;
}

.animate-14 {
  animation-duration: 1s;
  animation-delay: 2s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 2s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 2s;
}

.animate-15 {
  animation-duration: 1s;
  animation-delay: 2.2s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 2.2s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 2.2s;
}