/*************    BREAKPOINTS     *************/
/*************    RESPONSIVE HELPER     *************/
.responsivehelper,
.responsivehelper:after {
  /*This adds a label in the top-left corner that displays the current media query state.*/
  background: red;
  color: #fff;
  content: "undefined";
  left: 0;
  padding: .5em 1em;
  position: fixed;
  text-align: center;
  top: 400px;
  z-index: 9999;
}
@media only screen and (max-width: 767px) {
  .responsivehelper,
  .responsivehelper:after {
    background: orange;
    content: "mobile";
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .responsivehelper,
  .responsivehelper:after {
    background: purple;
    content: "tablet";
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .responsivehelper,
  .responsivehelper:after {
    background: green;
    content: "small desktop";
  }
}
@media only screen and (min-width: 1200px) {
  .responsivehelper,
  .responsivehelper:after {
    background: blue;
    content: "desktop";
  }
}
@media only screen and (max-width: 767px) {
  #testmediaquerydefine {
    background: orange;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #testmediaquerydefine {
    background: purple;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #testmediaquerydefine {
    background: green;
  }
}
@media only screen and (min-width: 1200px) {
  #testmediaquerydefine {
    background: blue;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) {
  #testmediaquerydefine {
    color: black;
  }
}
/*************    FONTS     *************/
/*************    COLORS     *************/
/*************    UTILITY     *************/
.hidden {
  display: none;
}
@media only screen and (max-width: 767px) {
  .hiddenMobile {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hiddenTablet {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hiddenDesktop {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .hiddenDesktop-xl {
    display: none;
  }
}
/*************    DEFAULT     *************/
* {
  margin: 0 auto;
  padding: 0;
}
a,
li,
img,
input,
textarea,
a span {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
img {
  border: none;
  max-width: 100% !important;
}
a,
a:hover {
  text-decoration: none;
}
a:link {
  color: #000;
}
a:visited {
  color: #000;
}
a:hover {
  color: #000;
}
a:active {
  color: #000;
}
a:focus {
  color: #000;
  text-decoration: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
html,
body {
  height: 100%;
}
body {
  font-size: 18px;
  font-family: "open-sans-condensed", sans-serif;
}
.page-wrap {
  padding-top: 150px;
  min-height: 100%;
  width: 100%;
  overflow: hidden;
  /* equal to footer height */
  margin-bottom: -250px;
}
@media only screen and (max-width: 767px) {
  .page-wrap {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .page-wrap {
    margin-bottom: -450px;
  }
}
.page-wrap:after {
  content: "";
  display: block;
}
footer,
.page-wrap:after {
  height: 250px;
}
@media only screen and (max-width: 767px) {
  footer,
  .page-wrap:after {
    height: 450px;
  }
}
.defaultMargin {
  margin-top: 40px;
  margin-bottom: 40px;
}
.marginBottom {
  margin-bottom: 40px;
}
.marginTop {
  margin-top: 40px;
}
/************FORMS************/
textarea,
input[type="text"] {
  -webkit-appearance: none !important;
}
input -webkit-autofill,
textarea -webkit-autofill {
  color: #fff !important;
}
input,
textarea,
select {
  font-size: 14px;
}
input[type=checkbox],
input[type=radio] {
  margin: 5px;
}
/*************    HOME     *************/
#HomeIntroText {
  margin: 50px 0 50px 0;
  text-align: center;
  line-height: 1.5;
}
#HomeServicesList {
  display: block;
  width: 70%;
  margin: 0 auto 50px auto;
}
@media only screen and (max-width: 767px) {
  #HomeServicesList {
    width: 100%;
  }
}
#HomeServicesList ul {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#HomeServicesList ul li {
  margin: 0;
  -webkit-flex-basis: 48%;
  flex-basis: 48%;
  padding: 0 0 10px 0;
}
@media only screen and (max-width: 767px) {
  #HomeServicesList ul li {
    -webkit-flex-basis: 43%;
    flex-basis: 43%;
    margin: 0;
  }
}
img.DownArrow {
  display: block;
  margin-top: 50px;
}
img.DownArrow:hover {
  cursor: pointer;
}
/*------ Header ------*/
#HeaderContainer {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 1170px;
  position: relative;
  padding: 0 30px 0 30px;
}
header {
  height: 150px;
  position: fixed;
  z-index: 9999;
  top: 0px;
  left: 0px;
  display: block;
  width: 100%;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  header {
    height: 100px;
  }
}
header #MainNavigation {
  position: absolute;
  right: 30px;
}
@media only screen and (min-width: 1200px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  header #MainNavigation {
    bottom: 20px;
  }
}
header #MainNavigation ul li {
  letter-spacing: 1.5px;
  display: inline-block;
  margin-left: 15px;
  position: relative;
}
header #MainNavigation li.active:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  right: 0px;
  height: 0px;
  width: 50%;
  border-bottom: 1px solid black;
}
@media only screen and (max-width: 767px) {
  header #MainNavigation {
    display: none;
    top: 100px;
    right: 0px;
    width: 50%;
    background-color: #fff;
  }
  header #MainNavigation ul li {
    display: block;
    margin: 0;
    text-align: right;
    padding: 0 30px 10px 0;
    margin-bottom: 10px;
  }
}
header #MobileNavToggle {
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -9px;
}
@media only screen and (min-width: 1200px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  header #MobileNavToggle {
    display: none;
  }
}
header #MobileNavToggle span:hover {
  cursor: pointer;
}
#LogoContainer {
  display: block;
  height: 100px;
  width: auto;
  position: absolute;
  top: 50%;
  margin-top: -50px;
}
@media only screen and (max-width: 767px) {
  #LogoContainer {
    height: 75px;
    margin-top: -37.5px;
  }
}
#LogoContainer img {
  position: relative;
  height: 100%;
  display: block;
  margin-left: 0;
}
/*------ HOME BANNER/SLIDER ------*/
.HomeBanner {
  visibility: hidden;
}
.slick-initialized {
  visibility: visible;
}
.Slide {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media only screen and (max-width: 767px) {
  .Slide {
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media only screen and (min-width: 1200px), only screen and (min-width: 992px) and (max-width: 1199px) only screen and (min-width: 768px) and (max-width: 991px) {
  .Slide .SlideLeft,
  .Slide .SlideRight {
    -webkit-flex-basis: 0;
    flex-basis: 0;
  }
}
.Slide .SlideLeft img {
  width: 100%;
}
@media only screen and (min-width: 1200px), only screen and (min-width: 992px) and (max-width: 1199px) only screen and (min-width: 768px) and (max-width: 991px) {
  .Slide .SlideLeft {
    -webkit-flex-grow: 6;
    flex-grow: 6;
  }
}
@media only screen and (max-width: 767px) {
  .Slide .SlideLeft {
    width: 100%;
  }
}
.Slide .SlideRight {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: #000;
}
@media only screen and (min-width: 1200px), only screen and (min-width: 992px) and (max-width: 1199px) only screen and (min-width: 768px) and (max-width: 991px) {
  .Slide .SlideRight {
    -webkit-flex-grow: 4;
    flex-grow: 4;
  }
}
.Slide .SlideRight .SlideText {
  max-width: 80%;
  height: auto;
  font-size: 35px;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .Slide .SlideRight .SlideText {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .Slide .SlideRight .SlideText {
    font-size: 22px;
    padding: 30px 0 30px 0;
  }
}
/*------ INTERNAL PAGE BANNERS ------*/
.InternalBanner {
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media only screen and (max-width: 767px) {
  .InternalBanner {
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
  }
}
@media only screen and (min-width: 1200px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .InternalBanner .InternalBannerLeft,
  .InternalBanner .InternalBannerRight {
    -webkit-flex-basis: 0;
    flex-basis: 0;
  }
}
@media only screen and (min-width: 1200px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .InternalBanner .InternalBannerLeft {
    -webkit-flex-grow: 6;
    flex-grow: 6;
    background-size: cover;
    background-position: center center;
  }
  .InternalBanner .InternalBannerLeft img {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .InternalBanner .InternalBannerLeft {
    width: 100%;
    height: auto;
    background-image: none!important;
  }
  .InternalBanner .InternalBannerLeft img {
    width: 100%;
  }
}
.InternalBanner .InternalBannerRight {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: #000;
  background-size: cover;
}
@media only screen and (min-width: 1200px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .InternalBanner .InternalBannerRight {
    -webkit-flex-grow: 4;
    flex-grow: 4;
  }
}
@media only screen and (max-width: 767px) {
  .InternalBanner .InternalBannerRight {
    height: auto;
    width: 100%;
  }
}
.InternalBanner .InternalBannerRight .BannerText {
  max-width: 80%;
  height: auto;
  font-size: 35px;
  color: #fff;
}
.InternalBanner .InternalBannerRight .BannerText p {
  margin: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .InternalBanner .InternalBannerRight .BannerText {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .InternalBanner .InternalBannerRight .BannerText {
    padding: 20px 0 20px 0;
    font-size: 22px;
  }
}
/*************    SERVICES     *************/
.ServicesContainer {
  display: block;
  width: 100%;
  max-width: 1170px;
  margin: 50px auto 50px auto;
}
.ServicesContainer .Services {
  width: 90%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .ServicesContainer .Services {
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.ServicesContainer .Services .Service {
  margin: 0;
  width: 45%;
}
@media only screen and (max-width: 767px) {
  .ServicesContainer .Services .Service {
    display: block;
    width: 100%;
  }
}
.ServicesContainer .Services .Service h2 {
  font-size: 20px;
  font-weight: bold;
}
#TestimonialsOutter {
  width: 100%;
  background-color: #000;
  padding: 100px 30px 100px 30px;
}
@media only screen and (max-width: 767px) {
  #TestimonialsOutter {
    padding: 50px 30px 50px 30px;
  }
}
#TestimonialsOutter #TestimonialContainer {
  max-width: 1170px;
}
#TestimonialsOutter #TestimonialContainer .Testimonial {
  color: #fff;
  text-align: center;
}
#TestimonialsOutter #TestimonialContainer .Testimonial .TestimonialText {
  font-size: 24px;
}
#TestimonialsOutter #TestimonialContainer .slick-dots li button:before {
  color: #fff;
  zoom: 1;
  filter: alpha(opacity=60);
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
}
#TestimonialsOutter #TestimonialContainer .slick-dots li.slick-active button:before {
  color: #fff;
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
/*------ Footer ------*/
footer {
  background-color: #000;
  font-weight: 300;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-image: url(/_System/assets/footer.png);
  background-position: center center;
  background-size: cover;
  padding: 0 30px 0 30px;
}
#FooterContainer {
  width: 100%;
  max-width: 1170px;
  margin: auto;
}
.FooterContent {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .FooterContent {
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.FooterContent .PricavyPolicyLink {
  position: absolute;
  right: 0px;
  top: 0px;
}
.FooterContent .PricavyPolicyLink a {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .FooterContent .PricavyPolicyLink {
    display: none;
  }
}
.FooterContent .PricavyPolicyLinkMobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .FooterContent .PricavyPolicyLinkMobile {
    display: block;
    position: relative;
    top: 0;
    left: 0;
  }
  .FooterContent .PricavyPolicyLinkMobile a {
    color: #fff;
  }
}
.FooterContent .FooterSection {
  color: #fff;
  margin: 0 30px 0 0;
  min-width: 300px;
}
.FooterContent .FooterSection .FooterSectionInner {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.FooterContent .FooterSection .FooterSectionInner .Labels,
.FooterContent .FooterSection .FooterSectionInner .Details {
  margin: 0 20px 0 0;
}
.FooterContent .FooterSection .FooterSectionInner .Labels {
  width: 100px;
  border-right: 1px solid #fff;
}
.FooterContent .FooterSection .FooterSectionInner .Details {
  width: 250px;
}
.FooterContent .FooterSection .FooterSectionInner .Details a:link {
  color: #fff;
}
.FooterContent .FooterSection .FooterSectionInner .Details a:visited {
  color: #fff;
}
.FooterContent .FooterSection .FooterSectionInner .Details a:hover {
  color: #fff;
  text-decoration: underline;
}
.FooterContent .FooterSection .FooterSectionInner .Details a:active {
  color: #fff;
}
.FooterContent .FooterSection .FooterSectionInner .Details a:focus {
  color: #fff;
}
/*------ ABOUT ------*/
#about {
  width: 100%;
  max-width: 1170px;
  display: block;
  margin: 100px auto 0px auto;
  text-align: center;
  padding: 0 30px 0 30px;
}
#about .AboutSection {
  margin-bottom: 100px;
}
#about img.DownArrow {
  display: block;
  margin-bottom: 50px;
}
#about img.DownArrow:hover {
  cursor: pointer;
}
#OurTeam {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  #OurTeam {
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
#OurTeam .TeamMember {
  margin: 0;
  width: 30%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #OurTeam .TeamMember {
    width: 48%;
  }
}
@media only screen and (max-width: 767px) {
  #OurTeam .TeamMember {
    width: 100%;
    margin-bottom: 20px;
  }
}
#OurTeam .TeamMember img {
  width: 50%;
  margin-bottom: 20px;
}
#OurTeam .TeamMember h3 {
  margin: 0;
  padding: 0;
}
#OurTeam .TeamMember p.Position {
  margin: 0;
  padding: 0;
}
#OurTeam .TeamMember ul {
  margin-left: 30px;
}
#OurTeam .TeamMember ul li {
  list-style-type: disc;
}
#OurTeamContainer {
  max-width: 1170px;
  display: block;
  margin: auto;
  padding: 0 30px 0 30px;
}
#OurTeamContainer h2 {
  text-align: center;
}
/*------ Contact ------*/
#ContactContainer {
  display: block;
  max-width: 1170px;
  margin: 100px auto 60px auto;
}
@media only screen and (max-width: 767px) {
  #ContactContainer {
    margin: auto;
  }
}
#Contact {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media only screen and (max-width: 767px) {
  #Contact {
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
#Contact div {
  padding: 20px;
}
@media only screen and (min-width: 1200px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  #Contact div {
    -webkit-flex-basis: 0;
    flex-basis: 0;
    -webkit-flex-grow: 1;
    flex-grow: 1;
  }
}
@media only screen and (max-width: 767px) {
  #ContactLeftCol {
    margin: 0;
  }
}
#ContactLeftCol #ContactDetails {
  margin: 0 0 30px 0;
}
#ContactLeftCol #ContactDetails .LocationHeading {
  font-weight: 500;
  font-size: 30px;
}
#ContactLeftCol #ContactDetails .CaulfieldHeading {
  margin-top: 20px;
}
#ContactLeftCol #ContactDetails li span {
  font-weight: bold;
  width: 100px;
  display: inline-block;
}
#ContactRightCol p {
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #ContactRightCol {
    margin: 0;
    padding: 0px!important;
  }
  #ContactRightCol p {
    padding: 0 30px 0 30px;
  }
}
#ContactRightCol .contact-form {
  background-color: #000;
}
.google-maps {
  position: relative;
  padding-bottom: 68%!important;
  height: 0;
  overflow: hidden;
}
.google-maps iframe,
.google-maps object,
.google-maps embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#GoogleMapFullWidthContainer {
  margin-top: 15px;
}
#GoogleMapFullWidthContainer .google-maps {
  position: relative;
  padding-bottom: 30%!important;
  height: 0;
  overflow: hidden;
}
#GoogleMapFullWidthContainer .google-maps iframe,
#GoogleMapFullWidthContainer .google-maps object,
#GoogleMapFullWidthContainer .google-maps embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contact-form form input::-webkit-input-placeholder {
  color: #000;
}
.contact-form form input:-moz-placeholder {
  color: #000;
}
.contact-form form input::-moz-placeholder {
  color: #000;
}
.contact-form form input:-ms-input-placeholder {
  color: #000;
}
.contact-form form input,
.contact-form form textarea,
.contact-form form select {
  display: block;
  width: 100%;
  border: none;
  margin-bottom: 15px;
  padding: 15px;
  font-size: 18px;
}
.contact-form form .formSubmit {
  width: 100%;
  background-color: #fff;
  border: none;
  color: #000;
}
.contact-form form select {
  height: 50px;
}
.contact-form form .ContactSubmit {
  color: #000;
  background-color: #fff;
  text-align: left;
}
#ContactConfirmation {
  display: none;
  color: #fff;
}
