* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.bold {
  font-weight: bold;
}

body {
  background: -webkit-gradient(linear, left top, left bottom, from(#2b2731), color-stop(#2b2731), to(#48444e));
  background: linear-gradient(#2b2731, #2b2731, #48444e);
  color: #050505;
}

body::-webkit-scrollbar {
  width: .8rem;
  background-color: #ffffff;
}

body::-webkit-scrollbar-button:single-button:vertical:decrement {
  background-image: url("../images/up-arrow.svg");
}

body::-webkit-scrollbar-button:single-button:vertical:increment {
  background-image: url("../images/down-arrow.svg");
}

body::-webkit-scrollbar-button {
  width: .7rem;
  background-color: #ffffff;
  color: #050505;
  background-repeat: no-repeat;
  background-position: center;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(107, 107, 107, 0.3);
          box-shadow: inset 0 0 6px rgba(107, 107, 107, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: #1c1a1f;
}

.wrapper0 {
  width: 1304px;
  margin: auto;
}

.menu-box {
  position: fixed;
  right: 0;
  height: 0;
  z-index: 7;
  top: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.menu-box button {
  margin-right: 5px;
  background-color: #ffffff;
  border: 1px solid;
  border-radius: 5px;
  height: 50px;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  -webkit-transition-property: background-color;
  transition-property: background-color;
}

.menu-box button img {
  height: 50px;
}

.menu-box button:hover {
  background-color: #2a2a2e7a;
}

.enquiries-box {
  height: 0;
  position: fixed;
  bottom: 100px;
  right: 5px;
  z-index: 10;
}

.enquiries-box button {
  height: 55px;
  width: 55px;
  border: none;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  background-color: transparent;
}

.enquiries-box button img {
  height: 100%;
}

.enquiries-box button #enquiries-text {
  position: fixed;
  bottom: 75px;
  right: 7px;
  font-size: .55rem;
  text-transform: uppercase;
}

.enquiries-box button:hover {
  background-color: #ffffff;
  border: 1px solid;
  border-radius: 5px;
}

.enquiry-form-wrapper {
  overflow-y: auto;
  position: fixed;
  margin: auto;
  display: none;
  padding-top: 20px;
  background-color: #1c1a1f;
  height: 100vh;
  z-index: 10;
}

.enquiry-form-wrapper h3 {
  display: inline;
  color: #050505;
  font-weight: normal;
  margin-left: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 4px 6px;
  background-color: #e6ff8f;
  text-transform: uppercase;
}

.enquiry-form {
  color: #ffffff;
  max-width: 58vw;
  min-width: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 20px 15px;
}

.enquiry-form label {
  text-transform: capitalize;
  font-weight: 550;
  padding: 2px 1px;
}

.enquiry-form input {
  height: 1.4rem;
  font-size: 1.1rem;
  margin-bottom: 8px;
  padding-left: 5px;
  border: 2px solid #c3c3e7;
  -webkit-transition: .6s ease-in-out;
  transition: .6s ease-in-out;
  -webkit-transition-property: border;
  transition-property: border;
  border-radius: 3px;
}

.enquiry-form textarea {
  border-radius: 3px;
  font-size: 1.1rem;
  padding-left: 5px;
}

.enquiry-form #submit-enq {
  width: 40%;
  margin: 12px 0px;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  padding: 2px 5px;
  height: 1.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  border: 2px solid #000033;
}

.enquiry-form input:hover {
  border: 2px solid #000033;
}

.enquiry-form #submit:hover {
  background-color: #000033;
  color: #ffffff;
}

.menu-wrapper {
  display: none;
  z-index: 6;
  position: fixed;
  top: 0px;
  width: 35vw;
  min-width: 160px;
  max-width: 80vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1c1a1f;
}

.menu-wrapper ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  background-color: #1c1a1f;
  padding-top: 10px;
  height: 50vh;
}

.menu-wrapper ul li {
  padding-left: 15px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.menu-wrapper ul li a {
  width: 100%;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .9rem;
}

.menu-wrapper ul li:hover {
  background-color: #2b2731;
}

#top-bar {
  height: 30px;
  background-color: #1c1a1f;
  border: none;
}

.logo-box {
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  margin: 0;
}

.logo-box img {
  max-height: 100%;
  width: auto;
}

#low-bar {
  height: 66px;
  background-color: #1c1a1f;
  border: none;
}

