/*

* {
  border: 1px solid red;
}
*/

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  min-width: 100%;
  color: #000000;
}

p {
  font-weight: 400;
}

h1 {

  font-weight: 700;
}

h2 {
  font-weight: 700;
}

h3 {
  font-weight: 600;
}

h4 {
  font-weight: 600;
}

h5 {
  font-weight: 600;
}

h6 {
  font-weight: 600;
}


img {
  max-width: 100%;
}

nav .navbar-nav li a {
  color: #006633 !important;
  }


footer a {
  color: #006633 !important;
  }

#white-link {
  color: #ffffff !important;
}

/* -------------------------------------------------------------------Alignment */

.height-100vh {
  height: 100vh;
  min-height: 350px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}


.vertical-center {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* -------------------------------------------------------------------Backgrounds */

.bg-cover {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.black-bg {
  background-color: #000000;
}

.dark-overlay {
  box-shadow: inset 0 0 0 1000px rgba(0,0,0,.4);
}

.dark-overlay-5 {
  box-shadow: inset 0 0 0 1000px rgba(0,0,0,.6);
}

.dark-overlay-6 {
  box-shadow: inset 0 0 0 1000px rgba(0,0,0,.6);
}

.blue-bg {
  background-color: #1460af;
}

.dark-grey-bg {
  background-color: #43464B;
}

.dark-orange-bg {
  background-color: #ec671c;
}

.green-bg {
  background-color: #006633;
}

.light-green-bg {
  background-color: #e6f0eb;
}

.orange-bg {
  background-color: orange;
}

.red-bg {
  background-color: #b11621;
}

.v-light-grey-bg {
  background-color: #f2f2f2;
}


.light-grey-bg {
  background-color: #cccccc;
}



.opacity-50 {
  opacity: 0.8;
}

.orange-bg {
  background-color: #ff8300;
}

.white-bg {
  background-color: #ffffff;
}


/* -------------------------------------------------------------------Borders */

.border-top-2px-solid {
  border-top: 2px solid #006633;
}

.border-top-2px-solid-orange {
  border-top: 2px solid orange;
}

.border-bottom-2px-solid-orange {
  border-bottom: 2px solid orange;
}

.border-top-2px-solid {
  border-top: 2px solid;
}

.border-bottom-2px-solid {
  border-bottom: 2px solid;
}

.border-2px-solid {
  border: 2px solid;
}

.border-1px-solid {
  border: 1px solid #006633;
}

.border-1px-solid-grey {
  border: 1px solid #cccccc;
}

.border-2px-solid-orange {
  border: 2px solid orange;
}

.border-radius {
  border-radius: 5px;
}

.border-top-radius-1px {
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
}


/* -------------------------------------------------------------------Buttons */


.btn-base {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
  margin-top: 20px;
  border: 0px solid;
  border-style: none;
}

.btn-sml {
  border-radius: 1px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 5px;
  margin-top: 5px;
  border: none;
  outline:none;
}


.btn-black {
  background-image: linear-gradient(#000000, #292c2c);
  border-radius: 4px;
  padding: 5px 20px 5px 20px;
}

    .btn-black:hover {
      background-image: linear-gradient(#292c2c, #000000);
    }


.btn-blue {
  background-image: linear-gradient(#1460af, #19222c);
  border-radius: 4px;
  padding: 5px 20px 5px 20px;
}

    .btn-blue:hover {
      background-image: linear-gradient(#19222c, #1460af);
    }


.btn-green {
  background-image: linear-gradient(#006633, #014322);
  border-radius: 4px;
  padding: 5px 20px 5px 20px;
}

    .btn-green:hover {
      background-image: linear-gradient(#014322, #006633);
    }


.btn-red {
  background-image: linear-gradient(#b11621, #570f16);
  border-radius: 4px;
  padding: 5px 20px 5px 20px;
}

    .btn-red:hover {
      background-image: linear-gradient(#570f16, #b11621);
    }




/* -------------------------------------------------------------------Cards */

.cards {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
}

.card {
    flex: 0 1 calc(100% - 1em);
}



/* -------------------------------------------------------------------Containers */


.box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.box img {
  min-width: 100%;
}

.box-sml {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.box-sml img {
  min-width: 100%;
}


.container-100pc {
  background-image: url("../images/garden.jpg");
  height: 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  padding: 0;
  clear: both;
}

.container-fluid {
    padding-right:0;
    padding-left:0;
}


.block {
  display: block;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}


/* -------------------------------------------------------------------Displays */

.inline-block {
  display: inline-block;
}

/* -------------------------------------------------------------------Heights */

.height-2px {
  height: 2px;
}

.height-5px {
  height: 5px;
}

.height-10px {
  height: 10px;
}

.height-15px {
  height: 15px;
}

.height-20px {
  height: 20px;
}

.height-30px {
  height: 30px;
}

.height-34px {
  height: 34px;
}

.height-35px {
  height: 35px;
}

.height-40px {
  height: 40px;
}

.height-50px {
  height: 50px;
}

.height-55px {
  height: 55px;
}

.height-60px {
  height: 60px;
}

.height-60vh {
  height: 60vh;
}

.height-80px {
  height: 80px;
}

.height-100pc {
  height: 100%;
}




/* -------------------------------------------------------------------Margins */

.margin-half-em {
  margin: 0.5em;
}

.margin-bottom-half-em {
  margin: 0.5em;
}

.margin-right-half-em {
  margin: 0.5em;
}

.margin-1em {
  margin: 1em;
}

.margin-bottom-0px {
  margin-bottom: 0px;
}

.margin-bottom-1em {
  margin-bottom: 1em;
}

.margin-bottom-2em {
  margin-bottom: 2em;
}

.margin-bottom-25px {
  margin-bottom: 25px;
}

.margin-bottom-50px {
  margin-bottom: 50px;
}


.margin-right-1em {
  margin-right: 1em;
}

.margin-top-1em {
  margin-top: 1em;
}

.margin-top-2px {
  margin-top: 2px;
}

.margin-top-2em {
  margin-top: 2em;
}

.margin-top-25px {
  margin-top: 25px;
}

.margin-top-50px {
  margin-top: 50px;
}
/* -------------------------------------------------------------------Padding */

.padding-0px {
  padding: 0px ;
}

.padding-1em {
  padding: 1em;
}

.padding-feature {
  padding: 50px ;
}

.padding-top-bottom-25 {
  padding-top: 25px ;
  padding-bottom: 25px ;
}


/* -------------------------------------------------------------------Text Alignment */

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
  text-justify: inter-word;
}

.text-left {
  text-align: left;
}

/* -------------------------------------------------------------------Text Colours */


.text-black {
  color: #000000;
}

.text-blue {
  color: #1460af;
}


.text-green {
  color: #006633;
}

.text-orange {
  color: orange;
}

.text-red {
  color: #b11621 !important;
}

.text-white {
  color: #ffffff;
}




/* -------------------------------------------------------------------Text Sizes */

.text-42 {
  font-size: 42px;
}

.text-sml {
  font-size: .8em;
}


/* -------------------------------------------------------------------Text Style */

.text-uppercase {
  text-transform: uppercase;
}



/* -------------------------------------------------------------------Widths */


.width-10pc {
  width: 10%;
}

.width-15pc {
  width: 15%;
}

.width-20pc {
  width: 20%;
}

.width-50pc {
  width: 50%;
}

.width-60pc {
  width: 60%;
}

.width-100pc {
  width: 100%;
  height: auto;
}

.width-100 {
  width: 100px;
  height: auto;
}

.width-250 {
  width: 250px;
  height: auto;
}



/* Media Queries */

@media (max-width: 750px) {
  .box {
    display: grid;
    grid-template-columns: repeat(1, 1fr)
  }
  .box-sml {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 751px) and (max-width: 1199px) {
  .box-sml {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}


/* -------------------------------------------------------------------Tables */

table tr:first-child td {
    border-top: none;
}

th, td {
  font-size: .8em;
}

/*
	Max width before this PARTICULAR table gets nasty. This query will take effect for any screen smaller than 760px and also iPads specifically.
	*/
	@media
	  only screen
    and (max-width: 760px), (min-device-width: 768px)
    and (max-device-width: 1024px)  {

		/* Force table to not be like tables anymore */
		table, thead, tbody, th, td, tr {
			display: block;
		}

		/* Hide table headers (but not display: none;, for accessibility) */
		thead tr {
			position: absolute;
			top: -9999px;
			left: -9999px;
		}

    tr {
      margin: 0 0 1rem 0;
    }

    tr:nth-child(odd) {
      background: #ccc;
    }

		td {
			/* Behave  like a "row" */
			border: none;
			border-bottom: 1px solid #eee;
			position: relative;
			padding-left: 50%;
		}

		td:before {
			/* Now like a table header */
			position: absolute;
			/* Top/left values mimic padding */
			top: 0;
			left: 6px;
			width: 45%;
			padding-right: 10px;
			white-space: nowrap;
		}
