@import url('https://fonts.googleapis.com/css?family=Raleway:bold|Roboto+Condensed:400,700');

  /* Responsive page */

* {
  box-sizing: border-box;
}

body {
   margin:40px auto;
   line-height:1.6;
   font-size:18px;
   color: #219ebc;
   font-family: 'Roboto Condensed', serif;
   padding:0 10px
}

h1 {
   line-height:1.2
   font-size:50px;
   font-family: 'Raleway', serif;
   color: #ffb703;
}

h2, h3, h4 {
   line-height:1.2
   font-family: 'Raleway', serif;
   color: #fb8500;
}

p {

}

 /* unvisited link */
a:link {
  color: #023047;
  text-decoration: none
}

/* visited link */
a:visited {
  color: #023047;
  text-decoration: none
}

/* mouse over link */
a:hover {
  color: #8ecae6;
  text-decoration: none
}

A.class1 {color:#219ebc;}
A.class1:link  {text-decoration: none; font-weight: normal; color: #219ebc;}
A.class1:visited {text-decoration: none; font-weight: normal;  color: #219ebc;}
A.class1:hover {text-decoration: underline; font-weight: normal;  color: #219ebc;}
A.class1:active {text-decoration: none; font-weight: normal;  color: #219ebc;}

/* Testimonial Title Formatting */
p.testimonialtitle {
  color: #fb8500;
  font-style: bold;
  font-size: 25px;
} 

/* Testimonial Subtitle Formatting */
p.testimonialsubtitle {
  color: #023047;
  font-style: bold;
  font-size: 22px;
}

/* Testimonial Body Formatting */
p.testimonialbody {
  color: #219ebc;
  font-style: italic;
}

/* Gallery names */
.galleryname {
  color: #fb8500;
  font-family: 'Raleway', serif;
  text-align: left;
  font-size: 18px;
}

hr {
  color: #ffb703;
  display: block;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  margin-left: auto;
  margin-right: auto;
  border-style: inset;
  border-width: 1px;
}


.header {
  background-color: #ffffff;
  color: #ffffff;
  padding: 15px;
}

.main {
  max-width:650px;
  padding: 15px;
  margin: auto;
  border: 0px solid red;
}

.footer {
  text-align: left;
  max-width:650px;
  padding: 15px;
  margin: auto;
}

/* Invisible table for footer */
table {
  width: 100%;
  border: 0px solid red;
} 

/* Table for price list with one line */
table, td, th {  
  border: 0px solid #fff;
  text-align: left;
  vertical-align: top;
}

.linedtable {
  border-collapse: collapse;
  width: 100%;
}

.lined {
  padding: 15px;
  border-bottom: 1px solid #ffb703;
  vertical-align: top;
}

/* Holding tables for galleries */
.galtable {
  width: 100%;
  border: 0px solid red;
}

  /* Header image */
body, html {
  height: 100%;
  margin: 0;
  font-family: 'Raleway', serif;
}

  /* The image used */
.hero-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("headerimage.jpg");
  height: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* Place text in the middle of the image */
.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}


 /* Responsive Horizontal Menu */
 /* Add a black background color to the top navigation */
.topnav {
  background-color: #023047;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #ffffff;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Add an active class to highlight the current page */
.active {
  background-color: #219ebc;
  color: black;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

/* Dropdown container - needed to position the dropdown content */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
  font-size: 17px;
  border: none;
  outline: none;
  color: #ffffff;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #219ebc;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
  float: none;
  color: #ffffff;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a dark background on topnav links and the dropdown button on hover */
.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #8ecae6;
  color: #023047;
}

/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #8ecae6;
  color: #023047;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
  display: block;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
} 

/* PRE-POPULATED TEXT */

/* Business address */
.refaddy:before {
   content: "International House, 64 Nile Street, London, N1 7SR ";
}

/* First half of email address (hello) */
.refemailfirst:before {
   content: "hello";
}

/* Second half of email address */
.refemailsecond:after {
   content: "thecharacterconsultancy.co.uk";
}

/* Telephone number */
.reftel:after {
   content: "On request";
}

/* Copyright info */
.refcopyright:before {
   content: "Web site copyrighted to Hayley Watkins 2019 - 2023. Banner art by Sarprice. ";
}

/* Character No Frills fee */
.ref1:before {
   content: "75 ";
}

/* Character No Frills fee over 5,000 words */
.refextNF:before {
   content: "15 ";
}

/* Infographic fee */
.ref2:before {
   content: "105 ";
}

/* Infographic fee over 5,000 words */
.refextINF:before {
   content: "25 ";
}

/* Narrated Video fee */
.ref3:before {
   content: "360 ";
}

/* Narrated Video fee over 5,000 words */
.refextNV:before {
   content: "50 ";
}

/* Artist find fee */
.ref5:before {
   content: "12 ";
}

/* Per 1,000 No Frills fee */
.ref6:before {
   content: "20 ";
}

/* Per 1 hour consultation fee discount level 1 */
.refconsultlvl1:before {
   content: "25 ";
}

/* Per 1 hour consultation fee discount level 2 */
.refconsultlvl2:before {
   content: "18 ";
}

/* Per 45 mins promotional help consultation fee */
.refconsultlvl3:before {
   content: "18 ";
}

/* Images floating on left (wrapping, with border) */
.textwrapleft {
float: left;
margin: 10px;
border: 2px solid #fb8500;
	}

/* Images floating on right (wrapping, with border) */
.textwrapright {
float: right;
margin: 10px;
border: 2px solid #fb8500;
	}

/* Images floating on left (with border) */
.bordered {
margin: 10px;
border: 2px solid #fb8500;
	}

/* Images floating on left (no border - for circle icons) */
.textwrapleftcircle {
float: left;
margin: 10px;
border: none;
	}

/* Images floating on right (no border - for circle icons) */
.textwraprightcircle {
float: right;
margin: 10px;
border: none;
	}

/* RESPONSIVE GALLERY */

div.gallery {
  border: 0px solid #ccc;
}

div.gallery:hover {
  border: 0px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: left;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}