nav {
  position: relative;
  z-index: 4;
  top: 0;
  height: 185px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

nav .logo-box {
  width: 350px;
}

nav .logo-box img {
  width: 444px;
}

nav ul {
  width: 304px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url("../images/lb.png");
}

nav ul .header-li {
  background-color: #000033;
  pointer-events: none;
}

nav ul .header-li a {
  color: #ffffff;
  font-size: x-large;
}

nav ul .header-li:hover {
  background-color: #000033;
}

nav ul .header-li:hover a {
  color: #ffffff;
}

nav ul li {
  border-bottom: solid 1px #000033;
  margin: none;
  padding: 3px 25px;
  background-color: transparent;
  -webkit-transition: .6s ease-in-out;
  transition: .6s ease-in-out;
  text-align: center;
  -webkit-transition-property: background-color transform;
  transition-property: background-color transform;
}

nav ul li a {
  text-decoration: none;
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 520;
  width: 100%;
  color: #000033;
}

nav ul li:hover {
  background-color: #ffffff;
}

nav .nav-slide {
  width: 555px;
  max-height: 185px;
}

#about-us {
  color: #000033;
}

.padded-para {
  background-color: #f0f0f0cb;
  padding: 8px 16px;
  font-size: 19px;
  border-top: 2px solid #e6ff8f;
  border-bottom: 2px solid #e6ff8f;
}

main {
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-shadow: 0px -6px 0px 0px #e6ff8f;
          box-shadow: 0px -6px 0px 0px #e6ff8f;
}

main article {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  -webkit-box-shadow: 5px 0px 0px 0px #2a2a2e7a;
          box-shadow: 5px 0px 0px 0px #2a2a2e7a;
}

main #pic1 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.363))), url("../images/Picture8.jpg");
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.363)), url("../images/Picture8.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

main #pic2 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.363))), url("../images/Picture7.jpg");
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.363)), url("../images/Picture7.jpg");
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

main #pic3 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.363))), url("../images/Picture8.jpg");
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.363)), url("../images/Picture8.jpg");
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

main #pic4 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.363))), url("../images/Picture9.jpg");
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.363)), url("../images/Picture9.jpg");
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

main #pic5 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.363))), url("../images/Picture17.png");
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.363)), url("../images/Picture17.png");
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

main #pic6 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.363))), url("../images/Picture18.jpg");
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.363)), url("../images/Picture18.jpg");
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

main #pic7 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.363))), url("../images/Picture19.png");
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.363)), url("../images/Picture19.png");
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

main #pic8 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.363))), url("../images/Picture20.jpg");
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.363)), url("../images/Picture20.jpg");
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

main #pic9 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.363))), url("../images/Picture21.png");
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.363)), url("../images/Picture21.png");
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

main #pic10 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.363))), url("../images/Picture1a.jpg");
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.363)), url("../images/Picture1a.jpg");
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-position: 50% 22%;
  background-size: contain;
}

main #pic11 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.363))), url("../images/hille.png");
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.363)), url("../images/hille.png");
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

main #pic12 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(22, 21, 21, 0.363))), url("../images/saw.jpg");
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(22, 21, 21, 0.363)), url("../images/saw.jpg");
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

main #pic13 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.363))), url("../images/cn.jpg");
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.363)), url("../images/cn.jpg");
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

main #pic14 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.363))), url("../images/jn.png");
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.363)), url("../images/jn.png");
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

main #pic15 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.363))), url("../images/ar.png");
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.363)), url("../images/ar.png");
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

main .display {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
  margin: 20px 0px;
  border-top: #e6ff8f 2px solid;
  border-bottom: #e6ff8f 2px solid;
}

main .display > header {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 10px;
}

main .header-up > header {
  top: 0;
  left: 0;
}

main .display > header > p {
  background-color: #ffffffcb;
  padding: 8px 16px;
  margin: 0;
  font-size: 19px;
  border-top: #e6ff8f 2px solid;
  color: #000033;
}

main table th {
  background-color: #000033;
  color: #ffffff;
  padding: 4px 0px;
}

