html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline;
	}
:root {
  --main-bg-color: #fefefe;
  --font-color:#1f1f1f;
  --second-font-color:#555;
  --grey-color:#474646;
  --light-grey-color:#666;
  --red-color:#ca2838;
  --darkred-color:#6a1818;
  --second-bg-color:#eddbc2;
  --white-bg-color:#fefefe;
  --marker:#309030;
  --marker2:#3f4143;
}    
*, *:before, *:after {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
}
html{
    text-size-adjust: 100%;
}
body{
   font-family: Arial, Helvetica, sans-serif;
   background-color: var(--main-bg-color); 
   color:var(--font-color);
 font-size: 16px;
   line-height: 1.7;
    text-wrap: wrap;
    word-break: break-word; /*word-wrap: break-word;*/

}
h1,h2,h3,h4,h5,h6{
 margin-bottom: 0.7rem;   
}
h1,h2,h3,h4,h5,h6{
font-weight:600;  
}
p {
  text-wrap: pretty;
  margin-bottom: 0.5rem;
      font-size: 1rem;
}
ul {
    list-style: disc;
    margin: 0 0 2em 0;
    padding-left: 1rem;
}
ul li {
    padding-left: 0.5rem;
}

a{
  color: grey;  
  transition: background-color 0.5s 
}
a:hover{
  color: black;  
  background-color: grey; 
}

li {
        list-style: none;
        font-size: 20px;
        list-style-type: "✓";
    }
 ::marker {
     color:var(--marker);
 }
    
  /**/
.page{ 
    display:block;
    width: 100%;
}
.wrapper {
    display:block;
    margin: 0.5rem;
}


.row:after, .row:before {
    content: '';
    display: block;
    clear: both;
    height: 0;
}


.row{ 
    margin:0;
    width: 100%;
}

.col {
    width: 100%;
}
.col-2 {
    width: 49%;
}
.col-3 {
    width: 33%;
    border:1px solid #055; 
}
.col-4 {
    width: 25%;
    border:1px solid #055; 
}

    .row-responsive{

             width:100%; 
    }
    
    .row-responsive .col {
        margin-bottom:2rem;
 
            width:100%;   
    }
    
.row-fixed{
         display: flex;
        flex-direction: row;
        justify-content: space-evenly;   
}
.row-center{
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}
.row-top{
    flex-direction: row;
    justify-content: space-evenly;
   align-items: flex-start;
}

.banner{
    padding:3rem  2rem;
}

@media only screen and (min-width: 768px) {
    .wrapper {
        padding: 2rem 1rem 1rem 2rem;
    }

    .row-responsive{
             display: flex;
            flex-direction: row;
            justify-content: space-evenly;   
    }

    .banner{
        padding: 0 6rem;
    }

}

/* Large devices such as laptops (1024px and up) */
@media only screen and (min-width: 1024px) {
    .wrapper {
        padding: 3rem 1rem 1rem 2rem;
        width:60rem;
        margin:auto;
    }  
    .banner{
        padding: 0 8rem;
    }
}

/* Largest devices such as desktops (1280px and up) */
@media only screen and (min-width: 1280px) {
    .wrapper {
        padding: 3rem 1rem 1rem 2rem;
        width:75rem;
        margin:auto;
    }     
}


/* colours*/
.grey{
color:var(--grey-color); 
}  
.lightgrey{
    color:var(--light-grey-color);
    
}
.red{
color:var(--red-color); 
}

.box1{
    background-color: var(--second-bg-color);
    color:var(--font-color);
    padding: 2rem;
}
.box2{
    background-color: var(--white-bg-color);
    color:var(--second-font-color);
    padding: 0.5rem;
}
/* buttons*/

input[type="submit"], input[type="reset"], input[type="button"], button, .button {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s 
ease-in-out, color 0.2s 
ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    transition: background-color 0.2s 
ease-in-out, color 0.2s 
ease-in-out;
    /* border-radius: 3.92857em; */
    border: 0;
    cursor: pointer !important;
    display: inline-block;
    font-weight: 600;
    height: 3.92857rem;
    line-height: 3.92857rem;
    padding: 0 2rem;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}
