/* colours

purple for text
dark orange = 204,102,0
*/

* {
    box-sizing: border-box;
}

@font-face {
    font-family: siteFontStandard;
    src: url(fonts/Lato-Regular.ttf);
}

@font-face {
    font-family: siteFine;
    src: url(fonts/Lato-LightItalic.ttf);
}

html {
    scroll-behavior: smooth;
    font-family: siteFontStandard, Arial, sans-serif;
}

body {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background-color: rgb(240,240,240);
}

body a {
  text-decoration: none;
}

body a:hover, section a:hover {
  color: rgb(204,102,0);
}

footer {
    color: white;
    background-color: purple;
}

footer a {
    text-decoration: none;
    color: white;
    padding: 0 5px;
}

input, textarea {
	width: 90%;
  padding: 5px;
  font-family: siteFontStandard, Arial, sans-serif;
  font-size: 100%;
}

input[type=submit] {
  width: 75px;
  background-color: rgb(274, 138, 0);
  color: white;
  padding: 15px;
  font-weight: bold;
  font-size: 14px;
}

input[type=file] {
  width: 90%;
  background-color: rgb(274, 138, 0);
  color: white;
  padding: 15px;
  font-weight: bold;
  font-size: 14px;
}

input[type=submit]:hover {
  background-color: grey;
}

input[type=file]:hover {
  background-color: grey;
}

input[type=checkbox] {
  width:12px;
  height: 12px;
}

input[type=checkbox]:before {
  content: "";
  display: inline-block;
  width:12px;
  height: 12px;
  background: white;
}

input[type=checkbox]:checked:before {
  background: rgb(274, 138, 0);

}

.images p {
  color:white;
}

.contactform label{
	font-weight: bold;
}

.banner {
  width: 100%;
  float: left;
  display: flex;
  overflow: hidden;
  text-align: center;
  color: white;
  position: relative;
  object-fit: cover;
}

.half {
  width: 50%;
  float: left;
  display: flex;
  overflow: hidden;
  text-align: center;
  color: white;
  position: relative;
}

.mainarea {
  width: 80%;
  margin: 0 auto;
}

.halfarea {
  width: 50%;
  float: left;
  display: flex;
  text-align: left;
  color: white;
  position: relative;
}

.third {
  width: 33.3%;
  float: left;
  display: flex;
  overflow: hidden;
  text-align: center;
  color: white;
  position: relative;
}

.half img, .third img, .banner img{
  /* margin-left: -50%; */
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.half img:hover, .third img:hover {
  filter: brightness(50%);
}

.large {
  height: 100%;
}

.small {
  height: 50%;
}

.bannersmall {
  height: 30%;
}

.verysmall {
  height: 20%;
}

.smaller {
  height: 40%;
}

.smalltext {
 font-size: 0.8em;
}

.small-logo {
  width: 100%;
  float: left;
  display: flex;
  overflow: hidden;
  text-align: center;
  color: white;
  position: relative;
}

.touch {
  background-color: rgb(72, 72, 72);
  color: white;
  text-align: center;
  height: 600px;
}

.touch h1{
  font-size: 2em;
}

.contacthalf {
  width: 40%;
  float: left;
  background-color: rgb(72, 72, 72);
  color: white;
  font-size: 1.2em;
  text-align: center;
  margin: 0 auto;
}

.privacy {
  background-color: rgb(274, 138, 0);
  color: black;
  text-align: left;
  margin-bottom: 40px;
  margin-top: 40px;
  margin-left:50px;
  padding-left: 10px;
  padding-top: 0;
  font-size: 1em;
}

.privacy h1{
  font-size: 1.7em;
  color: white;
  padding-left: 20px;
  padding-top: 0;
  margin-top: 0;
}

.privacyhalf {
  width: 50%;
  float: left;
  padding: 10px;
}

.slavery {
  background-color: rgb(274, 138, 0);
  color: black;
  text-align: left;
  font-size: 0.8em;
  margin-bottom: 40px;
}

.slavery h1{
  font-size: 1.5em;
  color: white;
}

.slavery h2{
  font-size: 1.1em;
  color: white;
  text-align: right;
  padding-right: 30px;
}

.cookie {
  background-color: rgb(274, 138, 0);
  color: black;
  text-align: left;
  font-size: 0.8em;
  margin-bottom: 40px;
}

.cookie h1{
  font-size: 1.5em;
  color: white;
}

.cookie h2{
  font-size: 1.1em;
  color: white;
  text-align: right;
  padding-right: 30px;
}

.left {
  margin-left: 50px;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size:2em;
}

.bannerleft {
  position: absolute;
  top: 50%;
  left: 10%;
  font-size:2.5em;
}

.main {
  width: 80%;
  float: left;
  background-color: rgb(72, 72, 72);
  text-align: left;
  font-size: 1em;
}

.quotebar {
  text-align: center;
  font-size: 1.6em;
  color: white;
  background-image:linear-gradient(to right,rgb(204, 102, 0),purple);
  padding: 10px;
}

.quote {
  font-size: 1.8em;
  text-align: center;
  font-family: siteFine, Arial, sans-serif;
}

.topbar {
  display: none;
}

.sidebar {
  width: 20%;
  min-width: 150px;
  float: left;
  text-align:left;
  padding-left: 10px;
  display: block;
}

.sidebar p {
  color: purple;
}

.sidebar img {
  padding-top: 30px;
  padding-bottom: 20px;
  padding-left: 5px;
  padding-right: 20px;
  max-width: 100%;
  height: auto;
}

.sidebar a, .sidebar button, .dropdown .dropbtn {
  font-size:1.3em;
  color: rgb(204, 102, 0);
  text-decoration: none;
  padding: 10px, 5px, 10px, 0px;
  cursor: pointer;
  border: none;
  outline: none;
  margin: 0;
  width: 100%;
  text-align: left;
}

button {
    padding-left: 0;
}

.clear{
    clear: both;
}

.dropdown-content {
  display: block;
}

.dropdown-content a{
  display: block;
  font-size:1em;
  padding: 3px 0px;
}

.sidebar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
  color:white;
  background-color: purple;
}

