@-webkit-keyframes jiggle {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes jiggle {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q::before, q::after, blockquote::before, blockquote::after {
  content: '';
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

button {
  overflow: visible;
  width: auto;
}

html, body {
  height: 100%;
  background-color: #eeede8;
  position: relative;
  transition: all 0.5s ease-in-out;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

@font-face {
  font-family: Gotham Book;
  src: url("/fonts/gotham-book/gotham-book-webfont.woff2") format("woff2"), url("/fonts/gotham-book/gotham-book-webfont.woff") format("woff"), url("/fonts/gotham-book/gotham-book-webfont.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Gotham Book', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000000;
  line-height: 1.23077;
  font-size: 1rem;
}

@media (min-width: 667px) and (orientation: landscape) {
  body {
    font-size: 1rem;
  }
}

@media (min-width: 768px) and (orientation: portrait) {
  body {
    font-size: 1.375rem;
  }
}

@media (min-width: 1024px) and (orientation: landscape) {
  body {
    font-size: 1.375rem;
  }
}

@media (min-width: 768px) and (orientation: portrait) {
  body {
    font-size: 1.625rem;
  }
}

@media (min-width: 1024px) and (orientation: landscape) {
  body {
    font-size: 1.625rem;
  }
}

@media (min-width: 1400px) {
  body {
    font-size: 1.375rem;
  }
}

@media (min-width: 1600px) {
  body {
    font-size: 1.625rem;
  }
}

p {
  font-size: 0.8125rem;
}

@media (min-width: 768px) and (orientation: portrait) {
  p {
    font-size: 1.375rem;
  }
}

@media (min-width: 1024px) and (orientation: landscape) {
  p {
    font-size: 1.375rem;
  }
}

@media (min-width: 768px) and (orientation: portrait) {
  p {
    font-size: 1.625rem;
  }
}

@media (min-width: 1024px) and (orientation: landscape) {
  p {
    font-size: 1.625rem;
  }
}

@media (min-width: 1400px) {
  p {
    font-size: 1.375rem;
  }
}

@media (min-width: 1600px) {
  p {
    font-size: 1.625rem;
  }
}

li.call-link--desktop {
  display: none;
}

@media (min-width: 1025px) {
  li.call-link--desktop {
    display: block;
  }
}

li.call-link--mobile {
  display: block;
}

@media (min-width: 1025px) {
  li.call-link--mobile {
    display: none;
  }
}

li a {
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.5s ease-in-out;
}

li a:hover {
  border-color: #000000;
  text-decoration: none;
}

li a:focus {
  color: white;
  background: #000000;
}

footer li a {
  color: white;
}

footer li a:hover {
  border-color: white;
}

@supports (display: grid) {
  .grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 0;
  }
  .grid-container.content--why, .grid-container.content--about, .grid-container.content--services, .grid-container.content--accreditation, .grid-container.content--footer {
    display: none;
  }
}

.grid-container--absolute {
  position: absolute;
  bottom: 3rem;
  width: 100%;
}

.content {
  padding: 0 20px;
}

@media (min-width: 667px) and (orientation: landscape) {
  .content {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .content {
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .content {
    padding: 0;
    margin-top: 4.75rem;
  }
}

.content h2, .content p, .content ul {
  grid-column: 1 / span 12;
}

@media (min-width: 667px) and (orientation: landscape) {
  .content h2, .content p, .content ul {
    grid-column: 2 / span 10;
  }
}

@media (min-width: 768px) {
  .content h2, .content p, .content ul {
    grid-column: 2 / span 10;
  }
}

@media (min-width: 1024px) {
  .content h2, .content p, .content ul {
    grid-column: 2 / span 10;
  }
}

.content h2 {
  margin-bottom: 1.4rem;
}

.content p {
  margin-top: 1.4rem;
}

.content p:first-of-type {
  margin-top: 0;
}

@media (min-width: 1400px) {
  .content--why h2, .content--services h2 {
    grid-column: 2 / span 2;
  }
}

@media (min-width: 1400px) {
  .content--why p, .content--services p {
    grid-column: 4 / span 6;
  }
}

@media (min-width: 1600px) {
  .content--why p, .content--services p {
    grid-column: 4 / span 5;
  }
}

@media (min-width: 1400px) {
  .content--about h2, .content--accreditation h2 {
    grid-column: 4 / span 2;
  }
}

@media (min-width: 1400px) {
  .content--about p, .content--accreditation p {
    grid-column: 6 / span 5;
  }
}

header {
  padding: 0 20px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
}

@media (min-width: 667px) and (orientation: landscape) {
  header {
    padding: 0;
  }
}

@media (min-width: 768px) {
  header {
    padding: 0;
  }
}

header #logoFadeOne,
header #logoFadeTwo,
header #logoFadeThree,
header #logoFadeFour {
  opacity: 0;
}

header h1 {
  grid-column: 1 / span 7;
}

header h1 a {
  text-decoration: none;
  color: #000000;
}

@media only screen and (device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape) {
  header h1 {
    grid-column: 1 / span 4;
  }
}

@media (min-width: 667px) and (orientation: landscape) {
  header h1 {
    grid-column: 2 / span 4;
  }
}

@media (device-width: 667px) and (device-height: 375px) and (orientation: landscape) {
  header h1 {
    grid-column: 2 / span 4;
  }
}

@media (min-width: 768px) and (max-width: 812px) and (orientation: landscape) {
  header h1 {
    grid-column: 2 / span 3;
  }
}

@media (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
  header h1 {
    grid-column: 2 / span 5;
  }
}

@media (min-width: 1024px) and (orientation: portrait) {
  header h1 {
    grid-column: 2 / span 4;
  }
}

@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
  header h1 {
    grid-column: 2 / span 3;
  }
}

@media (device-width: 1024px) and (device-height: 768px) and (orientation: landscape) {
  header h1 {
    grid-column: 2 / span 4;
  }
}

@media (min-width: 1400px) {
  header h1 {
    grid-column: 2 / span 2;
  }
}

@media (min-width: 1600px) {
  header h1 {
    grid-column: 2 / span 2;
  }
}

@media (min-width: 2450px) {
  header h1 {
    Width: 70%;
  }
}

header ul.contact-links {
  display: none;
  opacity: 0;
}

@media (min-width: 1024px) {
  header ul.contact-links {
    display: block;
    grid-column: 9 / span 3;
  }
}

@media (min-width: 1400px) {
  header ul.contact-links {
    grid-column: 6 / span 7;
  }
}

header button.menu {
  opacity: 0;
  font-size: inherit;
  font-family: inherit;
  -webkit-appearance: none;
  background: none;
  outline: 0;
  border: 0;
  padding: 0;
  color: inherit;
  font-size: inherit;
  text-decoration: none;
  grid-column: 11 / span 2;
  align-self: start;
  position: relative;
  right: 2px;
  width: fit-content;
}

header button.menu:focus {
  background: #000000;
  color: white;
}

@media (min-width: 1024px) {
  header button.menu {
    display: none;
  }
}

.hero {
  position: relative;
  height: 100%;
  background: url("https://res.cloudinary.com/dkhhkhfox/image/upload/f_auto,q_auto:best/v1570534371/BCC/bcc-hero--mobile_yjxpqk.jpg") no-repeat;
  background-size: cover;
  opacity: 0;
}

@media (min-width: 568px) and (orientation: landscape) {
  .hero {
    background: url("https://res.cloudinary.com/dkhhkhfox/image/upload/f_auto,q_auto:best/v1570535496/BCC/BCC-hero--tablet_oiwbks.jpg") no-repeat;
    background-size: cover;
  }
}

@media (min-width: 768px) {
  .hero {
    background: url("https://res.cloudinary.com/dkhhkhfox/image/upload/f_auto,q_auto:best/v1570535496/BCC/BCC-hero--tablet_oiwbks.jpg") no-repeat;
    background-size: cover;
  }
}

@media (min-width: 1024px) {
  .hero {
    background: url("https://res.cloudinary.com/dkhhkhfox/image/upload/f_auto,q_auto:best/v1570535295/BCC/BCC-hero--desktop_qbf8ti.jpg") no-repeat;
    background-size: cover;
  }
}

.arrow {
  display: none;
  position: relative;
  width: 1.66rem;
  height: 5rem;
  background: url("/images/arrow.svg") no-repeat;
  grid-column: 2 / span 1;
  bottom: 0;
  transition: all ease-in-out 0.25s;
}

@media only screen and (device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2) {
  .arrow {
    display: none;
  }
}

@media only screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
  .arrow {
    display: none;
  }
}

@media only screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape) {
  .arrow {
    display: none;
  }
}

@media only screen and (device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
  .arrow {
    display: block;
    width: 2.33333333rem;
    height: 7rem;
  }
}

@media only screen and (device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape) {
  .arrow {
    display: none;
  }
}

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
  .arrow {
    display: block;
    width: 1.9rem;
    height: 5.75rem;
  }
}

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape) {
  .arrow {
    display: none;
  }
}

