/* Screen Sizes */
/* Structure */
/* Colours */
/* Typography */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "GothamPro Medium", "GothamPro Regular", "Helvetica Neue", Helvetica, sans-serif;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 100%;
  margin: auto;
}
body {
  line-height: 2.25rem;
  font-size: 1.25rem;
}
h1,
h2 {
  font-family: "GothamPro Medium", "GothamPro Regular", "Helvetica Neue", Helvetica, sans-serif;
  color: #dfbc48;
  font-weight: normal;
  margin-bottom: 0;
}
p {
  font-family: "GothamPro Medium", "GothamPro Regular", "Helvetica Neue", Helvetica, sans-serif;
  color: #111;
  margin: 0;
}
address {
  font-style: normal;
  padding: 3rem 6rem;
  font-weight: bold;
}
a:link,
a:visited,
a:hover {
  color: #dfbc48;
}
q {
  font-size: 1.25rem;
}
q:before,
q:after {
  color: #dfbc48;
  font-size: 1.6rem;
}
/* Icons */
.icon_tel:before,
.icon_email:before {
  display: inline-block;
  margin-right: 1rem;
  transform: translateY(25%);
}
/* Page Sections */
/* Header */
.header {
  position: relative;
  background-image: url('../img/header.jpg');
  background-size: cover;
}
.header:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
.header .container {
  padding: 3rem 15rem;
}
.header * {
  position: relative;
  z-index: 2;
}
.header .logo {
  margin: 1.5rem 0;
}
.header address p {
  color: #fff;
  white-space: nowrap;
}
.header .icon_tel:before {
  content: url('img/phone_white.png');
}
.header .icon_email:before {
  content: url('img/email_white.png');
}
/* Intro */
.section_intro h1,
.section_intro h2 {
  color: #ae8d1e;
}
.section_intro .list_services {
  padding-left: 1.5rem;
  margin: 0;
}
.section_intro .list_services li {
  list-style: none;
}
.section_intro .list_services li:before {
  content: '•';
  margin-right: 10px;
  font-weight: bold;
  color: #dfbc48;
}
/* Slideshow */
.wrapper_slideshow {
  max-width: 100%;
  overflow: hidden;
  background-color: #dfbc48;
  position: relative;
  padding-bottom: 3px;
}
.dots {
  position: absolute;
  left: 15px;
  bottom: 15px;
}
/* Services */
.service {
  position: relative;
  background-color: #000;
  flex-basis: 33%;
  flex-shrink: 0;
}
.service img {
  width: 100%;
}
.copy_service {
  padding: 1.5rem 3rem;
  background-color: rgba(0, 0, 0, 0.8);
}
.copy_service h2 {
  margin: 0;
}
.copy_service p {
  color: #fff;
}
/* FAQ */
.section_faq {
  background-color: #dfbc48;
}
.section_faq .container {
  padding: 3rem;
}
.section_faq .grid_halves.container {
  padding: 0 3rem 3rem;
}
.section_faq .grid_halves.container div:first-child {
  padding-right: 3rem;
}
.section_faq h2,
.section_faq p {
  color: #fff;
  margin: 0;
}
/* Enquiries */
.section_enquiry {
  background-color: #000;
}
.section_enquiry .container {
  padding: 6rem 15rem 3rem;
  background-color: #000;
}
.section_enquiry .container h2 {
  margin: 0;
}
.section_enquiry .container p,
.section_enquiry .container q {
  display: block;
  color: #fff;
  margin-bottom: 3rem;
}
.section_enquiry .quote_form {
  order: 2;
}
.section_enquiry .quote_intro {
  order: 1;
}
/* Footer */
.footer .container {
  padding: 3rem 15rem 0;
}
.footer p {
  white-space: nowrap;
}
.footer .icon_tel:before {
  content: url('img/phone_yellow.png');
}
.footer .grid_halves:first-child {
  margin-bottom: 3rem;
}
.footer .icon_email:before {
  content: url('img/email_yellow.png');
}
.copyright,
.webby {
  font-size: 0.7rem;
}
.footer .legals {
  font-size: 0.7rem;
  text-align: center;
  white-space: normal;
  line-height: 1.4;
  margin: 1rem;
}
.webby {
  text-align: right;
}
/* Buttons */
.btn {
  display: inline-block;
  border: 1px solid;
  box-shadow: 0 0 0 1px white;
  padding: 1rem 3rem;
}
fieldset {
  border: none;
}
.row_form {
  margin-bottom: 3rem;
}
.row_form.row_halves {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 3rem;
}
.row_form.row_halves .label {
  white-space: nowrap;
}
.row_form.row_name {
  display: grid;
  grid-template-columns: 1fr 3fr 3fr;
  grid-column-gap: 3rem;
}
.row_form.row_name .label {
  white-space: nowrap;
}
.label {
  display: block;
  color: #fff;
  line-height: 2.25rem;
  margin-bottom: 0.75rem;
}
.field_req .label:after {
  content: '*';
}
.input {
  border: 1px solid #dfbc48;
  border-radius: 0;
  background-color: transparent;
  color: #fff;
  width: 100%;
}
.input_text {
  line-height: 3rem;
  height: 3rem;
  padding: 1rem;
  font-size: 1.2rem;
}
.input_textarea {
  height: 100px;
  padding: 1rem;
  font-size: 1.2rem;
}
.input_select {
  line-height: 3rem;
  padding: 0.6rem;
  font-size: 1.2rem;
}
.input_select option {
  color: #111;
}
.field .btn {
  display: block;
  background: #dfbc48;
  width: 100%;
  font-size: 2.25rem;
}
.message-shown .row-buttons {
  position: relative;
  padding-top: 95px;
}
.message {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  padding: 6px;
  border: 1px solid black;
  border-radius: 1px;
  margin-bottom: 2rem;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.success {
  background-color: #ffffff;
  border-color: #dfbc48;
  color: #796215;
}
.error {
  background-color: #ff9999;
  border-color: red;
  color: red;
}
.shown {
  max-height: 70px;
  opacity: 1;
}
.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  margin: 0;
}
.glide__slides--dragging {
  user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide--rtl {
  direction: rtl;
}
/* Bullets */
.glide__bullets {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
}
.glide__bullet {
  border-radius: 100%;
  height: 20px;
  width: 20px;
  border: 1px solid #fff;
  background-color: transparent;
}
.glide__bullet:hover,
.glide__bullet:focus {
  background-color: #dfbc48;
  opacity: 0.6;
}
.glide__bullet--active {
  background-color: #dfbc48;
  opacity: 1;
}
@media screen and (max-width: 520px) {
  html {
    font-size: 62.5%;
  }
  .header .container,
  .footer .container,
  .section_enquiry .container,
  .section_intro .intro {
    padding: 3rem;
  }
  address {
    padding: 3rem 0 0;
  }
  .wrapper_slideshow {
    padding-bottom: 3px;
  }
  .wrapper_slideshow .glider-dot {
    width: 3rem;
    height: 3rem;
  }
  .glider-slide img {
    margin-top: 3rem;
  }
  .section_enquiry {
    order: 2;
    border-top: 3px #dfbc48 solid;
  }
  .copyright,
  .webby {
    text-align: center;
  }
}
@media screen and (min-width: 650px) {
  body {
    font-size: 1rem;
    line-height: 1.75rem;
  }
  .header .container,
  .footer .container {
    padding: 1.8rem;
  }
  .header .grid_halves,
  .footer .grid_halves {
    grid-column-gap: 1rem;
  }
  .header .grid_halves,
  .footer .grid_halves,
  .grid_thirds {
    display: flex;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 0;
  }
  address {
    padding: 1.5rem 2rem;
  }
  .section_intro .intro {
    padding: 1.8rem;
    padding-top: 0;
  }
  .section_faq .container {
    padding: 1.8rem;
  }
  .section_faq .container.grid_halves {
    padding: 0 1.8rem 1.8rem;
  }
  .section_enquiry .container {
    padding: 1.8rem;
  }
  .copy_service {
    padding: 1.5rem;
  }
  .row_form {
    margin-bottom: 1.5rem;
  }
  .row_form.row_name {
    grid-column-gap: 1.5rem;
  }
  .field .btn {
    font-size: 1.25rem;
  }
  .glider-slide img {
    min-width: 100%;
  }
}
@media screen and (min-width: 1100px) {
  .grid_halves {
    display: flex;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 3rem;
  }
  .grid_halves > div {
    flex-basis: 50%;
  }
  .grid_thirds {
    display: flex;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .grid_thirds > div {
    flex-basis: 33%;
  }
  .header .logo,
  .footer .logo {
    padding: 1.5rem 0 0 12rem;
  }
  .header .contact,
  .footer .contact {
    padding: 1.5rem 0 0 12rem;
  }
  .header .contact address,
  .footer .contact address {
    padding: 3rem 6rem;
  }
  .section_enquiry .quote_intro {
    padding: 1.5rem 12rem 0 0;
    order: 2;
  }
  .section_enquiry .quote_form {
    padding: 1.5rem 0 0 12rem;
    order: 1;
  }
  .section_intro .intro {
    padding: 1.5rem 0 1.5rem 12rem;
  }
  /* On desktop, hide copy until hover */
  .copy_service {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 75px;
    overflow: hidden;
    transition: max-height 0.2s ease-in;
  }
  .copy_service p {
    opacity: 0;
    transition: opacity 0.2s ease-in;
  }
  .service:hover .copy_service {
    max-height: 250px;
    height: auto;
  }
  .service:hover .copy_service p {
    opacity: 1;
  }
  .section_faq {
    padding: 1.5rem 0;
  }
  .section_faq h2 {
    padding-left: 3rem;
  }
  .section_faq h3 {
    margin: 1rem 0 0;
  }
  .section_faq .container {
    padding: 0;
  }
  .section_faq .container div:first-child {
    padding-left: 13.2rem;
  }
  .section_faq .container div:last-child {
    padding-right: 12rem;
  }
  .section_faq > .container:first-child {
    padding-left: 12rem;
  }
  .glide__slide img {
    margin: 0;
  }
  .copyright,
  .webby {
    padding: 0 12rem;
  }
}
@media screen and (min-width: 1920px) {
  .container {
    max-width: 1650px;
  }
}
/*# sourceMappingURL=./screen.css.map */