main table td {
  background-color: #e6ff8f;
  padding: 4px 8px;
  margin: 1px;
}

main * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

main .seperator {
  background-color: #ffffff;
  color: #050505;
  margin: 16px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

main .seperator .display2 {
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0px 0px;
  background-color: #000033;
  color: #ffffff;
  font-size: 17px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

main .seperator .display2 header {
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 10px;
}

main .seperator .display2 > header > p {
  background-color: #ffffffcb;
  padding: 8px 16px;
  margin: 0;
  font-size: 19px;
  border-top: #e6ff8f 2px solid;
  color: #000033;
}

main .seperator b {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  width: 100%;
  font-size: 22px;
  margin-top: 10px;
}

main .seperator table {
  border-left: #c3c3e7 solid 1px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0px;
}

main .seperator table td {
  text-transform: capitalize;
}

main .center-text {
  text-align: center;
  margin: auto;
}

main aside {
  -webkit-box-flex: 0.6;
      -ms-flex: 0.6;
          flex: 0.6;
  height: 100%;
  padding: 30px 0px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main aside h3 {
  display: inline;
  text-align: center;
  color: #050505;
  font-weight: normal;
  margin-left: 35px;
  margin-right: 35px;
  margin-bottom: 20px;
  padding: 4px 6px;
  background-color: #e6ff8f;
  text-transform: uppercase;
}

main aside form {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 10px 35px;
}

main aside form label {
  text-transform: capitalize;
  font-weight: 550;
  padding: 2px 1px;
}

main aside input {
  height: 1.4rem;
  font-size: 1.1rem;
  margin-bottom: 8px;
  padding-left: 5px;
  border: 2px solid #2a2a2e7a;
  -webkit-transition: .6s ease-in-out;
  transition: .6s ease-in-out;
  -webkit-transition-property: border;
  transition-property: border;
  border-radius: 3px;
}

main aside textarea {
  border-radius: 3px;
  font-size: 1.1rem;
  padding-left: 5px;
}

main aside #submit {
  width: 40%;
  margin: 9px 0px;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  padding: 2px 5px;
  height: 1.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  border: 2px solid #000033;
}

main aside input:hover {
  border: 2px solid #000033;
}

main aside #submit:hover {
  background-color: #000033;
  color: #ffffff;
}

.contact {
  position: fixed;
  left: 0;
  top: 40%;
}

.contact ul li {
  height: 50px;
  width: 50px;
  margin-bottom: 50px;
}

.contact ul li img {
  height: 70px;
  width: 110px;
}

.wrap {
  background: url("../images/lb.png");
  max-height: 100%;
}

.wrapper1 {
  margin: auto;
  max-height: 185px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.wrapper1 .caro-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: cener;
      -ms-flex-align: cener;
          align-items: cener;
  margin: 0px 0vh;
  max-height: 185px;
  width: 100%;
}

.wrapper1 .caro-box img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  min-height: 185px;
  width: 555px;
  margin: 0px auto;
  -webkit-transform: translate(150, 50);
          transform: translate(150, 50);
  text-align: center;
}

.wrapper1 .caro-box p {
  visibility: hidden;
  position: relative;
  bottom: 8vh;
  text-align: center;
  padding: 10px;
  background-color: #020108ef;
  color: #b9b9e6;
  max-width: 90%;
  margin: 10px auto;
  font-size: 1.3rem;
  font-weight: 520;
}

.wrapper1 .caro-box img:hover > p {
  visibility: visible;
}