input[type="submit"].special, input[type="reset"].special, input[type="button"].special, button.special, .button.special {
    background-color:var(--red-color);
    color: #ffffff !important;
}
button.special2, .button.special2 {
    background-color:#ffffff;
    color: #202020 !important;
}
.button.special:hover, .button.special2:hover {
    background-color: #626780;
}
/**/
 
 .mxauto{
     display:block;
     margin:auto;
 }

 
 .text-center{text-align:center;}
 .text-left{text-align:left;}
 .text-right{text-align:right;}
 /**/


 
 .image-fullwidth {
    display: block;
    width: 100%;
    height: auto;
}
 .img-responsive{
    display: block;
    width: 100%;
    max-width: 100%;
    margin:auto;
 }


  /**/
h1,  .d1{
font-size:2.2rem;
    font-weight: 400;
    letter-spacing: -1px
 }
 
h2, .d2{
font-size:2.0rem;
 font-weight: 400; 
 letter-spacing: -1px
 } 
h3,.d3{
font-size: 1.6rem;
    font-weight:  400; 
 }
 
h4,.d4{
font-size: 1.4rem;
    font-weight: 200; 
 }
 .strong{
font-weight:  600;
 }
.em{
font-style:italic;
 }
 .style1{
     font-weight:  600;
    font-style: italic;
    color:var(--second-font-color);
 }
 
 /* stuff*/
 .reduction{
     position: absolute;
    right: 0;
    top: -3rem;
    width: 8rem;
 }
 .social{
     margin: auto;
    display: block;
    max-width: 8rem;
    height: auto;
    width: 100%;
 }
 
 .footer{
     font-size:1rem;;
     color:var(--second-font-color);
 }
.footer .contact-icons {
    display: inline-block;
}

ul.contact-icons {
    list-style: none;
    padding-left: 0;
}
.contact-icons li {
    display: inline-block;
    margin-left: 2rem;
}


.card{
    position:relative;
    margin:0.2rem;
    padding:0.5rem;
    border:1px solid #aaa;
   overflow:hidden; 
}
.card div{    position:relative;
overflow:hidden;}
.card div h3{
    font-weight:200;
    font-size: 1.5rem;

    line-height:1.7rem;
    position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
background-color: #414141b8;
    color: #fff;
    right: 0;
    padding: 1rem 1rem 1rem 2rem;
    text-align:center;
    overflow:hidden;
}

.card p{
    padding:0.5rem;
    font-size: 1rem;
}

.card img{
    display: block;
    width: 100%;
    max-width: 100%;
    margin:auto;
 }
 
 
.redline{
    width:100%;
    text-align:center;    
     position: relative;
  
}
.redline h1{
  
        letter-spacing: 2px;
         color:var(--grey-color);
         background-color: white;
   position: relative;
    width: fit-content;
    margin: auto;
    padding: 0 0.5rem
}
.redline h2{
    font-size:20pt;
        letter-spacing: 2px;
         color:var(--grey-color);
         background-color: white;
   position: relative;
    width: fit-content;
    margin: auto;
    padding: 0 0.5rem
}

.redline:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  border-top: 3px solid var(--red-color);
  background: black;
  width: 100%;
  transform: translateY(-50%);
}

.big{
    font-size:1.75rem;
}
 .todo{
   background-color: orange; 
   color:#000;   
 }
 
 /**/
 .position-relative{position:relative}
 .p-1{
     padding:1rem;
 }
 .pb-1{
     padding-bottom:1rem;
 }
.my-1{
    margin-bottom:1rem;
    margin-top:1rem;
 }
 .my-2{
    margin-bottom:2rem;
    margin-top:2rem;
 }
 .mt-1{margin-top:1rem;}
 .mb-1{margin-bottom:1rem;}
.mt-2{margin-top:2rem;}
 .mb-2{margin-bottom:2rem;}
 
 
 /**/
#header {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    color: #010101;
    cursor: default;
    line-height: 1.5;
    margin: 0;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white-bg-color);
    z-index: 999;
    box-shadow: 1px 2px 3px #aaaa;
    align-items: center;
}

#header > .logo a{
    margin-left: 1rem;
    text-decoration: none;
    display: inline-block;
}

