* {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
}

.layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[8];
      grid-template-columns: repeat(8, 1fr);
}

.menu {
  -webkit-transform: translateY(460px);
          transform: translateY(460px);
}

.linkHome {
  text-transform: uppercase;
  font-weight: 700;
}

.sublinks {
  margin: 0;
  padding: 5px 20px;
}

.error {
  color: red;
}

/* #pageBanner {
    height: 400px;
    width: 100%;
    position: relative;
    
    img {
        height: auto;
        height: 400px;
        width: 100%;
    }

    h1 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        color: #fff;
        text-transform: capitalize;
        width: 100%;
        text-align: center;
    }
} */
body {
  scroll-behavior: smooth;
}

body header {
  background-color: gold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 50px;
  width: 100%;
  position: absolute;
  position: fixed;
  top: -71px;
  z-index: 9;
  -webkit-transition: 1s;
  transition: 1s;
}

body header .frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: inherit;
}

body header .frame a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #000;
}

body header .frame a img {
  width: 30px;
}

body header .frame a h1 {
  font-weight: 600;
  font-size: 1.1em;
  margin-left: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
}

body header .frame a span {
  font-size: 1em;
}

body header .frame i {
  font-size: 26px;
  font-weight: bold;
  color: #333;
}

body nav {
  display: -ms-grid;
  display: grid;
  background: #f4f4f4;
  background: #efefef;
  position: absolute;
  position: fixed;
  top: -410px;
  left: 0;
  width: 100%;
  -webkit-transition: 1s;
  transition: 1s;
  z-index: 8;
  text-align: center;
}

body nav ul {
  padding: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body nav ul li {
  list-style-type: none;
  /* border-bottom: 1px solid #333; */
}

body nav ul li a {
  text-decoration: none;
  text-transform: capitalize;
  color: #333;
}

body main {
  /* ABOUT PAGE */
  /* CONTACT PAGE */
}

body main .p_tb20 {
  padding: 20px 0;
}

body main .bigPad {
  max-width: 1024px;
  display: block;
  margin: auto;
  margin-top: -10px;
}

body main #landingLayout {
  height: 630px;
  height: 100vh;
  background-image: url(../images/review.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  position: relative;
}

body main #landingLayout .landing_layout_text {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 70%);
  color: #333;
  color: #f4f4f4;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  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;
}

body main #landingLayout .landing_layout_text .delimiter {
  height: 7px;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(gold), color-stop(transparent), to(gold));
  background: linear-gradient(to right, gold, transparent, gold);
}

body main #landingLayout .landing_layout_text img {
  width: 120px;
  padding-right: 10px;
  margin-bottom: 10px;
  display: block;
  margin: 0 auto;
}

body main #landingLayout .landing_layout_text h2 {
  text-transform: uppercase;
  padding: 15px;
  font-size: 21px;
}

body main #landingLayout .landing_layout_text h2 strong {
  color: gold;
  font-style: italic;
}

body main #landingLayout .landing_layout_text p {
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: normal;
  width: 45ch;
}

body main #landingLayout .landing_layout_text button {
  background-color: #000;
  color: gold;
  border: none;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1em;
  margin-top: 20px;
  border-radius: 5px;
  font-weight: 600;
  width: 200px;
}

body main #aboutSummary {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: auto;
  background-color: #fff;
}

body main #aboutSummary img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

body main #aboutSummary article {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body main #aboutSummary article div {
  border-radius: 5px;
  color: #333;
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

body main #aboutSummary article div h1 {
  margin-bottom: 10px;
  font-size: 2em;
  font-weight: 900;
}

body main #aboutSummary article div button {
  background-color: gold;
  color: #000;
  border: none;
  padding: 9px 20px;
  margin-top: 10px;
  font-weight: 500;
  border-radius: 5px;
  font-size: .9em;
}

body main #business {
  background: #f4f4f4;
  height: auto;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body main #business h1 {
  padding: 0px 0 20px 20px;
  font-size: 2em;
  font-weight: 900;
  text-align: left;
}

