/* 
Jowett.net template
Following global variables not used as not supported by IE9 and Edge 14
:root {
  --colour-1: #000000; 11 black, used for text 
   --colour-2: #004949; 1 grey,  
   --colour-3: #009292; 1 light grey, do not use same as 7  
   --colour-4: #ff6db6; 5 pink, used for borders and messages as error, vehicle name  
   --colour-5: #ffb677; 4 light pink,  error in field accompanied by 4 border changed to #ffe6ce
   --colour-6: #490092; 16 deep purple,   used for URL and button hover toggle also background toggle 15 to 14, vehicle header
   --colour-7: #006ddb; 1 deep blue,  used for container backgrounds= blue shades, all text on backgrounds must have white background 
   --colour-8: #b66dff; 4 purple,  warning message and for form box error
   --colour-9: #6db6ff; 11 blue,   used for container backgrounds= blue shades, all text on backgrounds must have white background
   --colour-10: #b6dbff; 11 light blue,  used for container backgrounds= blue shades, all text on backgrounds must have white background
   --colour-11: #920000; 12 brown,   used for URL and button hover toggle also background toggle 15 to 14
   --colour-12: #924900; 6 light brown,  used for border bottom 
   --colour-13: #dbd100; 0 orange,   do not use same as 4
   --colour-14: #24ff24; 6 green, used for borders and messages as oK,  used for URL and button hover toggle background
   --colour-15: #ffff6d; 4 yellow,  field OK accompanied by 14 border,  used for URL and button hover toggle background
   --colour-16: #ffffff; 34 White,  used for all message backgrounds, text on  7 can be used for instance in footer  
}
1,6,11 use for text
2,7,12 use for change of text
4,9,14 use for highlight under text 1,6,11
8,9,10,16 used for background of containers, 10 used for majority
5 = enter or invalid or required, 
4= entered and valid, hover button or URL
14 = valid border, active button or URL 
8= Invalid border, visited button or URL
*/
.rcolor {
    background: #ff6db6;
}
.lrcolor {
    background: #ffe6ce;
}
.gcolor {
    background: #24ff24;
}
.bcolor {
    background: #6db6ff;
}

.error {
	color: #ff6db6;
	background-color: #ffffff;
	font-weight: bold;
	font-size: 1em;
}
.sep {
	color: #24ff24;
	background-color: #000000;
	font-weight: bold;
	font-size: 1em;
}
.warn {
	color: #b66dff;
	background-color: #000000;
	font-weight: bold;
	font-size: 1em;
}

a {
  background-color: #ffe6ce;
  color: #006ddb;
  /*padding: .02em .02em ;*/
  text-decoration: none;
  
}
a:hover {
  background-color: #ffff6d;
}
a:active {
  background-color: #24ff24;
}
/*a:visited {
  background-color: #b6dbff;
}*/
input:invalid {
  background-color: #ffe6ce;
  border-width: 5px;
}
input:valid {
  background-color: #ffff6d;
}

input:required:valid {
  border-color: #924900;
  
}

input:required:invalid {
  border-color: #ff6db6;
  border-width: 3px;
}
.button, button, input[type=button], input[type=submit], input[type=reset] {
  padding: 15px 25px;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  outline: none;
  /*color: #fff;*/
  background-color: #ffe6ce ;
  border: none;
  border-radius: 15px;
  /*box-shadow: 0 9px #999;*/
}

.button:hover, button:hover, input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
	background-color: #ffff6d;
	color: #490092;
}

.button:active, button:active, input[type=button]:active, input[type=submit]:active, input[type=reset]:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}
form:valid {
  border: 5px solid #24ff24;
}
form:invalid {
  border: 5px solid #b66dff;
}
h1 {
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: left;
    font: normal normal normal 34px/60px 'Century Gothic', sans-serif;
    color: #000000;
}
h3 {
	border-bottom-color: #6db6ff;
	color: #490092;
}
hr {
    border: none;
    border-top: 3px double #000000;
    color:#000000;
    overflow: visible;
    text-align: center;
    height: 5px;
}
h4 {
  overflow: hidden;
  text-align: center;
}

h4:before,
h4:after {
  background-color: #000000;
  content: "";
  display: inline-block;
  height: 1px;
  position: relative;
  vertical-align: middle;
  width: 50%;
}

h4:before {
  right: 0.5em;
  margin-left: -50%;
}