.topAddress {
    margin-left: 1rem;
    font-size: 0.8rem;
}

#header a {
    border-bottom: 0;
    color: inherit;
}



#header > nav {
-moz-flex-grow: 1;
-webkit-flex-grow: 1;
-ms-flex-grow: 1;
flex-grow: 1;
-moz-flex-shrink: 0;
-webkit-flex-shrink: 0;
-ms-flex-shrink: 0;
flex-shrink: 0;
text-align: right;
white-space: nowrap;
}

#header > nav ul {
list-style: none;
margin: 0em 1em 0 0;
padding-left: 0;
}

#header > nav ul li {
display: inline-block;
font-weight: 500;
letter-spacing: 0.1rem;
margin-left: 0.5rem;
padding-left: 0;
text-transform: uppercase;

}
 
#header > nav ul li a {
display: inline-block;
line-height: inherit;
padding: 0.5rem 1rem;
}

#header > nav ul li a[href="#menu"] {
text-decoration: none;
    font-size: 1rem;
}

#header > nav ul li a[href="#menu"]:before {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-transform: none !important;
}

#header > nav ul li a[href="#menu"]:before {
content: '\f0c9';
float: right;
margin-left: 0.75em;
color:var(--grey-color);
}

#header > nav ul li a:hover {
background-color: rgba(255, 255, 255, 0.05);
border-radius: 4px;
}

.hide{
    display:none;
}
@media screen and (max-width: 1280px) {
#header {
margin: 0 ;
}

#header > .logo span {
    top: -0.05em;
}
}

@media screen and (max-width: 736px) {
.hide{ display:none;}
 
}

@media screen and (max-width: 480px) {
.hide{ display:none;}
.topAddress{font-size: 0.8rem;}

#header {
height: 48px;
line-height: 44px;
margin: 0;
padding: 0 1.25rem;
}

#header > .logo {
    font-size: 0.8rem;
}
 

#header > nav {
    font-size: 0.8rem;
}

#header > nav ul {
margin: 0;
}

#header > nav ul li a {
padding: 0;
}

#header > nav ul li a:hover {
        background-color: transparent;
}

}