@media only screen and (device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
  .arrow {
    display: block;
    width: 2.33333333rem;
    height: 7rem;
  }
}

@media only screen and (device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape) {
  .arrow {
    display: none;
    width: 44px;
    height: 130px;
  }
}

@media only screen and (device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
  .arrow {
    display: block;
    width: 44px;
    height: 130px;
  }
}

@media only screen and (device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape) {
  .arrow {
    display: block;
    width: 44px;
    height: 130px;
  }
}

@media (min-width: 1400px) {
  .arrow {
    display: block;
    width: 44px;
    height: 130px;
  }
}

.arrow--hero {
  display: block;
  opacity: 0;
}

.arrow--footer {
  display: block;
}

@media only screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape) {
  .arrow--footer {
    width: 1.1rem;
    height: 4rem;
  }
}

@media only screen and (device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape) {
  .arrow--footer {
    width: 1.1rem;
    height: 4rem;
  }
}

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape) {
  .arrow--footer {
    display: none;
  }
}

.arrow:hover {
  bottom: -5px;
}

.arrow--dark {
  background: url("/images/arrow--dark.svg") no-repeat;
}

.arrow--footer {
  transform: rotate(180deg);
  top: 0;
}

.arrow--footer:hover {
  top: -5px;
}