body main #business article {
  display: -ms-grid;
  display: grid;
  row-gap: 2em;
  padding: 0 20px;
}

body main #business article .subsidiary {
  background: #fff;
  border-radius: 5px;
  height: 300px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  position: relative;
}

body main #business article .subsidiary img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body main #business article .subsidiary figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, rgba(0, 0, 0, 0.6)));
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 90%);
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  color: #fff;
  text-shadow: 0 0 5px #333;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

body main #business article .subsidiary figcaption i {
  font-size: 2em;
}

body main #business article .subsidiary figcaption h3 {
  text-transform: capitalize;
  font-size: 1.2em;
  margin-bottom: 5px;
}

body main #business article .subsidiary figcaption p {
  font-size: .9em;
  margin-bottom: 10px;
}

body main #business article .subsidiary figcaption button {
  border: none;
  color: #333;
  background-color: gold;
  border-radius: 5px;
  height: 30px;
  width: 100px;
  font-size: .8em;
  border-radius: 5px;
}

body main #business article .subsidiary figcaption button i {
  font-size: inherit;
}

body main #clients {
  padding-top: 20px;
  padding-bottom: 40px;
}

body main #clients h1 {
  font-size: 2em;
  font-weight: 900;
  text-align: left;
  padding: 0px 0 20px 20px;
}

body main #clients article {
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 2em;
  width: 100%;
}

body main #clients article img {
  width: 100%;
  height: auto;
}

body main #categoryList {
  width: auto;
  overflow-x: scroll;
  background-color: #ccc;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
  display: none;
}

body main #categoryList ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body main #categoryList ul li {
  margin-right: 10px;
  font-size: .8em;
}

body main #categoryList ul li:first-child {
  border-bottom: 5px solid gold;
}

body main #bookings {
  background: #f4f4f4;
  height: 200px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body main #bookings p {
  font-size: 1.2em;
  text-align: center;
  font-weight: bold;
}

body main #bookings a {
  margin-top: 20px;
}

body main #bookings a button {
  font-size: 1em;
  color: #fff;
  color: #333;
  background: #333;
  background-color: gold;
  border-radius: 5px;
  width: 120px;
  height: 40px;
  border-radius: 5px;
  font-weight: bold;
}

body main .ptb10px_lr20px {
  padding: 10px 20px;
}

body main .pad20 {
  padding: 30px;
}

body main .pad20 p {
  margin-top: 20px;
}

body main .pad20 ul {
  margin-top: 20px;
  padding-left: 20px;
}

body main #pageBanner {
  background: url(../images/landing_img.jpg);
  background: url(../images/review.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #fff;
  height: 360px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: relative;
}

body main #pageBanner #pageBannerContent {
  height: inherit;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
}

body main #pageBanner #pageBannerContent a {
  color: #fff;
  text-decoration: none;
}

body main #pageBanner #pageBannerContent a h3 {
  font-weight: 900;
  text-shadow: 0 0 5px #333;
}

body main #pageBanner #pageBannerContent h1 {
  font-size: 2.3em;
  font-weight: 900;
  text-shadow: 0 0 5px #333;
}

body main #pageBanner #pageBannerContent p {
  font-size: .9em;
  text-shadow: 0 0 5px #333;
}

body main #pageBanner #hybridHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 50px;
  width: 100%;
  position: absolute;
  z-index: 9;
  text-shadow: 0 1px 0 #ccc;
}

body main #pageBanner #hybridHeader a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #fff;
}

body main #pageBanner #hybridHeader a img {
  width: 30px;
}

body main #pageBanner #hybridHeader a h1 {
  font-weight: 600;
  font-size: 1.1em;
  margin-left: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
}

body main #pageBanner #hybridHeader i {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
}

body main #aboutContent {
  /* padding: 30px; */
}

body main #aboutContent #about {
  background: url(../images/landing_img.jpg);
  color: #fff;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 30px;
}