h4:after {
  left: 0.5em;
  margin-right: -50%;
}

body {
    font-family: 'Century Gothic', sans-serif;
}
.container_wapper {
    width: 100%;
    background: #ffffff;
}



.double {
  zoom: 2;
  transform: scale(2);
  -ms-transform: scale(2);
  -webkit-transform: scale(2);
  -o-transform: scale(2);
  -moz-transform: scale(2);
  transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
}
.container-fluid {
    max-width: 1600px;
}
.container-flexr-list {
  display: flex;
  flex-flow: row wrap;
  background-color: #b6dbff;
    padding: 5%;
}
.container-flexr-line {
  display: flex;
  flex-flow: row wrap;
    justify-content: space-between;
  background-color: #b6dbff;
    border-top: 4px solid #000000;
     border-left: 10px solid #ffffff;
   border-right: 10px solid #ffffff;
  border-bottom: 4px solid #ffffff;
}
.container-flexr-line > div {
  background-color: #ffff6d;
  margin: 2px;
  text-align: center;
}
.container-flexr-add {
  display: flex;
  flex-flow: row wrap;
    justify-content: space-between;
  background-color: #b6dbff;
     border-left: 10px solid #ffffff;
   border-right: 10px solid #ffffff;
  border-bottom: 4px solid #ffffff;
}
.container-flexr-add > div {
  background-color: #ffff6d;
  margin: 2px;
  text-align: center;
   border-left: 10px solid #ffffff;
}
.container-flexr-header {
  display: flex;
  flex-flow: row wrap;
    justify-content: space-between;
  background-color: #6db6ff;
}
.container-flexr-header > div {
  background-color: #ffff6d;
  margin: 10px;
  text-align: center;
}
.container-flexr-vehicle {
  display: flex;
  flex-flow: row wrap;
    justify-content: space-between;
  background-color: #ff6db6;
     border-left: 10px solid #ffffff;
   border-right: 10px solid #ffffff;
  border-bottom: 4px solid #924900;
}
.container-flexr-vehicle > div {
  background-color: #ffff6d;
  margin: 2px;
  text-align: center;
}
.container-flexr-vehicle-name {
  display: flex;
  flex-flow: row wrap;
    justify-content: space-between;
  background-color: #ff6db6;
     border-left: 10px solid #ffffff;
   border-right: 10px solid #ffffff;
  border-bottom: 4px solid #ffffff;
}
.container-flexr-vehicle-head {
  display: flex;
  flex-flow: row wrap;
    justify-content: space-between;
  background-color: #490092;
     border-left: 10px solid #ffffff;
   border-right: 10px solid #ffffff;
  border-bottom: 4px solid #ffffff;
}
.container-flexr-vehicle-head > div {
  background-color: #b66dff;
  margin: 2px;
  text-align: center;
}
.label {
    text-align: right;
    font-weight: bold;
    width: 100px;
    color: #000000;
    font-family: "Roboto";
      display: block;
  margin: 1px;  
  padding: 1px;
}
.field {
    width: 99%;
  margin: 1px;
  padding: 1px;
}
.slimField {
    width: 80px;
    margin: 1px;
  padding: 1px;
}
.wideField {
    width: 200px;
    margin: 1px;
  padding: 1px;
}




#address {
border: 1px solid #000090;
background-color: #b6dbff;
width: 480px;
padding-right: 2px;
}
#address td {
font-size: 10pt;
}
#locationField, #controls {
position: relative;
width: 480px;
height: 20px;
margin-bottom: 2px
}
#autocomplete {
position: absolute;
top: 0px;
left: 0px;
width: 99%;
}
#checkboxID
{
  width:50px; height:50px;
}
#checkboxID:required:invalid + label 
{
  color: #490092;
  background: #ffffff;
  
}
#checkboxID:required:valid + label
{
  color: #24ff24;
  background: #920000;
}