.nohover:hover {
  background-color: rgb(240, 240, 240)!important;
}

.hide {
  display: none;
}

.jobs {
  background-image:linear-gradient(to right,rgb(204, 102, 0),purple);
  font-size:0.9em;
  color: white;
  text-align: center;
}

.staff {
  background-image:linear-gradient(to right,rgb(204, 102, 0),purple);
  font-size:0.9em;
  color: white;
  text-align: center;
}

.staff img{
  max-width: 150px;
  height: auto;
}

/* has to go below dropdown-content */
.show {
  display:block;
}

.flash img:hover {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}

.zoom {
  transition: transform .2s;
}

.contactform label, p {
  color:white;
}

.zoom:hover {
  transform: scale(1.5);
}

.advert {
  background-color:white;
  color:black;
  font-size: 0.8em;
}

.monthjan, .monthfeb, .monthmar, .monthapr, .monthmay, .monthjun, .monthjul, .monthaug, .monthsep, .monthoct, .monthnov, .monthdec {
  display: none;
}

.w3-button p {
  color:black;
}

.proffimage {
  width: 100%;
}

@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}

@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}

.rotateimg180 {
  -webkit-transform:rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.smallonly {
  display: none;
}

.largeonly {
  display: block;
}

@media only screen and (min-width: 950px) {

  .bannerleft {
    font-size:3.5em;
  }

  .jobs, .staff {
    font-size:2em;
  }

  .contacthalf {
    font-size:1.2em;
  }

}


@media only screen and (max-width: 900px) {

  .contacthalf {
    width: 100%;
  }

  .left {
    margin-left: 0;
  }

  .cookie {
    margin-bottom: 0;
  }

  .slavery {
    margin-bottom: 0;
  }

  .privacy {
    margin-bottom: 0;
    margin-left: 0;
  }

  .privacyhalf  {
    width: 100%;
  }

  .halfarea, {
    width: 100%;
    /* float: left;
    display: flex;
    text-align: left;
    color: white;
    position: relative; */
  }

  .sidebar a, .sidebar button, .dropdown .dropbtn {
    font-size: 1.1em;
  }

  .dropdown-content a{
    display: block;
    font-size: 0.9em;
  }
/*
  .proffimage {
    width: 100px;
  } */

}

@media only screen and (max-width: 800px) {

  .smallonly {
    display: block;
  }

  .largeonly {
    display: none;
  }

  .sidebar {
    display: none;
  }

  .topbar {
    display: block;
  }

  .main {
    width: 100%;
  }

  .cookie {
    margin-bottom: 0;
    font-size: 0.8em;
  }

  .slavery {
    margin-bottom: 0;
    font-size: 0.8em;
  }

  .privacy {
    margin-bottom: 0;
    font-size: 0.8em;
  }

  .sidebar a, .sidebar button, .dropdown .dropbtn {
    font-size: 1em;
    color: rgb(204, 102, 0);
    text-decoration: none;
    padding: 10px, 5px, 10px, 0px;
    cursor: pointer;
    border: none;
    outline: none;
  }

  .dropdown-content a{
    display: block;
    font-size: 0.8em;
  }

  .centered {
    font-size: 1.5em;
  }



}