/* Menu */

	.page {
		-moz-transition: opacity 0.5s ease;
		-webkit-transition: opacity 0.5s ease;
		-ms-transition: opacity 0.5s ease;
		transition: opacity 0.5s ease;
	}

	#menu {
		background-color: #d5c19a;
		color: rgb(0, 0, 0);
		-moz-transform: translateX(20em);
		-webkit-transform: translateX(20em);
		-ms-transform: translateX(20em);
		transform: translateX(20em);
		-moz-transition: -moz-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
		-webkit-transition: -webkit-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
		-ms-transition: -ms-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
		transition: transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
		-webkit-overflow-scrolling: touch;
		box-shadow: none;
		height: 100%;
		max-width: 80%;
		overflow-y: auto;
		padding: 3rem 2rem;
		position: fixed;
		right: 0;
		top: 0;
		visibility: hidden;
		width: 22rem;
		z-index: 10002;
	}

		#menu input, #menu select, #menu textarea {
			color: #ffffff;
		}

		#menu a {
			color: #ffffff;
		}

		#menu strong, #menu b {
			color: #ffffff;
		}

		#menu h1, #menu h2, #menu h3, #menu h4, #menu h5, #menu h6 {
			color: #ffffff;
		}

		#menu blockquote {
			border-left-color: rgba(255, 255, 255, 0.25);
		}

		#menu code {
			background: rgba(255, 255, 255, 0.05);
			border-color: rgba(255, 255, 255, 0.25);
		}

		#menu hr {
			border-bottom-color: rgba(255, 255, 255, 0.25);
		}

		#menu input[type="submit"],
		#menu input[type="reset"],
		#menu input[type="button"],
		#menu button,
		#menu .button {
			background-color: transparent;
			box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
			color: #ffffff !important;
		}

			#menu input[type="submit"]:hover,
			#menu input[type="reset"]:hover,
			#menu input[type="button"]:hover,
			#menu button:hover,
			#menu .button:hover {
				background-color: rgba(255, 255, 255, 0.05);
			}

			#menu input[type="submit"]:active,
			#menu input[type="reset"]:active,
			#menu input[type="button"]:active,
			#menu button:active,
			#menu .button:active {
				background-color: rgba(255, 255, 255, 0.1);
			}

			#menu input[type="submit"].special,
			#menu input[type="reset"].special,
			#menu input[type="button"].special,
			#menu button.special,
			#menu .button.special {
				box-shadow: 0 0 3em 0 rgba(0, 0, 0, 0.1);
				background-color: #ca2838;
				color: #ffffff !important;
			}

				#menu input[type="submit"].special:hover,
				#menu input[type="reset"].special:hover,
				#menu input[type="button"].special:hover,
				#menu button.special:hover,
				#menu .button.special:hover {
					background-color: #6cbfc4;
				}

				#menu input[type="submit"].special:active,
				#menu input[type="reset"].special:active,
				#menu input[type="button"].special:active,
				#menu button.special:active,
				#menu .button.special:active {
					background-color: #7cc8cd;
				}

		#menu > ul {
			margin: 0 0 1em 0;
		}

			#menu > ul.links {
				list-style: none;
				padding: 0;
			}

				#menu > ul.links > li {
					padding: 0;
                                        list-style-type: circle!important;
                                        color:black;
				}

					#menu > ul.links > li > a:not(.button) {
						border: 0;
						border-top: solid 1px rgba(255, 255, 255, 0.25);
						color: inherit;
						display: block;
						line-height: 3.5rem;
						text-decoration: none;
					}

					#menu > ul.links > li > .button {
						display: block;
						margin: 0.5em 0 0 0;
					}

					#menu > ul.links > li:first-child > a:not(.button) {
						border-top: 0 !important;
					}

		#menu .close {
			text-decoration: none;
			-moz-transition: color 0.2s ease-in-out;
			-webkit-transition: color 0.2s ease-in-out;
			-ms-transition: color 0.2s ease-in-out;
			transition: color 0.2s ease-in-out;
			-webkit-tap-highlight-color: transparent;
			border: 0;
			color: rgba(255, 255, 255, 0.5);
			cursor: pointer;
			display: block;
			height: 3.25em;
			line-height: 3.25em;
			padding-right: 1.25em;
			position: absolute;
			right: 0;
			text-align: right;
			top: 0;
			vertical-align: middle;
			width: 7em;
		}

			#menu .close:before {
				-moz-osx-font-smoothing: grayscale;
				-webkit-font-smoothing: antialiased;
				font-family: FontAwesome;
				font-style: normal;
				font-weight: normal;
				text-transform: none !important;
			}

			#menu .close:before {
				content: '\f00d';
				font-size: 1.25em;
			}

			#menu .close:hover {
				color: #ffffff;
			}

			@media screen and (max-width: 736px) {

				#menu .close {
					height: 4em;
					line-height: 4em;
				}

			}

		@media screen and (max-width: 736px) {

			#menu {
				padding: 2.5em 1.75em;
			}

		}

	body.is-menu-visible #page-wrapper {
		-moz-pointer-events: none;
		-webkit-pointer-events: none;
		-ms-pointer-events: none;
		pointer-events: none;
		cursor: default;
		opacity: 0.25;
	}

	body.is-menu-visible #menu {
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
		box-shadow: 0 0 2em 0.25em rgba(0, 0, 0, 0.1);
		visibility: visible;
	}
        
        /* form */
input[type="text"], input[type="email"]{
    height: 2.75rem;
}
input[type="text"], input[type="email"], textarea {
    background: #ffffff;
    color: rgba(67, 75, 86, 0.75);
    border-color: rgba(255, 255, 255, 0.25);
}


input[type="text"], input[type="password"], input[type="email"], select, textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    border-radius: 4px;
    border: none;
    border: #bbb solid 1px;
    color: inherit;
    display: block;
    outline: 0;
    padding: 0 1em;
    text-decoration: none;
    width: 100%;
    font-size: 1.2rem;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, select:focus, textarea:focus {
    border-color: var(--red-color);
    box-shadow: inset 0 0 0 1px #fed586;
}

textarea {
    padding: 0.75em 1em;
}

form .row{
    margin-bottom: 0.5rem;
}

.validateTips{
    text-align:center;
}