/*menu*/
.templatemo_logo a:hover {
	text-decoration: none;
}
#templatemo_mobile_menu {
    top: 0;
    width: 250px;
    height: 100%;
    background: #ffffff;
    position: fixed;
    z-index: 5500;
    right: -1500px;
    display: none;
    overflow: auto;
}
#templatemo_mobile_menu ul li a {
    text-align: left;
    background: #920000;
    color: #ffffff;
}
#templatemo_mobile_menu ul li:hover a {
    background:#924900;
	color: #ffffff;
}
#templatemo_banner_menu {
    width: 100%;
    background: #ffffff;
    height: 47px;
    border-bottom: 1px solid #924900;
    position: fixed;
    top: 0;
    z-index: 5000;
}
#templatemo_banner_menu #logo_img {
    max-height: 45px;
     
}
#templatemo_banner_menu #logo_text {
    font: normal normal normal 36px/1em 'Century Gothic', sans-serif;
    margin-top: 5px;
    padding-left: 5px;
    text-align: center; 
    color: #920000;
}
#templatemo_banner_menu #logo_text span {
    color: #490092;
}
#templatemo_banner_menu ul li a ,
#templatemo_banner_menu ul li a:focus {
    padding-top: 20px;
    padding-bottom: 4px;
    font: normal normal normal 15px/20px 'Century Gothic', sans-serif;
    color: #000;
    background: repeat-x url("/services/mimages/cssimage/jowettscript-h.jpg") 0 -45px                                ;
    transition-duration: .5s;
}
#templatemo_banner_menu ul li a:hover ,
#templatemo_banner_menu ul li a.current
{
    background-position: 0 0px ;
    background-color: #924900;
    color: #ffffff;
}
#templatemo_banner_menu #mobile_menu {
    padding-top: 5px;
    font-size: 30px;
    float: right;
    color: #920000;
}
/*banner slide*/
.banner { 
    width: 100%;
    height: 500px;
    margin-top: 4px;
    position: relative; 
    overflow: hidden;
}
.banner ul { 
    list-style: none; 
    padding: 0;
}
.banner ul li { 
    float: left; 
    background-size:50px 50px;
    height:500px;
    width: 100%;
}
.banner div.slide_caption {
	background: rgba(0, 0, 0, 0.0);
    max-width: 600px;
	align-items: flex-start;
    margin: 5px auto auto auto;
}
.banner div.slide_caption h1 ,
.banner div.slide_caption p {
	background: none;
	text-align: center;
	color: #490092;
	line-height: 1em;
	text-shadow: 1px 1px #ffffff;
	}
.banner div.slide_caption a {
	color: #490092;
}
.banner div.slide_caption h1 {
    font-size: 40px;
    margin: 0;
}
.banner div.slide_caption p {
    font-size: 30px;
	font-weight: 900;
}
.templatemo_banner_slide_01 {
    background: url('/services/mimages/banner/PeriodDress1913Tiller.jpg');
    background-size: cover;
}
.templatemo_banner_slide_02 {
    background: url('/services/mimages/banner/20140913_073330.jpg');
    background-size: cover;
}
.templatemo_banner_slide_03 {
    background: url('/services/mimages/banner/20140913_081652.jpg');
    background-size: cover;
}
/*about our organization*/
#templatemo_about    {
    background: #ffffff;
    float: left;
}
#templatemo_about-h   {
    background: #ffffff;
    float: left;
}
#templatemo_about .about_icon img {
    width: 100%;
}
#templatemo_about .about_icon h2 {
    text-align: center;
    font: normal normal normal 20px/25px 'Century Gothic', sans-serif;
}
#templatemo_about .about_icon .imgwap {
    text-align: center;
    border-radius: 75px;
}
#templatemo_about .about_icon p {
    text-align: center;
    font: normal normal normal 14px/23px 'Century Gothic', sans-serif;
}
#templatemo_about .mission {
    background-color: #920000;
    color: #dbd100;
}
#templatemo_about .product {
    background-color: #920000;
    color: #004949;
}
#templatemo_about .testimonial {
    background-color: #dbd100;
    color: #920000
}
#templatemo_about .statistic {
    background-color: #004949;
    color: #dbd100;
}
#templatemo_about #testimonial_text_wap {
    overflow: hidden;
}
#templatemo_about #testimonial_text_wap h2 {
    font-size: 24px;
    margin: 0;
    padding: 12px 0;
}
#templatemo_about #testimonial_text_wap h3 {
    font-size: 20px;
    margin: 0;
    padding: 12px 0;
}
#templatemo_about #testimonial_text_wap img {
    margin-bottom: 20px ;
}
#templatemo_about #testimonial_text_wap p {
    font-size: 14px;
    line-height: 2em;
}
#templatemo_about .testimonial_text {
    width: 100%;
    float: left;
}
#templatemo_about .pre_next {
    font-size: 70px;
    top: 50%;
    margin-top: -35px;
    position: absolute;
}
#templatemo_about .pre_next a {
    color: #490092;
    float: left;
}
#templatemo_about .pre_next a:hover {
    color:#000000;
}
#templatemo_about #testimonial_text_wap h1 {
    font-size: 70px;
    top: 50%;
    margin-top: -35px;
}
#templatemo_about .testimonial_top_bottom_spacer {
    padding-bottom: 80px;
}