body main #aboutContent #about h1 {
  font-size: 2.3em;
  font-weight: 900;
}

body main #aboutContent #about p {
  font-size: .9em;
}

body main #aboutContent #mission_and_vision {
  text-align: center;
  background: #f4f4f4;
  padding: 70px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body main #aboutContent #mission_and_vision div {
  max-width: 500px;
}

body main #aboutContent #mission_and_vision div h3 {
  font-weight: 500;
  font-size: 1em;
}

body main #aboutContent #mission_and_vision div h1 {
  font-size: 1.7em;
  font-weight: 900;
  color: #333;
}

body main #aboutContent #mission_and_vision div p {
  font-size: .9em;
  line-height: 20px;
}

body main #aboutContent #aims_and_objectives {
  color: #333;
  padding-bottom: 50px;
  padding: 70px 20px;
}

body main #aboutContent #aims_and_objectives h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #006837;
}

body main #aboutContent #aims_and_objectives ul {
  font-size: .9em;
  line-height: 20px;
}

body main #aboutContent h3 {
  margin-top: 10px;
}

body main #aboutContent p {
  margin-top: 10px;
}

body main #aboutContent ul {
  margin-left: 20px;
}

body main #contactContent article {
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -ms-grid;
  display: grid;
  background-image: url(/images/bg-map.png);
}

body main #contactContent article h1 {
  margin: 10px 0;
  font-weight: 700;
}

body main #contactContent article section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body main #contactContent article section i, body main #contactContent article section a > i {
  font-size: 28px;
}

body main #contactContent article #socialMedia article div a {
  color: #333;
}

body main #contactContent form {
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body main #contactContent form h2 {
  color: #333;
  margin: 10px 0;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
}

body main #contactContent form div {
  display: -ms-grid;
  display: grid;
  margin-bottom: 10px;
}

body main #contactContent form div label {
  font-weight: 600;
  margin-bottom: 5px;
}

body main #contactContent form div input, body main #contactContent form div textarea {
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f4f4f4;
  border: none;
}

body main #contactContent form div input {
  height: 30px;
}

body main #contactContent form div button {
  border: none;
  background-color: gold;
  width: 150px;
  height: 45px;
  border-radius: 5px;
  font-size: 1em;
  font-weight: 600;
  display: block;
  margin: 10px auto;
}

body main #subsidiaries {
  background: #fafafa;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body main #subsidiaries .subsidiaryCategory h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, right top, from(rgba(220, 220, 220, 0.9)));
  background: linear-gradient(to right, rgba(220, 220, 220, 0.9));
  color: #000;
  padding-left: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 40px;
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
  font-size: 1.2em;
  text-shadow: 0 0 3px #f4f4f4;
}

body main #subsidiaries article {
  display: -ms-grid;
  display: grid;
  row-gap: 2em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 20px auto;
  height: auto;
}

body main #subsidiaries article .subsidiary {
  background: #fff;
  border-radius: 5px;
  height: auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
}

body main #subsidiaries article .subsidiary img {
  width: 100%;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

body main #subsidiaries article .subsidiary div {
  width: 100%;
  height: auto;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}

body main #subsidiaries article .subsidiary div i {
  font-size: 2em;
}

body main #subsidiaries article .subsidiary div h4 {
  text-transform: capitalize;
  font-size: 1.1em;
  margin-bottom: 5px;
}

body main #subsidiaries article .subsidiary div p {
  font-size: .9em;
  margin-bottom: 10px;
}

body main #subsidiaries article .subsidiary div button {
  border: none;
  color: #333;
  background-color: gold;
  border-radius: 5px;
  height: 30px;
  width: 100px;
  font-size: .8em;
  border-radius: 5px;
}

body main #subsidiaries article .subsidiary div button i {
  font-size: inherit;
}

body #bookingsContainer form {
  padding: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #f4f4f4;
  padding-top: 50px;
}

body #bookingsContainer form h2 {
  color: #333;
  margin: 10px 0;
  text-transform: uppercase;
  text-align: center;
}

