* {
  font-family: "nta", Arial, sans-serif;
}

h1 {
  margin:0;
}

body {
  margin: 0;
  padding: 0;
  background: white;
  color: #0b0c0c;
  line-height: 1.5;
  vertical-align: baseline;
}

 .topbar {
  display: block;
  margin: 0;
  padding: 0;
  width: auto;
  max-width: 100%;
}

.homepage-top {
  font-size: 120%;
  font-weight: 400;
   text-align: center;
   background: #005ea5;
   color: #fff;
}

.homepage-top p{
  margin:0;
}

.homepage-top-inner {
   position: relative;
   max-width: 1020px;
   margin: 0 auto 0;
   text-align: left;
   
}

.top-left {
  width: 66.66%;
  min-height: 12em;
}

.top-left-inner a{
  color:white;
  text-decoration: none;
}

.top-left-inner{
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
}

.top-right {
   position: absolute;
   top: 0;
   left: 66%;
   width: 33.33%;
   min-height: 12em;       
}

.top-right a{
  color:white;
}

.top-right-inner{
   background: #0b0c0c;
   padding: 15px;
   position: absolute;
   top: 50%;
   transform: translate(15%,-50%);
   
}

.homepage-content{
   position: relative;
   max-width: 1020px;
   margin: 1em auto;
   text-align: left;
  /* -webkit-column-count: 2; /* Chrome, Safari, Opera */
  /* -moz-column-count: 2; /* Firefox */
  /* column-count: 2; */
  font-size: 100%;
  
}
  
.enquirylink {
    background: maroon;
    padding:0.5em 2em;
    margin:0.5em;
    text-align: center;
    border-radius: 5em;
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size:125%;
}



.toggle-box {
  display: none;
}

.toggle-box + label {
  cursor: pointer;
  display: block;
  font-weight: bold;
  line-height: 21px;
  margin-bottom: 5px;
}

.toggle-box + label + div {
  display: none;
  margin-bottom: 10px;
}

.toggle-box:checked + label + div {
  display: block;
}

.toggle-box + label:before {
  background-color: #4F5150;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  color: #FFFFFF;
  content: "+";
  display: block;
  float: left;
  font-weight: bold;
  height: 20px;
  line-height: 20px;
  margin-right: 5px;
  text-align: center;
  width: 20px;
}

.toggle-box:checked + label:before {
  content: "\2212";
}