

h1 {
  font-weight: normal;
  font-size: 40px;
  font-weight: normal;
  text-transform: uppercase;
  float: left;
  margin: 20px 0 100px 10px;
}

h1 span {
  font-size: 13px;
  display: block;
  padding-left: 4px;
}

.tabs {
  width: 98vw;  /* Overall width of Tabs - note 100 causes image to appear one under the other  */
/*  height: 500px; /* Space available for text and images etc  */
  height: 85lvh;
  float: none;
  list-style: none;
  position: relative;
  margin: 10px 0px 0 10px; /* control margins etc to add border  */
  text-align: left;
}

.tabs li {
  float: left;
  display: block;
}

.tabs input[type="radio"] {
  position: absolute;
  top: 0;
  left: -9999px;
}

.tabs label {
  display: block;
  padding: 14px 10px;  /* Increase Tab size  */
  margin-right: 10px; /* Space between tabs  */
  border-radius: 10px 10px 0 0; /* Add corners to tab  */
/*   border: solid 1px; /* Add a white border  */
/*  border-color: #FFF;  */
/*  font-family: "Russo One", sans-serif; /* Use main Title Font  */
/*  font-size: 25px;  */

  font-family: Arial, sans-serif;
  font-size: 18px;

  font-weight: normal;
  background: #1d1d20; /* Non selected Tab  */
  cursor: pointer;
  position: relative;
  top: 4px;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.tabs label:hover {
  background: #5e717a; /* Non selected Tab on Hover  */
}

.tabs .tab-content {
  z-index: 2;
  display: none;
  overflow: hidden;
  border-radius: 0 10px 10px 10px;
  width: 100%;
  font-size: 17px;
  line-height: 25px;
  padding: 25px;
  position: absolute;
  top: 53px;
  left: 0;
  background: #232425; /* Main Tab to match Active Tab   */
  }

.tabs [id^="tab"]:checked + label {
  top: 0;
  padding-top: 17px;
  background: #232425; /* Active Tab  */
}

.tabs [id^="tab"]:checked ~ [id^="tab-content"] {
  display: block;
}

p.link {
  clear: both;
  margin: 380px 0 0 15px;
}
p.link a {
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  margin: 0 5px;
  background-color: #612e76;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
p.link a:hover {
  background-color: #522764;
}

/*  _______________________________________________________________________________________ */

/* Services Text and Images */

/* container */
.responsive-three-columns {
    display:flex;
    flex-wrap:wrap;
}

/* columns */
.responsive-three-columns > * {
    width: 95%;
    padding:1rem;
}

/* tablet breakpoint */
@media (min-width:768px) {
    .responsive-three-columns > * {
        width:calc(95% / 3);
    }
}

/* Use in HTML as below:
<div class="responsive-three-columns">
    <div>1</div>
    <div>2</div>
    <div>3</div>
</div>
*/
/* https://matthewjamestaylor.com/3-column-layouts */


/* Adds 10px space after a div. Just enough to separate images!!  */
.div-space {
  float: left;
  margin-right: 10px;
}