.img-box {
  width: auto;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.img-box img {
  height: auto;
  max-width: 100%;
  margin: 1vh auto;
}

section {
  width: 100%;
  border-bottom: 4px solid #e6ff8f;
  padding: 30px 30px 30px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

section h3 {
  display: inline;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  font-weight: normal;
  padding: 4px 6px;
  font-size: 22px;
  background-color: #e6ff8f;
}

section p {
  width: 100%;
  margin: 20px auto;
  font-size: 19px;
}

section table {
  font-size: 19px;
}

section ul {
  margin: 0px auto;
  counter-reset: index;
  padding: 0;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

section ul li {
  counter-increment: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 19px;
  text-transform: capitalize;
}

section ul li::before {
  content: "+";
  font-size: 1.5rem;
  text-align: right;
  font-weight: bold;
  min-width: 50px;
  padding-right: 12px;
  font-variant-numeric: tabular-nums;
  -ms-flex-item-align: start;
      align-self: flex-start;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e6ff8f));
  background-image: linear-gradient(to bottom, #ffffff, #e6ff8f);
  background-attachment: fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

section ul li + li {
  border-top: 1px solid rgba(233, 5, 5, 0.801);
}

@media (min-width: 832px) {
  .media1 {
    display: none;
  }
  .mobile-table {
    display: none;
  }
}

@media (max-width: 831px) {
  .desktop-table {
    display: none;
  }
  main table {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  main table th {
    font-size: 13px;
  }
  main table td {
    font-size: 12px;
    padding: 3px 4px;
  }
  .wrapper0 {
    width: 100%;
  }
  .seperator {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .seperator .display {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .display {
    height: auto;
  }
  nav {
    position: relative;
    z-index: -1;
    top: 0;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  nav .filler {
    display: none;
  }
  nav .logo-box {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
    margin: auto;
  }
  nav .logo-box img {
    width: 100%;
    margin: auto;
  }
  nav ul {
    display: none;
  }
  nav .nav-slide {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 100%;
  }
  .wrap {
    background: url("../images/lb.png");
  }
  .wrapper1 {
    margin: auto;
    height: 100vh;
    width: 100vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .wrapper1 .caro-box {
    background-color: #2b2731;
  }
  #top-bar {
    height: 4px;
  }
  #low-bar {
    height: 10px;
  }
  aside {
    display: none;
  }
  section {
    padding: 30px 10px 30px 10px;
  }
}

@media (min-width: 832px) and (max-width: 1000px) {
  .wrapper0 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mobile-table {
    display: none;
  }
  .filler {
    display: none;
    -webkit-box-flex: .5;
        -ms-flex: .5;
            flex: .5;
  }
  #logo-fill {
    display: block;
  }
  nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  nav ul {
    display: none;
    min-width: 259px;
  }
  nav ul li {
    padding: 1px 0px;
    padding-left: 25px;
    -webkit-transition: .6s ease-in-out;
    transition: .6s ease-in-out;
    -webkit-transition-property: background-color transform;
    transition-property: background-color transform;
  }
  nav ul li a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 520;
    width: 100%;
    color: #000033;
  }
  nav .logo-box {
    max-width: 82px;
    -webkit-box-flex: .5;
        -ms-flex: .5;
            flex: .5;
    margin: 0;
    padding: 0;
  }
  nav .nav-slide {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    min-width: 44px;
  }
  .wrapper1 {
    width: 100%;
  }
  .media1 {
    display: block;
  }
  .enquiries-box {
    display: none;
  }
  section {
    padding: 30px 15px 30px 15px;
  }
  main aside {
    width: 300px;
  }
  main aside form {
    margin: 30px 25px;
  }
}

@media (min-width: 1001px) and (max-width: 1116px) {
  .wrapper0 {
    width: 93%;
  }
  .mobile-table {
    display: none;
  }
  .wrapper1 .caro-box img {
    width: 341px;
    min-height: 150px;
    max-height: 150px;
  }
  nav {
    height: 150px;
  }
  nav .nav-slide {
    width: 341px;
  }
  nav .filler {
    -webkit-box-flex: .2;
        -ms-flex: .2;
            flex: .2;
    width: 15px;
  }
  nav ul li a {
    font-size: 18px;
  }
  nav #logo-fill {
    display: none;
  }
  nav ul {
    width: 250px;
  }
  nav ul li {
    padding: 1px 0px 1px 15px;
  }
  nav .logo-box img {
    width: 360px;
  }
}

@media (min-width: 1117px) and (max-width: 1304px) {
  .wrapper0 {
    width: 1038px;
    margin: auto;
  }
  #logo-fill {
    display: none;
  }
  nav .filler {
    -webkit-box-flex: .2;
        -ms-flex: .2;
            flex: .2;
    width: 40%;
  }
}

@media (min-width: 1281px) and (max-width: 1304) {
  .wrapper0 {
    width: 95%;
  }
}
/*# sourceMappingURL=style.css.map */