footer {
  color: white;
}

footer ul {
  line-height: 1.23077;
  margin-top: 1.4rem;
}

footer ul:first-of-type {
  margin-top: 0;
}

@media (min-width: 1400px) {
  .content--footer h2 {
    grid-column: 2 / span 2;
  }
}

@media (min-width: 1400px) {
  .content--footer ul.contact-links {
    grid-column: 4 / span 2;
  }
}

body.background-dark {
  background: #000000;
}

body.background-dark footer {
  color: white;
}

body.background-dark header h1 a {
  color: white;
}

ul.company-details {
  font-size: 0.8125rem;
}

@media (min-width: 1024px) {
  ul.company-details--mobile {
    display: none;
  }
}

ul.company-details--desktop {
  color: white;
  display: none;
}

@media (min-width: 1024px) {
  ul.company-details--desktop {
    display: block;
    grid-column: 3 / span 6;
  }
}

@media (min-width: 1400px) {
  ul.company-details {
    grid-column: 4 / span 6;
    font-size: 1rem;
  }
  ul.company-details li {
    line-height: 1.3;
  }
  ul.company-details li:nth-of-type(2), ul.company-details li:nth-of-type(3), ul.company-details li:nth-of-type(4) {
    display: inline;
  }
}

header {
  height: 7rem;
}

.section.fp-section {
  padding-top: 7rem;
}

@media only screen and (device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape) {
  header {
    height: 4rem;
  }
  .section.fp-section {
    padding-top: 4rem;
  }
}

@media only screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape) {
  header {
    height: 5rem;
  }
  .section.fp-section {
    padding-top: 5rem;
  }
}

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape) {
  header {
    height: 3rem;
  }
  .section.fp-section {
    padding-top: 3rem;
  }
}

@media (min-width: 1400px) {
  header {
    height: 9rem;
  }
  .section.fp-section {
    padding-top: 9rem;
  }
}

.mobile-menu {
  display: block;
  position: absolute;
  background: #000000;
  height: 100%;
  width: 100%;
  z-index: 10;
  right: -100%;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  color: white;
  padding: 3rem 2rem;
  line-height: 1.3;
}

.mobile-menu::before {
  content: "";
  display: inline-block;
  height: 1em;
  width: 2.5em;
  background: url("/images/arrow--mobile-menu.svg") no-repeat center bottom;
  -webkit-animation: jiggle 2s ease-in-out;
  animation: jiggle 2s ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.mobile-menu--open {
  right: 0%;
  opacity: 100;
}

.mobile-menu a {
  color: white;
}

.mobile-menu button.close-menu {
  font-size: inherit;
  font-family: inherit;
  -webkit-appearance: none;
  background: none;
  outline: 0;
  border: 0;
  padding: 0;
  color: white;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu footer {
  position: absolute;
  bottom: 3rem;
}

.mobile-menu footer ul.company-details {
  font-size: 0.7rem;
}

/*# sourceMappingURL=styles.css.map */