body #bookingsContainer form div {
  display: -ms-grid;
  display: grid;
  margin-bottom: 10px;
}

body #bookingsContainer form div label {
  font-weight: 600;
  margin-bottom: 5px;
}

body #bookingsContainer form div input, body #bookingsContainer form div textarea, body #bookingsContainer form div select, body #bookingsContainer form div #populateStackItems {
  border: 1px solid #ccc;
  border-radius: 5px;
}

body #bookingsContainer form div input, body #bookingsContainer form div select {
  height: 30px;
}

body #bookingsContainer form div #populateStackItems {
  height: 300px;
  width: 100%;
  border: 1px solid #ccc;
  background-color: red !important;
}

body footer {
  color: #ccc;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #000;
  min-height: 300px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body footer .frame a {
  /* color: #333; */
  color: #ccc;
  text-decoration: none;
}

body footer .frame ul {
  list-style-type: none;
  /* color: #fff; */
  color: #ddd;
  /* color: #333; */
}

body footer .frame ul li {
  padding-top: 5px;
}

body footer .frame h3 {
  color: #f4f4f4;
  text-transform: uppercase;
  /* color: #006837; */
  font-size: 1em;
}

body footer .frame h3 a {
  color: gold;
}

body footer .frame article {
  margin-bottom: 20px;
}

body footer .frame article div {
  color: #fff;
  color: #ddd;
}

body footer .frame article div i {
  font-size: 32px;
  font-weight: bold;
  color: #ddd;
  margin-right: 10px;
}

body footer .frame article div .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5px;
}

body footer .frame article div .contact article {
  display: -ms-grid;
  display: grid;
}

body footer .frame article div .contact article h5 {
  text-transform: uppercase;
  text-decoration: underline;
}

body footer #socialMedia {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  padding: 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 3px solid gold;
  margin-bottom: 20px;
}

body footer #socialMedia a {
  color: inherit;
}

body footer #socialMedia a i {
  font-size: 32px;
}

body footer #copyright {
  text-align: center;
  font-size: inherit;
}

body footer #copyright a {
  color: inherit;
  text-decoration: none;
}

body footer #copyright .line {
  height: 3px;
  width: 90%;
  background: -webkit-gradient(linear, left top, right top, from(gold), color-stop(transparent), to(gold));
  background: linear-gradient(to right, gold, transparent, gold);
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(gold), to(transparent));
  background: linear-gradient(to right, transparent, gold, transparent);
  margin: 15px auto;
}

@media screen and (min-width: 700px) {
  .frame {
    max-width: 1024px;
    margin: auto;
  }
  .ptb10px_lr20px {
    padding: 10px 0 !important;
  }
  #clients article {
    -ms-grid-columns: (1fr)[4] !important;
        grid-template-columns: repeat(4, 1fr) !important;
  }
  #clients article .frame {
    padding-left: 0px;
    padding-right: 0px;
  }
  .boxes {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    grid-gap: 2em;
  }
  #landingLayout .landing_layout_text .delimiter {
    height: 20px;
  }
  #landingLayout .landing_layout_text img {
    width: 200px !important;
  }
  #landingLayout .landing_layout_text h2 {
    margin: 20px 0;
    font-size: 2em !important;
    text-align: center !important;
  }
  #landingLayout .landing_layout_text p {
    width: 100%;
    font-size: 1.3em !important;
    margin: 20px auto;
  }
  #aboutSummary {
    height: 400px !important;
    font-size: 1.2em;
  }
  #aboutSummary .frame {
    padding-left: 0;
    padding-right: 0;
  }
  #clients {
    padding: 60px 0px !important;
  }
  #clients article {
    padding-left: 0;
    padding-right: 0;
  }
  #business {
    padding: 80px 0px !important;
  }
  #business h1 {
    text-align: center;
  }
  footer {
    padding: 60px 0px !important;
  }
  footer .frame {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
/*# sourceMappingURL=style.css.map */