/*services*/
#templatemo_services  {
    background: #ffffff;
    float: left;
}
#templatemo_services .services_icon img {
    width: 100%;
}
#templatemo_services .services_icon h2 {
    text-align: center;
    font: normal normal normal 20px/25px 'Century Gothic', sans-serif;
}
#templatemo_services .services_icon .imgwap {
    text-align: center;
    border-radius: 75px;
}
#templatemo_services .services_icon p {
    text-align: center;
    font: normal normal normal 14px/23px 'Century Gothic', sans-serif;
}
#templatemo_services .mission {
    background-color: #920000;
    color: #dbd100;
}
#templatemo_services .product {
    background-color: #dbd100;
    color: #004949;
}
#templatemo_services .testimonial {
    background-color: #dbd100;
    color: #920000;
}
#templatemo_services .statistic {
    background-color: #004949;
    color: #dbd100;
}
#templatemo_services #testimonial_text_wap {
    overflow: hidden;
}
#templatemo_services #testimonial_text_wap h2 {
    font-size: 24px;
    margin: 0;
    padding: 12px 0;
}
#templatemo_services #testimonial_text_wap h3 {
    font-size: 20px;
    margin: 0;
    padding: 12px 0;
}
#templatemo_services #testimonial_text_wap img {
    margin-bottom: 20px ;
}
#templatemo_services #testimonial_text_wap p {
    font-size: 14px;
    line-height: 2em;
}
#templatemo_services .testimonial_text {
    width: 100%;
    float: left;
}
#templatemo_services .pre_next {
    font-size: 70px;
    top: 50%;
    margin-top: -35px;
    position: absolute;
}
#templatemo_services .pre_next a {
    color: #6698b5;
    float: left;
}
#templatemo_services .pre_next a:hover {
    color: #000000;
}
#templatemo_services #testimonial_text_wap h1 {
    font-size: 70px;
    top: 50%;
    margin-top: -35px;
}
#templatemo_services .testimonial_top_bottom_spacer {
    padding-bottom: 80px;
}

/*events*/
#templatemo_events {
	float: left;
	overflow: hidden;
	background-color: #CCC;
}
#templatemo_events h1{
    color: #ffffff;
}
#templatemo_events .event_box_wap {
    overflow:hidden;
    margin-bottom: 30px;
    cursor: pointer;
    position: relative;
}
#templatemo_events .event_box_wap .event_box_img {
    position: relative;
    top: 0;
}
#templatemo_events .event_box_wap .event_box_caption {
    position: relative;
    top: 0;
    padding-bottom: 10px;
    background: #ffffff;
    width: 100%;
    border-top: 3px solid #490092;
}
#templatemo_events .event_box_wap h1,
#templatemo_events .event_box_wap p {
    margin: 0;
    color: #000000;
    text-align: left;
}
#templatemo_events .event_box_wap p {
    padding: 5px 20px 15px 20px;
}
#templatemo_events .event_box_wap h1 {
    padding: 20px 20px 20px 20px;
    font-size: 24px;
    line-height: 24px;
}
/*timeline*/
#templatemo_timeline {
    background: #ffffff;
    float: left;
}
#templatemo_timeline .container-fluid {
    max-width: 1600px;
    position: absolute;
    margin: auto;
    margin-bottom: 80px;
    background: url("/services/mimages/cssimage/time_line_bg.jpg") repeat-y center top;
}
#templatemo_timeline .time_line_wap {
    position: absolute;
    display: none;
}
#templatemo_timeline .time_line_caption {
    background: #f15556;
    padding: 10px 20px 10px 20px ;
    border-radius: 5px;
    height: 40px;
    clear: both;
    color: #ffffff; 
}
#templatemo_timeline .time_line_paragraph {
    background: #b6dbff;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    margin-top: 50px;
    font-family: 'Century Gothic', sans-serif;
}
#templatemo_timeline .time_line_paragraph a {
    color: #000;
    text-decoration: underline;
}
#templatemo_timeline .left_timeline {
    margin-left: 30px;
}
#templatemo_timeline .left_timeline .time_line_caption {
    float: right;
    margin-right: 0px;
}
#templatemo_timeline .right_timeline .time_line_caption {
    float: left;
}
#templatemo_timeline .time_line_paragraph h1 {
    text-align: left;
    margin: 0;
    font-size: 24px;
    line-height: 30px;
    color: #000000;
    padding: 20px 20px 20px 20px;
}
#templatemo_timeline .time_line_paragraph p {
    padding: 0px 20px 20px 20px;
    text-align: left;
    margin: 0;
    font-size: 14px;
    line-height: 2em;
    color: #000000;
}
#templatemo_timeline .left_timer {
    float: right;
    background: url("/services/mimages/cssimage/arrow_left.png") 0 5px;
}
#templatemo_timeline .right_timer {
    float: left;
    background: url("/services/mimages/cssimage/arrow_right.png") 0px 5px;
}
#templatemo_timeline .left_timer ,
#templatemo_timeline .right_timer {
    padding-left:30px;
    width: 101px;
    position: absolute;
}
#templatemo_timeline .left_timer span,
#templatemo_timeline .right_timer span {
    border-radius: 20px;
    width: 30px;
    height: 30px;
    background: #b6dbff;
    text-align: center;
    color: #ffffff;
    font-size: 24px;
    padding-top: 3px;
    margin-top: 3px;
}
/*contact*/
#templatemo_contact {
    background: #b6dbff;
    float: left;
}
#templatemo_contact h1 {
    color: #490092;
}
#templatemo_contact h2 {
    font-size: 24px;
    color:#490092;
    background: #e1f0ff;
    padding-top: 0;
    padding-bottom: 20px;
}
#templatemo_contact_map {
    width: 100%;
    height: 320px;
    float: left;
    margin-bottom: 40px;
}
#templatemo_contact ul li a {
	background: none;
	
}

#templatemo_contact ul li  i {
    width: 60px;
    padding: 20px 0;
    font-size: 32px;
    color: #490092;
    text-align: center;
}

#templatemo_contact p {
    color: #000000;
    background: #e1f0ff;
    line-height: 30px;
	margin-top: 15px;
}

/* unvisited link */
#templatemo_contact a:link {
    color: #000000;
}

/* visited link */
#templatemo_contact a:visited {
	color: #920000;
}

/* mouse over link */
#templatemo_contact a:hover {
	color:#004949;
}

/* selected link */
#templatemo_contact a:active {
     color: #24ff24;
}
#templatemo_contact input {
    width: 100%;
    height: 50px;
    padding: 10px;
    border: none;
}
#templatemo_contact textarea {
    border: none;
    width: 100%;
    height: 150px;
    padding: 10px;
}
/*#templatemo_contact button {
    width: 100%;
    height: 50px;
    float: left;
    margin-top: 20px;
    margin-bottom: 20px;
    border: none;
    background: #ffff6d;
}
#templatemo_contact button:hover {
	background:#ffe6ce;
	color: #000000;
}*/
/*templatemo_footer*/
#templatemo_footer {
    width: 100%;
    border-top: 2px solid #490092;
    height: 70px;
    background: #490092;
    float: left;
}
#templatemo_footer p {
    padding-top: 20px;
    color: #fff;
    text-align: center;
}
#templatemo_footer a {
    color: #ffffff;
    text-decoration: underline;
}
/*  Small devices (tablets, 768px and up)  */
@media (max-width: 768px ) { 
    #templatemo_about .pre_next {
        font-size: 15px;
    }
	#templatemo_services .pre_next {
        font-size: 15px;
    }
    #templatemo_timeline .right_timer {
        background-position: center center;
    }
}
/*  Medium devices (desktops, 992px and up)  */
@media (max-width: 970px ) {
    #templatemo_timeline .right_timer {
        background-position: 100px 5px;
    }
    #templatemo_banner_menu #logo_text {
        font: normal normal normal 30px/1em 'Century Gothic', sans-serif;
    }
    #templatemo_timeline .container-fluid {
        background: url("/services/mimages/cssimage/time_line_bg.jpg") repeat-y 28px 0;
    }
}
/*  Large devices (large desktops, 1200px and up)  */
@media (min-width: 1200px ) {
}
