/* ---------------------------------------------- *    Big Mama Styles!    Here we collate all of our partials into one file ready to be processed and generate that    beautiful CSS.\* ---------------------------------------------- *//* - Index-------------------------------------------------    - Susy ...................................... 1.0.    - Breakpoint ................................ 2.0.    - Modular Scale ............................. 3.0.    - Mixins .................................... 4.0.    - Variables ................................. 5.0.    - Reset ..................................... 6.0.    - Base ...................................... 7.0.    - Grid ...................................... 8.0.    - Typography ................................ 9.0.    - Nav ...................................... 10.0.    - Header ................................... 11.0.    - Content .................................. 12.0.    - Footer ................................... 13.0.*//* -----------------------------------------    1.0. Susy----------------------------------------- *//* -----------------------------------------    2.0. Breakpoint----------------------------------------- *//* -----------------------------------------    3.0. Modular Scale----------------------------------------- *//* -----------------------------------------    4.0. Mixins----------------------------------------- *//* -----------------------------------------    5.0. Variables----------------------------------------- *//* -----------------------------------------    6.0. Reset----------------------------------------- */* {  box-sizing: border-box; }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-size: 100%;  font: inherit;  vertical-align: baseline; }article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {  display: block; }html, body {  height: 100%; }a img {  border: none; }blockquote {  quotes: none; }blockquote:before, blockquote:after {  content: '';  content: none; }table {  border-collapse: collapse;  border-spacing: 0; }caption, th, td {  text-align: left;  font-weight: normal;  vertical-align: middle; }/* -----------------------------------------    8.0. Grid----------------------------------------- *//* ---------------------------------------------- *  Partial: grid  We're using Susy. Please visit http://susy.readthedocs.org/en/latest/install/  Due to using Susy, we're going to need the Ruby gems installed. Please a see a guide here: [TBD].  Usage  =====\* ---------------------------------------------- *//* - Index-------------------------------------------------  - Global defaults     ............................. 1.0.  - Grid makeup         ............................. 2.0.*//* ---------------------------------------------- *  1.0 Global defaults\* ---------------------------------------------- *//* ---------------------------------------------- *  1.0 Grid makeup\* ---------------------------------------------- */.contain {  max-width: 1080px;  margin-left: auto;  margin-right: auto;  min-width: 1080px; }  .contain:after {    content: " ";    display: block;    clear: both; }  .contain--table {    display: table;    width: 100%;    max-width: 1080px;    min-width: 1080px;    margin: 0 auto; }/* -----------------------------------------    7.0. Base----------------------------------------- */@keyframes fade-in {  0% {    opacity: 0; }  100% {    opacity: 1; } }@-webkit-keyframes fade-in-up {  0% {    -webkit-transform: translateY(20px);            transform: translateY(20px);    opacity: 0; }  100% {    -webkit-transform: translate(0);            transform: translate(0);    opacity: 1; } }@keyframes fade-in-up {  0% {    -webkit-transform: translateY(20px);            transform: translateY(20px);    opacity: 0; }  100% {    -webkit-transform: translate(0);            transform: translate(0);    opacity: 1; } }@-webkit-keyframes fade-in-down {  0% {    -webkit-transform: translateY(-20px);            transform: translateY(-20px);    opacity: 0; }  100% {    -webkit-transform: translate(0);            transform: translate(0);    opacity: 1; } }@keyframes fade-in-down {  0% {    -webkit-transform: translateY(-20px);            transform: translateY(-20px);    opacity: 0; }  100% {    -webkit-transform: translate(0);            transform: translate(0);    opacity: 1; } }@-webkit-keyframes fade-in-up-big {  0% {    -webkit-transform: translateY(100px);            transform: translateY(100px);    opacity: 0; }  100% {    -webkit-transform: translate(0);            transform: translate(0);    opacity: 1; } }@keyframes fade-in-up-big {  0% {    -webkit-transform: translateY(100px);            transform: translateY(100px);    opacity: 0; }  100% {    -webkit-transform: translate(0);            transform: translate(0);    opacity: 1; } }@-webkit-keyframes fade-in-down-big {  0% {    -webkit-transform: translateY(-100px);            transform: translateY(-100px);    opacity: 0; }  100% {    -webkit-transform: translate(0);            transform: translate(0);    opacity: 1; } }@keyframes fade-in-down-big {  0% {    -webkit-transform: translateY(-100px);            transform: translateY(-100px);    opacity: 0; }  100% {    -webkit-transform: translate(0);            transform: translate(0);    opacity: 1; } }@-webkit-keyframes fade-in-left {  0% {    -webkit-transform: translateX(-20px);            transform: translateX(-20px);    opacity: 0; }  100% {    -webkit-transform: translate(0);            transform: translate(0);    opacity: 1; } }@keyframes fade-in-left {  0% {    -webkit-transform: translateX(-20px);            transform: translateX(-20px);    opacity: 0; }  100% {    -webkit-transform: translate(0);            transform: translate(0);    opacity: 1; } }@-webkit-keyframes fade-in-left-big {  0% {    -webkit-transform: translateX(-100px);            transform: translateX(-100px);    opacity: 0; }  100% {    -webkit-transform: translate(0);            transform: translate(0);    opacity: 1; } }@keyframes fade-in-left-big {  0% {    -webkit-transform: translateX(-100px);            transform: translateX(-100px);    opacity: 0; }  100% {    -webkit-transform: translate(0);            transform: translate(0);    opacity: 1; } }@-webkit-keyframes fade-in-right {  0% {    -webkit-transform: translateX(20px);            transform: translateX(20px);    opacity: 0; }  100% {    -webkit-transform: translate(0);            transform: translate(0);    opacity: 1; } }@keyframes fade-in-right {  0% {    -webkit-transform: translateX(20px);            transform: translateX(20px);    opacity: 0; }  100% {    -webkit-transform: translate(0);            transform: translate(0);    opacity: 1; } }@-webkit-keyframes fade-in-right-big {  0% {    -webkit-transform: translateX(100px);            transform: translateX(100px);    opacity: 0; }  100% {    -webkit-transform: translate(0);            transform: translate(0);    opacity: 1; } }@keyframes fade-in-right-big {  0% {    -webkit-transform: translateX(100px);            transform: translateX(100px);    opacity: 0; }  100% {    -webkit-transform: translate(0);            transform: translate(0);    opacity: 1; } }@-webkit-keyframes grow {  0% {    -webkit-transform: scale(0);            transform: scale(0);    opacity: 0; }  100% {    -webkit-transform: scale(1);            transform: scale(1);    opacity: 1; } }@keyframes grow {  0% {    -webkit-transform: scale(0);            transform: scale(0);    opacity: 0; }  100% {    -webkit-transform: scale(1);            transform: scale(1);    opacity: 1; } }@-webkit-keyframes element-overlay {  0% {    width: 0;    left: 0;    -webkit-animation-timing-function: cubic-bezier(0.72, 0.11, 0.61, 0.89);            animation-timing-function: cubic-bezier(0.72, 0.11, 0.61, 0.89); }  30% {    width: 100%;    left: 0;    -webkit-animation-timing-function: cubic-bezier(0.72, 0.11, 0.61, 0.89);            animation-timing-function: cubic-bezier(0.72, 0.11, 0.61, 0.89); }  50% {    width: 100%;    right: 0;    left: auto;    -webkit-animation-timing-function: cubic-bezier(0.72, 0.11, 0.61, 0.89);            animation-timing-function: cubic-bezier(0.72, 0.11, 0.61, 0.89); }  100% {    width: 0%;    right: 0;    -webkit-animation-timing-function: cubic-bezier(0.72, 0.11, 0.61, 0.89);            animation-timing-function: cubic-bezier(0.72, 0.11, 0.61, 0.89); } }@keyframes element-overlay {  0% {    width: 0;    left: 0;    -webkit-animation-timing-function: cubic-bezier(0.72, 0.11, 0.61, 0.89);            animation-timing-function: cubic-bezier(0.72, 0.11, 0.61, 0.89); }  30% {    width: 100%;    left: 0;    -webkit-animation-timing-function: cubic-bezier(0.72, 0.11, 0.61, 0.89);            animation-timing-function: cubic-bezier(0.72, 0.11, 0.61, 0.89); }  50% {    width: 100%;    right: 0;    left: auto;    -webkit-animation-timing-function: cubic-bezier(0.72, 0.11, 0.61, 0.89);            animation-timing-function: cubic-bezier(0.72, 0.11, 0.61, 0.89); }  100% {    width: 0%;    right: 0;    -webkit-animation-timing-function: cubic-bezier(0.72, 0.11, 0.61, 0.89);            animation-timing-function: cubic-bezier(0.72, 0.11, 0.61, 0.89); } }@-webkit-keyframes clip-path-in {  0% {    -webkit-clip-path: polygon(0 86%, 0 100%, 14% 100%, 0 100%);    clip-path: polygon(0 86%, 0 100%, 14% 100%, 0 100%);    opacity: 0; }  100% {    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);    opacity: 1; } }@keyframes clip-path-in {  0% {    -webkit-clip-path: polygon(0 86%, 0 100%, 14% 100%, 0 100%);    clip-path: polygon(0 86%, 0 100%, 14% 100%, 0 100%);    opacity: 0; }  100% {    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);    opacity: 1; } }/*! * animsition v4.0.2 * A simple and easy jQuery plugin for CSS animated page transitions. * http://blivesta.github.io/animsition * License : MIT * Author : blivesta (http://blivesta.com/) */.animsition,.animsition-overlay {  position: relative;  opacity: 0;  -webkit-animation-fill-mode: both;  animation-fill-mode: both; }/** * overlay option */.animsition-overlay-slide {  position: fixed;  z-index: 1;  width: 100%;  height: 100%;  background-color: #ddd; }/* loading option */.animsition-loading,.animsition-loading:after {  width: 32px;  height: 32px;  position: fixed;  top: 50%;  left: 50%;  margin-top: -16px;  margin-left: -16px;  border-radius: 50%;  z-index: 100; }.animsition-loading {  background-color: transparent;  border-top: 5px solid rgba(0, 0, 0, 0.2);  border-right: 5px solid rgba(0, 0, 0, 0.2);  border-bottom: 5px solid rgba(0, 0, 0, 0.2);  border-left: 5px solid #eee;  -webkit-transform: translateZ(0);  transform: translateZ(0);  -webkit-animation-iteration-count: infinite;  animation-iteration-count: infinite;  -webkit-animation-timing-function: linear;  animation-timing-function: linear;  -webkit-animation-duration: .8s;  animation-duration: .8s;  -webkit-animation-name: animsition-loading;  animation-name: animsition-loading; }@-webkit-keyframes animsition-loading {  0% {    -webkit-transform: rotate(0deg);    transform: rotate(0deg); }  100% {    -webkit-transform: rotate(360deg);    transform: rotate(360deg); } }@keyframes animsition-loading {  0% {    -webkit-transform: rotate(0deg);    transform: rotate(0deg); }  100% {    -webkit-transform: rotate(360deg);    transform: rotate(360deg); } }@-webkit-keyframes fade-in {  0% {    opacity: 0; }  100% {    opacity: 1; } }@keyframes fade-in {  0% {    opacity: 0; }  100% {    opacity: 1; } }.fade-in {  -webkit-animation-name: fade-in;  animation-name: fade-in; }@-webkit-keyframes fade-out-up {  0% {    -webkit-transform: translateY(0);    transform: translateY(0);    opacity: 1; }  100% {    -webkit-transform: translateY(-500px);    transform: translateY(-500px);    opacity: 0; } }@keyframes fade-out-up {  0% {    -webkit-transform: translateY(0);    transform: translateY(0);    opacity: 1; }  100% {    -webkit-transform: translateY(-500px);    transform: translateY(-500px);    opacity: 0; } }.fade-out-up {  -webkit-animation-name: fade-out-up;  animation-name: fade-out-up; }@-webkit-keyframes fade-in-up-sm {  0% {    -webkit-transform: translateY(100px);    transform: translateY(100px);    opacity: 0; }  100% {    -webkit-transform: translateY(0);    transform: translateY(0);    opacity: 1; } }/* ---------------------------------------------- *  Partial: base  Here you place the base defaults to any project\* ---------------------------------------------- */*, *:before, *:after {  box-sizing: border-box; }html {  font-size: 100%;  -webkit-text-size-adjust: 100%;      -ms-text-size-adjust: 100%;          text-size-adjust: 100%; }body {  color: #030303;  font-family: "Barlow", sans-serif;  font-size: 13px;  line-height: 1.6;  margin: 0;  opacity: 0;  font-size: 13px; }  @media (min-width: 340px) {    body {      font-size: calc(13px + 3 * (100vw - 340px) / 690); } }  @media (min-width: 1030px) {    body {      font-size: 16px; } }  body.show-menu {    overflow: hidden; }  body.page-loaded {    -webkit-animation: fade-in 300ms ease-out forwards;            animation: fade-in 300ms ease-out forwards; }html, body {  height: 100%;  min-height: 100%; }small {  font-size: 0.85em; }ul li {  list-style: none; }ol li {  list-style: none; }img, object, embed {  height: auto;  max-width: 100%; }blockquote {  color: #FFFFFF;  font-size: 1.1em;  font-style: italic;  margin: 0 0 1.250em 1.250em;  padding: 0.625em 1.250em 1.250em; }  blockquote p:last-child {    margin-bottom: 0; }/*********************************************    - 2.0 -  LINKS*********************************************//* - 2.1. - BASE LINK STYLES    ------------------------------------------ */a {  color: #ffce00;  cursor: pointer;  text-decoration: none;  /* Improve readability when focused and hovered in all browsers: h5bp.com/h */ }  a:hover {    color: #ffa800; }  a:focus {    color: #ffa800; }  a:focus, a:active {    outline: none; }/* - 2.2. - HEADER LINKS     ------------------------------------------ */h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {  color: #ffce00; }/*********************************************    - 3.0 -  Helpers*********************************************/.no-margin {  margin: 0; }.hide {  display: none; }.center-align {  text-align: center; }.page-wrapper {  overflow: hidden; }.container {  width: 82%;  margin: auto;  max-width: 1800px; }  .container:before, .container:after {    content: "";    display: table; }  .container:after {    clear: both; }  @media (min-width: 30em) {    .container {      width: 88%; } }section {  overflow: hidden;  padding: 3em 0;  background-color: #fff; }  section:before, section:after {    content: "";    display: table; }  section:after {    clear: both; }  @media (min-width: 26.25em) {    section {      padding: 4em 0; } }  @media (min-width: 37.5em) {    section {      padding: 6em 0; } }/* -----------------------------------------    9.0. Typography----------------------------------------- *//* ---------------------------------------------- *  Partial: typography  I set all typographic styles here. First we list our variables such as fonts (maybe we're using some @font-face) and  additionally and maps we might want to use. Then we specificy the typographic scales we want.\* ---------------------------------------------- */h1, h2, h3, h4, h5, h6 {  font-family: "Barlow Condensed", sans-serif;  font-style: normal;  color: inherit;  text-rendering: optimizeLegibility;  margin: 2em 0 0.75em;  line-height: 1.4; }  h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {    margin-top: 0; }h1, h2, h3 {  line-height: 1.3; }h1, .h1 {  font-family: "Barlow Condensed", sans-serif;  font-size: 2.98598em; }  @media (min-width: 30em) {    h1, .h1 {      font-size: 2.98598em; } }  @media (min-width: 57.5em) {    h1, .h1 {      font-size: 4.29982em; } }h2, .h2 {  font-family: "Barlow Condensed", sans-serif;  font-size: 2.48832em; }  @media (min-width: 30em) {    h2, .h2 {      font-size: 2.48832em; } }  @media (min-width: 57.5em) {    h2, .h2 {      font-size: 2.98598em; } }h3, .h3 {  font-family: "Barlow Condensed", sans-serif;  font-size: 2.0736em; }  @media (min-width: 57.5em) {    h3, .h3 {      font-size: 2.48832em; } }h4, .h4 {  font-family: "Barlow Condensed", sans-serif;  font-size: 2.0736em; }h5, .h5 {  font-family: "Barlow Condensed", sans-serif;  font-size: 1.44em; }h6, .h6 {  font-family: "Barlow Condensed", sans-serif;  font-size: 1.2em; }p, .p {  font-family: "Barlow", sans-serif;  font-size: 1em;  line-height: 1.7;  text-rendering: optimizeLegibility;  -webkit-font-smoothing: antialiased;  -moz-osx-font-smoothing: grayscale; }  p:not(:last-child), .p:not(:last-child) {    margin-bottom: 1.4em; }strong, b {  font-weight: 600; }em {  font-style: italic; }/* -----------------------------------------    10.0. Nav----------------------------------------- *//* ---------------------------------------------- *  Partial: nav  All navigation styles here. This is sort that we can try keep things seperated and easy to maintain. You can  include all global navigation styles here.\* ---------------------------------------------- */.main-nav {  display: none; }  @media (min-width: 64.6875em) {    .main-nav {      display: table-cell; } }  .main-nav .nav {    float: right; }    .main-nav .nav > ul {      padding-left: 2em;      margin-right: -1.5em; }      .main-nav .nav > ul > li {        float: left;        position: relative;        list-style: none;        padding: 0 0.5em; }        @media (min-width: 81.25em) {          .main-nav .nav > ul > li {            padding: 0 0.75em; } }        .main-nav .nav > ul > li > a {          text-decoration: none;          color: #FFFFFF;          display: block;          padding: 0.75em 0.5em;          font-family: "Barlow Condensed", sans-serif;          text-transform: uppercase;          font-weight: normal;          font-size: 0.75em;          border-bottom: 3px solid transparent; }          @media (min-width: 57.5em) {            .main-nav .nav > ul > li > a {              font-size: 0.875em; } }          @media (min-width: 81.25em) {            .main-nav .nav > ul > li > a {              font-size: 1em;              padding: 0.75em 0.75em; } }          @media (min-width: 90.625em) {            .main-nav .nav > ul > li > a {              font-size: 1.1em; } }          .scrolled .main-nav .nav > ul > li > a {            padding: 0.65em 0; }        .main-nav .nav > ul > li.liLinkActive > a {          color: #ffce00;          border-color: #ffce00; }        .main-nav .nav > ul > li.liLinkActive:hover > a {          color: #ffce00; }        .main-nav .nav > ul > li:hover > a {          color: #ffce00; }        .no-cssanimations .main-nav .nav > ul > li:hover > ul {          display: block; }        .cssanimations .main-nav .nav > ul > li:hover > ul {          visibility: visible;          -webkit-animation: fade-in-down 300ms ease-out forwards;                  animation: fade-in-down 300ms ease-out forwards; }        .main-nav .nav > ul > li > ul {          position: absolute;          top: 100%;          padding: 1rem 0.5rem;          min-width: 10em;          background-color: rgba(204, 165, 0, 0.95);          box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.1);          left: 0;          text-align: left; }          .no-cssanimations .main-nav .nav > ul > li > ul {            display: none; }          .cssanimations .main-nav .nav > ul > li > ul {            opacity: 0;            visibility: hidden;            -webkit-transform: translateY(-100%);                -ms-transform: translateY(-100%);                    transform: translateY(-100%); }          .main-nav .nav > ul > li > ul > li {            display: block; }            .main-nav .nav > ul > li > ul > li a {              display: block;              white-space: nowrap;              padding: 0.5em 1em;              font-family: "Barlow", sans-serif;              color: #fff;              font-size: 14px; }            .main-nav .nav > ul > li > ul > li:hover a {              color: #7f6e26; }.mobile-nav {  opacity: 0;  visibility: hidden;  z-index: -1;  position: fixed;  top: 0;  left: 0;  width: 100%;  height: 100%;  background-color: #030303;  overflow-y: scroll;  -ms-overflow-style: -ms-autohiding-scrollbar;  -webkit-transform: translateY(-125%);      -ms-transform: translateY(-125%);          transform: translateY(-125%);  transition: opacity 250ms ease-out, -webkit-transform 400ms ease-out;  transition: opacity 250ms ease-out, transform 400ms ease-out;  transition: opacity 250ms ease-out, transform 400ms ease-out, -webkit-transform 400ms ease-out; }  .mobile-nav::-webkit-scrollbar {    width: 0 !important; }  .show-menu .mobile-nav {    opacity: 1;    visibility: visible;    z-index: 1000;    -webkit-transform: translateY(0);        -ms-transform: translateY(0);            transform: translateY(0); }  .mobile-nav-inner {    min-height: 100vh;    padding: 4em 0 3em;    display: -webkit-flex;    display: -ms-flexbox;    display: flex;    -webkit-align-items: center;        -ms-flex-align: center;            align-items: center;    -webkit-align-content: center;        -ms-flex-line-pack: center;            align-content: center;    -webkit-justify-content: center;        -ms-flex-pack: center;            justify-content: center;    -webkit-flex-direction: column;        -ms-flex-direction: column;            flex-direction: column; }  @media (min-width: 64.6875em) {    .mobile-nav {      opacity: 0;      visibility: hidden;      z-index: -1; } }  .mobile-nav .nav-button {    position: fixed;    right: 1rem;    top: 0.9rem; }  .mobile-nav .nav, .mobile-nav .secondary-nav {    overflow: hidden;    text-align: center;    margin: 0 auto;    -webkit-backface-visibility: hidden;            backface-visibility: hidden;    width: 90%;    text-align: center;    padding: 0 8%; }    .mobile-nav .nav > ul, .mobile-nav .secondary-nav > ul {      height: 100%;      -webkit-backface-visibility: hidden;              backface-visibility: hidden; }    .mobile-nav .nav li, .mobile-nav .secondary-nav li {      display: block; }      .cssanimations .mobile-nav .nav li, .cssanimations .mobile-nav .secondary-nav li {        opacity: 0;        -webkit-transform: translateY(20px);            -ms-transform: translateY(20px);                transform: translateY(20px); }      .show-menu .mobile-nav .nav li, .show-menu .mobile-nav .secondary-nav li {        -webkit-animation: fade-in-up 300ms ease-out forwards;                animation: fade-in-up 300ms ease-out forwards; }      .mobile-nav .nav li.parent > a, .mobile-nav .secondary-nav li.parent > a {        display: inline-block;        vertical-align: middle; }        .mobile-nav .nav li.parent > a:after, .mobile-nav .secondary-nav li.parent > a:after {          content: "";          background-image: url(/njbgenerators-co-uk/_img/images/svg/cross.svg);          background-position: 50% 50%;          background-size: contain;          background-repeat: no-repeat;          color: #222;          display: inline-block;          height: 0.75em;          width: 0.75em;          position: relative;          left: 1rem;          line-height: 1;          font-size: 16px;          -ms-transform: rotate(0deg);          -webkit-transform: rotate(0deg);                  transform: rotate(0deg);          transition: -webkit-transform 300ms ease-out;          transition: transform 300ms ease-out;          transition: transform 300ms ease-out, -webkit-transform 300ms ease-out; }        .mobile-nav .nav li.parent > a:hover:after, .mobile-nav .secondary-nav li.parent > a:hover:after {          color: #ffd42a; }      .mobile-nav .nav li.parent.open > a:after, .mobile-nav .secondary-nav li.parent.open > a:after {        -webkit-transform: rotate(225deg);            -ms-transform: rotate(225deg);                transform: rotate(225deg); }      .mobile-nav .nav li a, .mobile-nav .secondary-nav li a {        padding: 0.35em 2em;        display: block;        font-size: 15px;        line-height: 1.5;        text-transform: uppercase;        color: #fff;        font-family: "Barlow Condensed", sans-serif; }        @media (min-width: 30em) {          .mobile-nav .nav li a, .mobile-nav .secondary-nav li a {            line-height: 2; } }        .mobile-nav .nav li a:hover, .mobile-nav .secondary-nav li a:hover {          color: #ffd42a;          text-decoration: none; }      .mobile-nav .nav li.open > ul, .mobile-nav .secondary-nav li.open > ul {        display: block; }      .mobile-nav .nav li > ul, .mobile-nav .secondary-nav li > ul {        padding-bottom: 1em;        display: none; }        .mobile-nav .nav li > ul li a, .mobile-nav .secondary-nav li > ul li a {          font-size: 13px;          font-family: "Barlow", sans-serif;          line-height: 1.5;          font-weight: 300;          color: rgba(255, 255, 255, 0.7); }          .mobile-nav .nav li > ul li a:hover, .mobile-nav .secondary-nav li > ul li a:hover {            color: #fff; }  .mobile-nav .secondary-nav {    margin-top: 1.5em;    padding-top: 1.5em;    border-top: 1px solid rgba(255, 255, 255, 0.2); }    .mobile-nav .secondary-nav ul li a {      font-size: 14px;      color: rgba(255, 255, 255, 0.6); }/* -----------------------------------------    11.0. Header----------------------------------------- */header {  position: absolute;  top: 0;  left: 0;  width: 100%;  z-index: 1005; }  header.scrolled {    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.3); }  .show-menu header {    box-shadow: none;    border: none !important; }  header.scrolled, .show-menu header {    position: fixed;    -webkit-animation: fade-in-down 300ms ease-out forwards;            animation: fade-in-down 300ms ease-out forwards; }.top-bar {  background-color: #030303;  color: #fff;  display: block;  padding: 0.75em 0;  max-height: auto;  transition: max-height 300ms ease-out, padding 300ms ease-out; }  .show-menu .top-bar {    max-height: 0;    padding: 0;    overflow: hidden; }  .scrolled .top-bar {    display: none; }  .top-bar .container {    font-size: 0;    width: 92%; }  .top-bar__contact, .top-bar__nav {    display: inline-block;    vertical-align: middle;    font-size: 0.625rem; }    @media (min-width: 30em) {      .top-bar__contact, .top-bar__nav {        font-size: 0.835rem; } }    @media (min-width: 65.625em) {      .top-bar__contact, .top-bar__nav {        font-size: 1rem; } }  .top-bar__contact {    line-height: 1.2;    width: 100%; }    @media (min-width: 61.25em) {      .top-bar__contact {        width: 40%; } }    @media (min-width: 84.375em) {      .top-bar__contact {        width: 50%; } }  .top-bar__title, .top-bar__number {    display: inline-block; }  .top-bar__title {    font-size: 1.728em;    text-transform: uppercase;    font-weight: 600;    margin-right: 1rem;    display: none; }    @media (min-width: 84.375em) {      .top-bar__title {        display: inline-block; } }  .top-bar__number {    margin-right: 1.5rem; }  .top-bar__eyebrow {    font-size: 13px;    opacity: 0.75;    text-transform: uppercase; }  .top-bar__phone {    font-size: 1.728em;    color: #ffce00; }  .top-bar__nav {    text-align: right;    width: 60%;    display: none; }    @media (min-width: 61.25em) {      .top-bar__nav {        width: 60%;        display: inline-block; } }    @media (min-width: 84.375em) {      .top-bar__nav {        width: 50%; } }    .top-bar__nav li {      display: inline-block;      margin-left: 1rem; }      @media (min-width: 75em) {        .top-bar__nav li {          margin-left: 2rem; } }    .top-bar__nav a {      text-transform: uppercase;      font-weight: 600;      color: #fff;      opacity: 0.75;      font-size: 12px; }      @media (min-width: 75em) {        .top-bar__nav a {          font-size: 13px; } }      .top-bar__nav a:hover {        color: #ffce00;        opacity: 1; }.nav-bar {  padding: 2em 0;  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);  transition: all 300ms ease-out; }  @media (min-width: 30em) {    .nav-bar {      padding: 2em 0; } }  .nav-bar .container {    width: 92%; }  .scrolled .nav-bar {    padding: 0.5em 0 0;    background-image: none;    background-color: #111; }  .show-menu .nav-bar {    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);    background-color: transparent !important; }.main-logo {  width: 10em;  display: inline-block;  vertical-align: middle; }  @media (min-width: 30em) {    .main-logo {      width: 10em; } }  @media (min-width: 78.125em) {    .main-logo {      width: 16.5em; } }  .scrolled .main-logo, .show-menu .main-logo {    width: 9em; }.main-nav {  display: none;  vertical-align: middle;  transition: width 300ms ease-out; }  @media (min-width: 64.6875em) {    .main-nav {      display: inline-block;      width: calc(100% - 10em - 4px); } }  @media (min-width: 78.125em) {    .main-nav {      width: calc(100% - 16.5em - 4px); } }  .scrolled .main-nav {    width: calc(100% - 10em); }.top-social {  display: none;  width: 8em;  vertical-align: middle;  text-align: right; }  @media (min-width: 57.5em) {    .top-social {      display: inline-block; } }  .top-social__inner {    display: inline-block; }.social__icon {  height: 2em;  width: 2em;  margin-left: 0.35em;  display: inline-block;  vertical-align: middle;  transition: -webkit-transform 200ms ease-out;  transition: transform 200ms ease-out;  transition: transform 200ms ease-out, -webkit-transform 200ms ease-out; }  .social__icon svg {    height: 2em;    width: 2em;    fill: #fff; }  .social__icon:hover {    -webkit-transform: scale(1.2);        -ms-transform: scale(1.2);            transform: scale(1.2); }.nav-button {  display: inline-block;  width: calc(100% - 10.25em);  text-align: right;  vertical-align: middle; }  @media (min-width: 30em) {    .nav-button {      width: calc(100% - 10.25em); } }  @media (min-width: 64.6875em) {    .nav-button {      display: none; } }  .scrolled .nav-button, .show-menu .nav-button {    width: calc(100% - 10em); }.cta-button.button {  position: fixed;  bottom: 15%;  right: 0;  z-index: 100;  -webkit-transform: translate(38%, -30%) rotate(90deg);      -ms-transform: translate(38%, -30%) rotate(90deg);          transform: translate(38%, -30%) rotate(90deg); }  .cta-button.button a {    font-size: calc(1em + 0.5vw);    box-shadow: 0 3px 12px 0 rgba(153, 101, 0, 0.3);    width: 100%;    padding: 0.4em 1.75em; }  #s4269176 .cta-button.button {    display: none; }/* -----------------------------------------    12.0. Content----------------------------------------- *//* Magnific Popup CSS */.mfp-bg {  top: 0;  left: 0;  width: 100%;  height: 100%;  z-index: 1042;  overflow: hidden;  position: fixed;  background: #0b0b0b;  opacity: 0.8; }.mfp-wrap {  top: 0;  left: 0;  width: 100%;  height: 100%;  z-index: 1043;  position: fixed;  outline: none !important;  -webkit-backface-visibility: hidden; }.mfp-container {  text-align: center;  position: absolute;  width: 100%;  height: 100%;  left: 0;  top: 0;  padding: 0 8px;  box-sizing: border-box; }.mfp-container:before {  content: '';  display: inline-block;  height: 100%;  vertical-align: middle; }.mfp-align-top .mfp-container:before {  display: none; }.mfp-content {  position: relative;  display: inline-block;  vertical-align: middle;  margin: 0 auto;  text-align: left;  z-index: 1045; }.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content {  width: 100%;  cursor: auto; }.mfp-ajax-cur {  cursor: progress; }.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {  cursor: -webkit-zoom-out;  cursor: zoom-out; }.mfp-zoom {  cursor: pointer;  cursor: -webkit-zoom-in;  cursor: zoom-in; }.mfp-auto-cursor .mfp-content {  cursor: auto; }.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter {  -webkit-user-select: none;  -moz-user-select: none;  -ms-user-select: none;      user-select: none; }.mfp-loading.mfp-figure {  display: none; }.mfp-hide {  display: none !important; }.mfp-preloader {  color: #CCC;  position: absolute;  top: 50%;  width: auto;  text-align: center;  margin-top: -0.8em;  left: 8px;  right: 8px;  z-index: 1044; }.mfp-preloader a {  color: #CCC; }.mfp-preloader a:hover {  color: #FFF; }.mfp-s-ready .mfp-preloader {  display: none; }.mfp-s-error .mfp-content {  display: none; }button.mfp-close,button.mfp-arrow {  overflow: visible;  cursor: pointer;  background: transparent;  border: 0;  -webkit-appearance: none;  display: block;  outline: none;  padding: 0;  z-index: 1046;  box-shadow: none;  -ms-touch-action: manipulation;      touch-action: manipulation; }button::-moz-focus-inner {  padding: 0;  border: 0; }.mfp-close {  width: 44px;  height: 44px;  line-height: 44px;  position: absolute;  right: 0;  top: 0;  text-decoration: none;  text-align: center;  opacity: 0.65;  padding: 0 0 18px 10px;  color: #FFF;  font-style: normal;  font-size: 28px;  font-family: Arial, Baskerville, monospace; }.mfp-close:hover,.mfp-close:focus {  opacity: 1; }.mfp-close:active {  top: 1px; }.mfp-close-btn-in .mfp-close {  color: #333; }.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close {  color: #FFF;  right: -6px;  text-align: right;  padding-right: 6px;  width: 100%; }.mfp-counter {  position: absolute;  top: 0;  right: 0;  color: #CCC;  font-size: 12px;  line-height: 18px;  white-space: nowrap; }.mfp-arrow {  position: absolute;  opacity: 0.65;  margin: 0;  top: 50%;  margin-top: -55px;  padding: 0;  width: 90px;  height: 110px;  -webkit-tap-highlight-color: transparent; }.mfp-arrow:active {  margin-top: -54px; }.mfp-arrow:hover,.mfp-arrow:focus {  opacity: 1; }.mfp-arrow:before,.mfp-arrow:after {  content: '';  display: block;  width: 0;  height: 0;  position: absolute;  left: 0;  top: 0;  margin-top: 35px;  margin-left: 35px;  border: medium inset transparent; }.mfp-arrow:after {  border-top-width: 13px;  border-bottom-width: 13px;  top: 8px; }.mfp-arrow:before {  border-top-width: 21px;  border-bottom-width: 21px;  opacity: 0.7; }.mfp-arrow-left {  left: 0; }.mfp-arrow-left:after {  border-right: 17px solid #FFF;  margin-left: 31px; }.mfp-arrow-left:before {  margin-left: 25px;  border-right: 27px solid #3F3F3F; }.mfp-arrow-right {  right: 0; }.mfp-arrow-right:after {  border-left: 17px solid #FFF;  margin-left: 39px; }.mfp-arrow-right:before {  border-left: 27px solid #3F3F3F; }.mfp-iframe-holder {  padding-top: 40px;  padding-bottom: 40px; }.mfp-iframe-holder .mfp-content {  line-height: 0;  width: 100%;  max-width: 900px; }.mfp-iframe-holder .mfp-close {  top: -40px; }.mfp-iframe-scaler {  width: 100%;  height: 0;  overflow: hidden;  padding-top: 56.25%; }.mfp-iframe-scaler iframe {  position: absolute;  display: block;  top: 0;  left: 0;  width: 100%;  height: 100%;  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);  background: #000; }/* Main image in popup */img.mfp-img {  width: auto;  max-width: 100%;  height: auto;  display: block;  line-height: 0;  box-sizing: border-box;  padding: 40px 0 40px;  margin: 0 auto; }/* The shadow behind the image */.mfp-figure {  line-height: 0; }.mfp-figure:after {  content: '';  position: absolute;  left: 0;  top: 40px;  bottom: 40px;  display: block;  right: 0;  width: auto;  height: auto;  z-index: -1;  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);  background: #444; }.mfp-figure small {  color: #BDBDBD;  display: block;  font-size: 12px;  line-height: 14px; }.mfp-figure figure {  margin: 0; }.mfp-bottom-bar {  margin-top: -36px;  position: absolute;  top: 100%;  left: 0;  width: 100%;  cursor: auto; }.mfp-title {  text-align: left;  line-height: 18px;  color: #F3F3F3;  word-wrap: break-word;  padding-right: 36px; }.mfp-image-holder .mfp-content {  max-width: 100%; }.mfp-gallery .mfp-image-holder .mfp-figure {  cursor: pointer; }@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {  /**       * Remove all paddings around the image on small screen       */  .mfp-img-mobile .mfp-image-holder {    padding-left: 0;    padding-right: 0; }  .mfp-img-mobile img.mfp-img {    padding: 0; }  .mfp-img-mobile .mfp-figure:after {    top: 0;    bottom: 0; }  .mfp-img-mobile .mfp-figure small {    display: inline;    margin-left: 5px; }  .mfp-img-mobile .mfp-bottom-bar {    background: rgba(0, 0, 0, 0.6);    bottom: 0;    margin: 0;    top: auto;    padding: 3px 5px;    position: fixed;    box-sizing: border-box; }  .mfp-img-mobile .mfp-bottom-bar:empty {    padding: 0; }  .mfp-img-mobile .mfp-counter {    right: 5px;    top: 3px; }  .mfp-img-mobile .mfp-close {    top: 0;    right: 0;    width: 35px;    height: 35px;    line-height: 35px;    background: rgba(0, 0, 0, 0.6);    position: fixed;    text-align: center;    padding: 0; } }@media all and (max-width: 900px) {  .mfp-arrow {    -webkit-transform: scale(0.75);    -ms-transform: scale(0.75);        transform: scale(0.75); }  .mfp-arrow-left {    -webkit-transform-origin: 0;    -ms-transform-origin: 0;        transform-origin: 0; }  .mfp-arrow-right {    -webkit-transform-origin: 100%;    -ms-transform-origin: 100%;        transform-origin: 100%; }  .mfp-container {    padding-left: 6px;    padding-right: 6px; } }/*Gallery*/.gallery-page {  padding-top: 14em; }  @media (min-width: 20em) {    .gallery-page {      padding-top: 11em; } }  @media (min-width: 78.125em) {    .gallery-page {      padding-top: 14em; } }  .gallery-page__header {    background-color: #111;    padding: 0; }    .gallery-page__header header {      border-bottom: 1px solid rgba(255, 255, 255, 0.2);      background-color: #030303; }    .gallery-page__header .nav-bar {      background-color: #333; }  .gallery-page__title {    color: #fff;    text-align: center;    font-weight: 700;    text-transform: uppercase; }    .gallery-page__title h1 {      font-size: 2.98598em;      -webkit-transform: translateX(-20px);          -ms-transform: translateX(-20px);              transform: translateX(-20px);      opacity: 0;      margin: 0.75em 0; }      @media (min-width: 30em) {        .gallery-page__title h1 {          font-size: 3.58318em; } }      @media (min-width: 48em) {        .gallery-page__title h1 {          font-size: 4.29982em; } }      @media (min-width: 78.75em) {        .gallery-page__title h1 {          font-size: 5.15978em; } }      .page-loaded .gallery-page__title h1 {        -webkit-animation: fade-in-left 500ms ease-out 500ms forwards;                animation: fade-in-left 500ms ease-out 500ms forwards; }  .gallery-page .image-gallery-summary {    margin: auto; }    .gallery-page .image-gallery-summary:before, .gallery-page .image-gallery-summary:after {      content: "";      display: table; }    .gallery-page .image-gallery-summary:after {      clear: both; }    .gallery-page .image-gallery-summary .image-gallery-item {      transition: box-shadow 200ms ease-out; }  .gallery-page .image-gallery-item {    display: block;    position: relative;    float: left;    width: 96%;    margin: 4% 2%;    text-align: center;    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.1), 0 2px 4px 0 rgba(0, 0, 0, 0.1); }    @media (min-width: 30em) {      .gallery-page .image-gallery-item {        width: 47%;        margin: 1%; } }    @media (min-width: 48em) {      .gallery-page .image-gallery-item {        width: 47%; } }    @media (min-width: 61.25em) {      .gallery-page .image-gallery-item {        width: 31%; } }    .gallery-page .image-gallery-item a {      display: block; }    .gallery-page .image-gallery-item:hover {      box-shadow: 0 0 0 3px #ffce00, 0 5px 25px 0 rgba(0, 0, 0, 0.1), 0 2px 4px 0 rgba(0, 0, 0, 0.1); }      .gallery-page .image-gallery-item:hover .image-gallery-summary-item-title {        color: #ffce00; }  .gallery-page .image-gallery-summary-item-image-side, .gallery-page .image-gallery-summary-item-category, .gallery-page .image-gallery-summary-item-created, .gallery-page .image-gallery-summary-item-updated, .gallery-page .image-gallery-summary-item-description, .gallery-page .image-gallery-item-title, .gallery-page .image-gallery-item-created, .gallery-page .image-gallery-item-updated, .gallery-page .image-gallery-item-description {    display: none; }  .gallery-page .image-gallery-summary-item-image-top {    position: relative;    padding-bottom: 100%;    background-size: cover;    background-position: 50% 50%;    background-repeat: no-repeat; }    .gallery-page .image-gallery-summary-item-image-top:after {      background-image: linear-gradient(to top right, rgba(0, 0, 0, 0.6), transparent);      display: block;      content: "";      position: absolute;      top: 0;      left: 0;      height: 100%;      width: 100%;      background-color: transparent;      transition: background 300ms ease-out; }  .gallery-page .image-gallery-summary-item-title {    font-family: "Barlow Condensed", sans-serif;    padding: 0.75em 1em;    position: relative;    text-align: left;    font-size: 1.44em;    color: #fff;    position: absolute;    bottom: 0;    left: 0;    font-weight: 600; }    @media (min-width: 20em) {      .gallery-page .image-gallery-summary-item-title {        padding: 1em 1.5em;        font-size: 1.728em; } }    @media (min-width: 30em) {      .gallery-page .image-gallery-summary-item-title {        padding: 0.75em 1em;        font-size: 1.44em; } }    @media (min-width: 40em) {      .gallery-page .image-gallery-summary-item-title {        padding: 1em 1.5em;        font-size: 1.728em; } }    @media (min-width: 61.25em) {      .gallery-page .image-gallery-summary-item-title {        padding: 1em 1.5em;        font-size: 1.44em; } }    @media (min-width: 75em) {      .gallery-page .image-gallery-summary-item-title {        font-size: 1.728em; } }  .gallery-page .image-gallery-summary-item-link a {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;    z-index: 3;    font-size: 0;    line-height: 1.2; }  .gallery-page .image-gallery-item-image {    line-height: 0; }.gallery-page__inner .container {  text-align: center; }.gallery-page__inner .button {  font-size: 1.2em;  margin-top: 2em; }  .gallery-page__inner .button a {    font-size: 1em; }.gallery-page__inner .image-gallery {  width: 100%; }  .gallery-page__inner .image-gallery:before, .gallery-page__inner .image-gallery:after {    content: "";    display: table; }  .gallery-page__inner .image-gallery:after {    clear: both; }  .gallery-page__inner .image-gallery .image-gallery-item {    display: block;    position: relative;    float: left;    width: 100%;    margin: 3% 0%;    background-color: #fff;    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.1), 0 2px 4px 0 rgba(0, 0, 0, 0.1);    transition: box-shadow 200ms ease-out; }    @media (min-width: 23.75em) {      .gallery-page__inner .image-gallery .image-gallery-item {        margin: 5px;        width: calc(50% - 10px); } }    @media (min-width: 48em) {      .gallery-page__inner .image-gallery .image-gallery-item {        width: calc(33% - 10px); } }    @media (min-width: 75em) {      .gallery-page__inner .image-gallery .image-gallery-item {        width: calc(25% - 10px); } }    .gallery-page__inner .image-gallery .image-gallery-item:hover {      box-shadow: 0 0 0 5px #ffce00; }.gallery-page__inner .image-gallery-title {  font-size: 2.0736em;  font-weight: 600;  margin-bottom: 1rem;  font-family: "Barlow Condensed", sans-serif;  margin-bottom: 1em;  line-height: 1.1;  display: inline-block;  border-bottom: 3px solid #ffce00; }  @media (min-width: 23.75em) {    .gallery-page__inner .image-gallery-title {      font-size: 2.48832em; } }  @media (min-width: 57.5em) {    .gallery-page__inner .image-gallery-title {      font-size: 2.98598em; } }/*! * Hamburgers * @description Tasty CSS-animated hamburgers * @author Jonathan Suh @jonsuh * @site https://jonsuh.com/hamburgers * @link https://github.com/jonsuh/hamburgers */.hamburger {  display: inline-block;  cursor: pointer;  transition-property: opacity, -webkit-filter;  transition-property: opacity, filter;  transition-property: opacity, filter, -webkit-filter;  transition-duration: 0.15s;  transition-timing-function: linear;  font: inherit;  color: inherit;  text-transform: none;  background-color: transparent;  border: 0;  margin: 0;  outline: none;  overflow: visible; }.hamburger:hover {  opacity: 0.7; }.hamburger-box {  width: 40px;  height: 24px;  display: inline-block;  position: relative; }.hamburger-inner {  display: block;  top: 50%;  margin-top: -2px; }.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {  width: 40px;  height: 4px;  background-color: #fff;  border-radius: 4px;  position: absolute;  transition-property: -webkit-transform;  transition-property: transform;  transition-property: transform, -webkit-transform;  transition-duration: 0.15s;  transition-timing-function: ease; }.hamburger-inner::before, .hamburger-inner::after {  content: "";  display: block; }.hamburger-inner::before {  top: -10px; }.hamburger-inner::after {  bottom: -10px; }/* * 3DX *//* * Elastic */.hamburger--elastic .hamburger-inner {  top: 2px;  transition-duration: 0.4s;  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }.hamburger--elastic .hamburger-inner::before {  top: 10px;  transition: opacity 0.15s 0.4s ease; }.hamburger--elastic .hamburger-inner::after {  top: 20px;  transition: -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }.hamburger--elastic.is-active .hamburger-inner {  -webkit-transform: translate3d(0, 10px, 0) rotate(135deg);  transform: translate3d(0, 10px, 0) rotate(135deg);  transition-delay: 0.1s; }.hamburger--elastic.is-active .hamburger-inner::before {  transition-delay: 0s;  opacity: 0; }.hamburger--elastic.is-active .hamburger-inner::after {  -webkit-transform: translate3d(0, -20px, 0) rotate(-270deg);  transform: translate3d(0, -20px, 0) rotate(-270deg);  transition-delay: 0.1s; }/* ---------------------------------------------- *  Partial: buttons  This is a work-in-progress. Please deploy your own method or use my exaple below.   Namespace structure  [interaction][-Button][-Variant]\* ---------------------------------------------- */.button {  display: inline-block; }  .button a {    padding: 0.4em 1.75em;    text-transform: uppercase;    font-size: 16px;    color: #030303;    background-color: #FFFFFF;    transition: all 300ms ease-out;    display: inline-block;    text-align: center;    min-width: 150px;    white-space: nowrap;    font-family: "Barlow Condensed", sans-serif; }    .button a:hover {      background-color: #030303;      color: #FFFFFF; }.border-button a {  border: 2px solid currentColor;  background-color: transparent; }.border-button.base a {  border-color: #ffa800;  color: #ffa800; }  .border-button.base a:hover {    background-color: #ffa800;    color: #FFFFFF; }.border-button.comp a {  border-color: #7f6e26;  color: #FFFFFF; }  .border-button.comp a:hover {    background-color: #7f6e26;    color: #FFFFFF;    text-shadow: none; }.border-button.white a {  border-color: #FFFFFF;  color: #FFFFFF; }  .border-button.white a:hover {    background-color: #FFFFFF;    color: #030303;    text-shadow: none; }.solid-button a {  border: none; }.solid-button.base a {  background-color: #ffa800;  color: #FFFFFF; }  .solid-button.base a:hover {    background-color: #cc8600; }.solid-button.comp a {  background-color: #7f6e26;  color: #FFFFFF; }  .solid-button.comp a:hover {    background-color: #584c1a;    color: #FFFFFF;    text-shadow: none; }.solid-button.white a {  background-color: #FFFFFF;  color: #ffce00; }  .solid-button.white a:hover {    background-color: #cccccc;    color: #ffce00;    text-shadow: none; }.solid-button.grad::before {  content: "";  display: block;  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%;  z-index: 1;  opacity: 0;  transition: opacity 400ms ease-out;  background-color: #ffd42a;  background-image: linear-gradient(to right, #ffce00, #ffd42a); }.solid-button.grad::after {  content: "";  display: block;  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%;  z-index: 1;  opacity: 1;  transition: opacity 400ms ease-out;  background-color: #ffce00;  background-image: linear-gradient(to right, #ffd42a, #ffce00); }.solid-button.grad a {  background-color: transparent;  color: #fff;  position: relative;  z-index: 3; }  .solid-button.grad a:hover {    color: #fff;    text-shadow: none; }.solid-button.grad:hover::before {  opacity: 1; }.solid-button.grad:hover::after {  opacity: 0; }.solid-button.grad.grad-dark::before {  background-color: #ffce00;  background-image: linear-gradient(to right, #005865, #00808c); }.solid-button.grad.grad-dark::after {  background-color: #ffa800;  background-image: linear-gradient(to right, #00808c, #005865); }/* Slider */.slick-slider {  position: relative;  display: block;  box-sizing: border-box;  -webkit-touch-callout: none;  -webkit-user-select: none;  -moz-user-select: none;  -ms-user-select: none;  user-select: none;  -ms-touch-action: pan-y;  touch-action: pan-y;  -webkit-tap-highlight-color: transparent; }.slick-list {  position: relative;  overflow: hidden;  display: block;  margin: 0;  padding: 0; }  .slick-list:focus {    outline: none; }  .slick-list.dragging {    cursor: pointer;    cursor: hand; }.slick-slider .slick-track,.slick-slider .slick-list {  -webkit-transform: translate3d(0, 0, 0);  -ms-transform: translate3d(0, 0, 0);  transform: translate3d(0, 0, 0); }.slick-track {  position: relative;  left: 0;  top: 0;  display: block;  margin-left: auto;  margin-right: auto; }  .slick-track:before, .slick-track:after {    content: "";    display: table; }  .slick-track:after {    clear: both; }  .slick-loading .slick-track {    visibility: hidden; }.slick-slide {  float: left;  height: 100%;  min-height: 1px;  display: none; }  [dir="rtl"] .slick-slide {    float: right; }  .slick-slide img {    display: block; }  .slick-slide.slick-loading img {    display: none; }  .slick-slide.dragging img {    pointer-events: none; }  .slick-initialized .slick-slide {    display: block; }  .slick-loading .slick-slide {    visibility: hidden; }  .slick-vertical .slick-slide {    display: block;    height: auto;    border: 1px solid transparent; }.slick-arrow.slick-hidden {  display: none; }input {  line-height: normal; }input, textarea, keygen, select, button {  text-rendering: auto;  color: initial;  letter-spacing: normal;  word-spacing: normal;  text-transform: none;  text-indent: 0px;  text-shadow: none;  display: inline-block;  text-align: start;  margin: 0em 0em 0em 0em;  font: 13.3333px Arial; }[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'], textarea {  display: block;  box-sizing: border-box;  width: 100%;  padding: 1rem;  border: 1px solid #cacaca;  margin: 0 0 1rem;  font-family: inherit;  font-size: 1rem;  color: #0a0a0a;  background-color: #fefefe;  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);  border-radius: 0;  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;  -webkit-appearance: none;  -moz-appearance: none; }  [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus, textarea:focus {    outline: none; }  [type='text']:focus, [type='text']:hover, [type='password']:focus, [type='password']:hover, [type='date']:focus, [type='date']:hover, [type='datetime']:focus, [type='datetime']:hover, [type='datetime-local']:focus, [type='datetime-local']:hover, [type='month']:focus, [type='month']:hover, [type='week']:focus, [type='week']:hover, [type='email']:focus, [type='email']:hover, [type='number']:focus, [type='number']:hover, [type='search']:focus, [type='search']:hover, [type='tel']:focus, [type='tel']:hover, [type='time']:focus, [type='time']:hover, [type='url']:focus, [type='url']:hover, [type='color']:focus, [type='color']:hover, textarea:focus, textarea:hover {    border-color: #ffd42a; }textarea {  border-radius: 0;  max-width: 100%;  height: auto;  min-height: 8em;  max-height: 8em;  border-radius: 0;  overflow: auto; }label {  display: block;  margin: 0;  font-size: 0.875rem;  font-weight: normal;  line-height: 1.8;  color: #0a0a0a; }input[type="submit"] {  padding: 0.8em 3em;  text-transform: uppercase;  font-size: 18px;  color: #FFFFFF;  border: none;  background-color: #ffd42a;  transition: all 300ms ease-out;  display: inline-block;  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);  text-align: center;  min-width: 150px;  border-radius: 0;  white-space: nowrap;  font-family: "Barlow Condensed", sans-serif;  font-weight: 600;  cursor: pointer;  -webkit-appearance: none;  -moz-appearance: none; }  input[type="submit"]:hover {    background-color: #ffa800;    color: #FFFFFF;    text-decoration: none; }input[type="file"] {  width: 100%;  padding: 1rem;  border: 1px solid #cacaca;  margin-bottom: 2em;  border-radius: 0; }.inputset {  position: relative; }.form_error_wrap {  display: none; }.form_error_specific {  color: red;  position: absolute;  top: 3px;  right: 2px; }.error {  background-color: #fcbca6;  padding: 1em;  border: 1px solid firebrick;  font-size: 0.875rem;  color: firebrick; }  @media (min-width: 40em) {    .error {      padding: 2rem 3rem; } }.errorTitle {  font-weight: 700;  margin-bottom: 5px; }.errorItem {  padding: 2px 0; }.alert {  padding: 1em;  color: #d68f15;  background-color: #fbf5db;  border: 1px solid #d68f15;  font-size: 0.875rem;  font-weight: 700; }  @media (min-width: 40em) {    .alert {      padding: 2rem 3rem; } }.success {  padding: 1em;  color: green;  background-color: MintCream;  border: 1px solid green;  font-size: 0.875rem;  font-weight: 700;  margin-bottom: 1em; }  @media (min-width: 40em) {    .success {      padding: 2rem 3rem; } }/*Blog*/.blog-page {  padding-top: 14em; }  @media (min-width: 20em) {    .blog-page {      padding-top: 11em; } }  @media (min-width: 78.125em) {    .blog-page {      padding-top: 14em; } }  .blog-page .latest-tweets {    padding: 0 0 4em; }  .blog-page__header {    background-color: #111;    padding: 0; }    .blog-page__header header {      border-bottom: 1px solid rgba(255, 255, 255, 0.2);      background-color: #030303; }    .blog-page__header .nav-bar {      background-color: #333; }  .blog-page__title {    color: #fff;    text-align: center;    font-weight: 700;    text-transform: uppercase; }    .blog-page__title h1 {      font-size: 2.98598em;      -webkit-transform: translateX(-20px);          -ms-transform: translateX(-20px);              transform: translateX(-20px);      opacity: 0;      margin: 0.75em 0; }      @media (min-width: 30em) {        .blog-page__title h1 {          font-size: 3.58318em; } }      @media (min-width: 48em) {        .blog-page__title h1 {          font-size: 4.29982em; } }      @media (min-width: 78.75em) {        .blog-page__title h1 {          font-size: 5.15978em; } }      .page-loaded .blog-page__title h1 {        -webkit-animation: fade-in-left 500ms ease-out 500ms forwards;                animation: fade-in-left 500ms ease-out 500ms forwards; }    .story-page .blog-page__title {      background-color: #fff; }      .story-page .blog-page__title h1 {        margin-top: 3em;        margin-bottom: 0;        color: #999;        font-size: 1.2em;        letter-spacing: 0; }  .blog-page__articles {    padding: 3em 0; }    @media (min-width: 37.5em) {      .blog-page__articles {        padding: 4em 0; } }    .story-page .blog-page__articles {      padding-top: 0; }.blog-page #listNews {  display: -webkit-flex;  display: -ms-flexbox;  display: flex;  -webkit-flex-wrap: wrap;      -ms-flex-wrap: wrap;          flex-wrap: wrap;  -webkit-justify-content: flex-start;      -ms-flex-pack: start;          justify-content: flex-start;  width: 100%; }.blog-page .newsItem {  cursor: pointer; }.blog-page .listNewsItem {  width: 97%;  -webkit-flex-basis: 100%;      -ms-flex-preferred-size: 100%;          flex-basis: 100%;  margin: 2% 1.5%;  text-align: left;  -webkit-transform: scale(1);      -ms-transform: scale(1);          transform: scale(1);  transition: -webkit-transform 250ms ease-out;  transition: transform 250ms ease-out;  transition: transform 250ms ease-out, -webkit-transform 250ms ease-out;  position: relative;  padding-bottom: 0.8em;  display: -webkit-flex;  display: -ms-flexbox;  display: flex;  -webkit-flex-direction: column;      -ms-flex-direction: column;          flex-direction: column; }  .blog-page .listNewsItem:after {    content: "";    position: absolute;    bottom: 0;    left: 0;    width: 100%;    height: 1px;    background-color: #bbb;    display: block;    transition: all 300ms ease-out; }  .no-flexbox .blog-page .listNewsItem {    display: inline-block;    vertical-align: top; }  @media (min-width: 30em) {    .blog-page .listNewsItem {      width: calc(47% - 5px);      -webkit-flex-basis: 47%;          -ms-flex-preferred-size: 47%;              flex-basis: 47%; } }  @media (min-width: 37.5em) {    .blog-page .listNewsItem {      width: calc(31.333% - 5px);      -webkit-flex-basis: 31.333%;          -ms-flex-preferred-size: 31.333%;              flex-basis: 31.333%;      margin: 1.5% 1%; } }  @media (min-width: 68.75em) {    .blog-page .listNewsItem {      margin: 1.5% 0.5%;      width: calc(24% - 5px);      -webkit-flex-basis: 24%;          -ms-flex-preferred-size: 24%;              flex-basis: 24%; } }  .blog-page .listNewsItem:hover .newsTitle {    text-decoration: underline; }  .blog-page .listNewsItem:hover:after {    height: 3px;    background-color: #ffce00; }  .blog-page .listNewsItem .newsImageTop {    line-height: 0;    display: inline-block;    width: 100%;    opacity: 0;    -webkit-transform: translateY(20px);        -ms-transform: translateY(20px);            transform: translateY(20px);    background-size: cover;    background-position: 50% 50%;    background-repeat: no-repeat;    transition: box-shadow 250ms ease-out; }    .blog-page .listNewsItem .newsImageTop:after {      content: "";      display: block;      padding: 33%; }    .blog-page .listNewsItem .newsImageTop a {      display: block;      line-height: 0; }  .blog-page .listNewsItem .newsTitle {    margin: 0;    -webkit-flex: 1;        -ms-flex: 1;            flex: 1;    font-size: 1.44em;    line-height: 1.4;    letter-spacing: 0;    margin-bottom: 1.5em;    opacity: 0;    -webkit-transform: translateY(20px);        -ms-transform: translateY(20px);            transform: translateY(20px); }    @media (min-width: 51.25em) {      .blog-page .listNewsItem .newsTitle {        font-size: 1.44em; } }    @media (min-width: 75em) {      .blog-page .listNewsItem .newsTitle {        font-size: 1.44em; } }    .blog-page .listNewsItem .newsTitle a {      color: #030303; }  .blog-page .listNewsItem .newsSummaryLink, .blog-page .listNewsItem .newsImageBottom, .blog-page .listNewsItem .newsSummary, .blog-page .listNewsItem .newsImageBottom, .blog-page .listNewsItem .newsDateFull, .blog-page .listNewsItem .newsCategory, .blog-page .listNewsItem .newsAuthor {    display: none; }  .blog-page .listNewsItem .newsDate {    font-size: 0.83333em;    font-family: "Barlow Condensed", sans-serif;    font-weight: 600;    color: #888888;    margin-bottom: 1em;    opacity: 0;    -webkit-transform: translateY(20px);        -ms-transform: translateY(20px);            transform: translateY(20px); }  .blog-page .listNewsItem .newsSummaryLink {    margin-top: 0.5em; }    .blog-page .listNewsItem .newsSummaryLink a {      font-family: "Barlow Condensed", sans-serif;      padding: 0.5em 0em 0.5em 0;      position: relative;      color: #ffce00; }      .blog-page .listNewsItem .newsSummaryLink a:after {        content: "";        display: block;        width: 100%;        height: 2px;        background-color: #ffce00;        position: absolute;        bottom: 0;        left: 0;        transition: width 350ms ease-out, color 200ms linear; }      .blog-page .listNewsItem .newsSummaryLink a:hover {        color: #ffd42a; }        .blog-page .listNewsItem .newsSummaryLink a:hover:after {          width: 125%;          background-color: #ffd42a; }.blog-page .inviewport .newsDate, .previewFrame .blog-page .newsDate {  -webkit-animation: fade-in-left 500ms ease-out forwards 500ms;          animation: fade-in-left 500ms ease-out forwards 500ms; }.blog-page .inviewport .newsTitle, .previewFrame .blog-page .newsTitle {  -webkit-animation: fade-in-up 500ms ease-out forwards 250ms;          animation: fade-in-up 500ms ease-out forwards 250ms; }.blog-page .inviewport .newsImageTop, .previewFrame .blog-page .newsImageTop {  -webkit-animation: fade-in-up 500ms ease-out forwards;          animation: fade-in-up 500ms ease-out forwards; }.blog-page .back {  width: 90%;  margin: auto;  max-width: 46em;  margin-top: 2em;  text-decoration: underline;  font-weight: 500; }  .blog-page .back a {    color: #ffa800; }    .blog-page .back a:hover {      color: #cc8600; }#displayBlogStory {  width: 90%;  margin: auto;  max-width: 46em; }  #displayBlogStory h1 {    opacity: 0;    -webkit-transform: translateY(20px);        -ms-transform: translateY(20px);            transform: translateY(20px);    color: #030303;    font-size: 2.0736em;    line-height: 1.2;    margin-bottom: 1rem;    text-align: center; }    @media (min-width: 30em) {      #displayBlogStory h1 {        margin-bottom: 1.5rem; } }    @media (min-width: 30em) {      #displayBlogStory h1 {        font-size: 2.98598em; } }    @media (min-width: 57.5em) {      #displayBlogStory h1 {        font-size: 3.58318em; } }    @media (min-width: 78.75em) {      #displayBlogStory h1 {        margin-left: -1rem;        margin-right: -1rem;        margin-bottom: 1.5rem; } }    .page-loaded #displayBlogStory h1 {      -webkit-animation: fade-in-up 400ms ease-out forwards 100ms;              animation: fade-in-up 400ms ease-out forwards 100ms; }  #displayBlogStory p {    -webkit-transform: translateY(20px);        -ms-transform: translateY(20px);            transform: translateY(20px);    opacity: 0; }  #displayBlogStory ul {    -webkit-transform: translateY(20px);        -ms-transform: translateY(20px);            transform: translateY(20px);    opacity: 0;    list-style-type: disc;    margin-left: 1.25rem;    line-height: 1.6;    margin-bottom: 1rem; }    #displayBlogStory ul li {      display: list-item;      list-style-type: disc; }  #displayBlogStory ol {    -webkit-transform: translateY(20px);        -ms-transform: translateY(20px);            transform: translateY(20px);    opacity: 0;    list-style-type: decimal;    margin-left: 1.25rem;    line-height: 1.6;    margin-bottom: 1rem; }    #displayBlogStory ol li {      display: list-item;      list-style-type: decimal; }  #displayBlogStory .newsDateFull, #displayBlogStory .newsCategory, #displayBlogStory .newsAuthor {    display: none; }  #displayBlogStory .newsDate {    -webkit-animation-delay: 600ms;            animation-delay: 600ms;    opacity: 0;    font-family: "Barlow Condensed", sans-serif;    font-weight: 600;    margin-bottom: 1.5rem;    text-align: center; }    @media (min-width: 30em) {      #displayBlogStory .newsDate {        margin-bottom: 2rem; } }    .page-loaded #displayBlogStory .newsDate {      -webkit-animation: fade-in-up 400ms ease-out forwards 300ms;              animation: fade-in-up 400ms ease-out forwards 300ms; }  .inviewport #displayBlogStory p, .inviewport #displayBlogStory ul, .inviewport #displayBlogStory ol, .previewFrame #displayBlogStory p, .previewFrame #displayBlogStory ul, .previewFrame #displayBlogStory ol {    -webkit-animation: fade-in-up 500ms ease-out forwards 200ms;            animation: fade-in-up 500ms ease-out forwards 200ms; }.blogSummaryImageStory {  margin: 0rem -1em 1rem;  position: relative;  line-height: 0;  -webkit-transform: scaleX(0);      -ms-transform: scaleX(0);          transform: scaleX(0);  -webkit-transform-origin: left;      -ms-transform-origin: left;          transform-origin: left;  transition: -webkit-transform 600ms ease-out 700ms;  transition: transform 600ms ease-out 700ms;  transition: transform 600ms ease-out 700ms, -webkit-transform 600ms ease-out 700ms; }  @media (min-width: 30em) {    .blogSummaryImageStory {      margin: 0rem -1.5em 2rem; } }  @media (min-width: 48em) {    .blogSummaryImageStory {      margin: 0rem -2em 2rem; } }  @media (min-width: 64.375em) {    .blogSummaryImageStory {      margin: 0rem -3em 2rem; } }  @media (min-width: 78.75em) {    .blogSummaryImageStory {      margin: 0rem -4em 2rem; } }  .blogSummaryImageStory img {    position: relative;    z-index: 5;    width: 100%;    line-height: 0;    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.3);    box-shadow: 0 8px 25px 0 rgba(3, 3, 3, 0.1), 0 2px 6px rgba(3, 3, 3, 0.1); }  .page-loaded .blogSummaryImageStory {    -webkit-transform: scale(1);        -ms-transform: scale(1);            transform: scale(1); }.blogSocialLinks {  margin-top: 3em; }.hero.inner-hero {  min-height: 70vh;  display: -webkit-flex;  display: -ms-flexbox;  display: flex;  -webkit-align-content: flex-end;      -ms-flex-line-pack: end;          align-content: flex-end; }  .previewFrame .hero.inner-hero {    min-height: 40em; }  .hero.inner-hero.full-hero {    min-height: 95vh;    text-align: center; }    .previewFrame .hero.inner-hero.full-hero {      min-height: 30em; }    .hero.inner-hero.full-hero h1 {      margin-bottom: 1rem;      max-width: none; }    .hero.inner-hero.full-hero p {      font-weight: 400;      font-size: 1.2em; }    .hero.inner-hero.full-hero:after {      background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);      display: block;      content: "";      position: absolute;      top: 0;      left: 0;      height: 100%;      width: 100%; }  .hero.inner-hero .hero-content {    padding: 16em 8% 4em 5%; }    @media (min-width: 34.375em) {      .hero.inner-hero .hero-content {        padding: 28em 8% 10em 5%; } }  .hero.inner-hero .hero-title {    font-weight: 700;    text-transform: uppercase; }    .hero.inner-hero .hero-title h1 {      font-size: 2.98598em; }      @media (min-width: 30em) {        .hero.inner-hero .hero-title h1 {          font-size: 3.58318em; } }      @media (min-width: 48em) {        .hero.inner-hero .hero-title h1 {          font-size: 4.29982em; } }      @media (min-width: 78.75em) {        .hero.inner-hero .hero-title h1 {          font-size: 5.15978em; } }    @media (min-width: 43.75em) {      .hero.inner-hero .hero-title .button a {        font-size: 22px; } }    @media (min-width: 100em) {      .hero.inner-hero .hero-title .button a {        font-size: 26px; } }.main-content {  max-width: 1000px;  margin: auto; }  .main-content ul {    list-style-type: disc;    margin-left: 1.25rem;    line-height: 1.6;    margin-bottom: 1rem; }    .main-content ul li {      display: list-item;      list-style-type: disc; }  .main-content ol {    list-style-type: decimal;    margin-left: 1.25rem;    line-height: 1.6;    margin-bottom: 1rem; }    .main-content ol li {      display: list-item;      list-style-type: decimal; }.split-section {  padding: 2em 0; }  .split-section:before, .split-section:after {    content: "";    display: table; }  .split-section:after {    clear: both; }  @media (min-width: 37.5em) {    .split-section {      padding: 3em 0; } }  .we-buy .split-section {    padding-bottom: 0; }  @media (min-width: 51.25em) {    .split-section__image, .split-section__content {      width: 50%;      float: left;      padding: 0 2.5em; } }  @media (min-width: 78.75em) {    .split-section__image, .split-section__content {      padding: 0 3.5em; } }  .previewFrame .split-section__image, .previewFrame .split-section__content {    opacity: 1 !important;    -webkit-transform: none !important;        -ms-transform: none !important;            transform: none !important; }  .split-section__content {    opacity: 0;    -webkit-transform: translateY(20px);        -ms-transform: translateY(20px);            transform: translateY(20px);    margin-top: 2em;    max-width: 40em; }    @media (min-width: 51.25em) {      .split-section__content {        margin-top: 0; } }  .split-section__image {    opacity: 0;    -webkit-transform: translateX(-20px);        -ms-transform: translateX(-20px);            transform: translateX(-20px); }    .split-section__image img {      box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.1), 0 2px 4px 0 rgba(0, 0, 0, 0.1); }  .split-section.reverse .split-section__image {    opacity: 0;    -webkit-transform: translateX(20px);        -ms-transform: translateX(20px);            transform: translateX(20px); }    @media (min-width: 51.25em) {      .split-section.reverse .split-section__image {        float: right; } }  @media (min-width: 51.25em) {    .flexbox .split-section {      display: -webkit-flex;      display: -ms-flexbox;      display: flex; }      .flexbox .split-section.reverse {        -webkit-flex-direction: row-reverse;            -ms-flex-direction: row-reverse;                flex-direction: row-reverse; } }  @media (min-width: 81.25em) {    .flexbox .split-section {      -webkit-align-items: center;          -ms-flex-align: center;              align-items: center; } }  .split-section.inviewport .split-section__content {    -webkit-animation: fade-in-up 600ms ease-out 250ms forwards;            animation: fade-in-up 600ms ease-out 250ms forwards; }  .split-section.inviewport .split-section__image {    -webkit-animation: fade-in-left 600ms ease-out 250ms forwards;            animation: fade-in-left 600ms ease-out 250ms forwards; }  .split-section.inviewport.reverse .split-section__image {    -webkit-animation: fade-in-right 600ms ease-out 250ms forwards;            animation: fade-in-right 600ms ease-out 250ms forwards; }.introduction .container {  padding-left: 1rem;  padding-right: 1rem; }  @media (min-width: 26.25em) {    .introduction .container {      padding-left: 2rem;      padding-right: 2rem; } }  @media (min-width: 100em) {    .introduction .container {      padding: 2rem calc(100% / 12); } }.about-content, .repairs-content {  padding-bottom: 3em; }  .about-content__bullets, .repairs-content__bullets {    background-color: #ffce00; }    .about-content__bullets .container, .repairs-content__bullets .container {      font-size: 0; }    .about-content__bullets .title-block, .repairs-content__bullets .title-block {      padding-right: 2em;      vertical-align: top;      text-transform: uppercase;      position: relative;      font-size: 0.875rem;      opacity: 0;      -webkit-transform: translateX(-20px);          -ms-transform: translateX(-20px);              transform: translateX(-20px); }      @media (min-width: 37.5em) {        .about-content__bullets .title-block, .repairs-content__bullets .title-block {          padding: 0 2.5em; } }      @media (min-width: 61.25em) {        .about-content__bullets .title-block, .repairs-content__bullets .title-block {          width: 40%;          display: inline-block; } }      @media (min-width: 81.25em) {        .about-content__bullets .title-block, .repairs-content__bullets .title-block {          font-size: 1rem;          padding-right: 3em;          padding-left: 2em; } }      .about-content__bullets .title-block h2, .repairs-content__bullets .title-block h2 {        line-height: 1.1; }    .about-content__bullets .about-bullets, .about-content__bullets .repair-bullets, .repairs-content__bullets .about-bullets, .repairs-content__bullets .repair-bullets {      vertical-align: top;      font-size: 1rem; }      @media (min-width: 61.25em) {        .about-content__bullets .about-bullets, .about-content__bullets .repair-bullets, .repairs-content__bullets .about-bullets, .repairs-content__bullets .repair-bullets {          width: 60%;          display: inline-block; } }    .about-content__bullets.inviewport .title-block, .previewFrame .about-content__bullets .title-block, .repairs-content__bullets.inviewport .title-block, .previewFrame .repairs-content__bullets .title-block {      -webkit-animation: fade-in-left 300ms ease-out forwards;              animation: fade-in-left 300ms ease-out forwards; }    .about-content__bullets.inviewport li, .previewFrame .about-content__bullets li, .repairs-content__bullets.inviewport li, .previewFrame .repairs-content__bullets li {      -webkit-animation: fade-in-up 200ms ease-out forwards;              animation: fade-in-up 200ms ease-out forwards; }.about-bullets, .repair-bullets {  text-align: center;  padding: 0 0.25em; }  @media (min-width: 26.25em) {    .about-bullets, .repair-bullets {      padding: 0 1em; } }  @media (min-width: 37.5em) {    .about-bullets, .repair-bullets {      padding: 0 2.5em; } }  .about-bullets ul, .repair-bullets ul {    display: inline-block; }    .about-bullets ul li, .repair-bullets ul li {      text-align: left;      padding: 1em 0.5em 1em 2em;      position: relative;      font-weight: 600;      opacity: 0;      -webkit-transform: translateY(20px);          -ms-transform: translateY(20px);              transform: translateY(20px); }      @media (min-width: 37.5em) {        .about-bullets ul li, .repair-bullets ul li {          font-size: 1.2em; } }      .about-bullets ul li:before, .repair-bullets ul li:before {        content: "";        position: absolute;        left: 0;        top: 52%;        -webkit-transform: translateY(-50%);            -ms-transform: translateY(-50%);                transform: translateY(-50%);        height: 10px;        width: 10px;        display: inline-block;        background-color: #030303;        border-radius: 50%; }      .about-bullets ul li:not(:last-child), .repair-bullets ul li:not(:last-child) {        border-bottom: 1px solid rgba(3, 3, 3, 0.1); }.repair-bullets ul li:before {  top: 1.85rem; }  @media (min-width: 37.5em) {    .repair-bullets ul li:before {      top: 2.2rem; } }.cta-banner {  padding: 5em 2.5em;  background-color: #ffce00; }  @media (min-width: 30em) {    .cta-banner {      padding: 7em 4em; } }  .cta-banner__inner {    max-width: 60em;    margin: auto; }  .cta-banner h3 {    margin-bottom: 0; }  .cta-banner a {    color: #030303;    text-decoration: underline;    opacity: 1;    transition: opacity 300ms ease-out; }    .cta-banner a:hover {      opacity: 0.75; }.service-lists {  padding: 3em 2em 8em 2em; }  @media (min-width: 37.5em) {    .service-lists {      padding: 6em 2em 8em 2em; } }  .service-lists__wrap {    display: -webkit-flex;    display: -ms-flexbox;    display: flex;    max-width: 96em;    margin: auto;    margin-bottom: 6em;    -webkit-flex-direction: column;        -ms-flex-direction: column;            flex-direction: column; }    @media (min-width: 46.25em) {      .service-lists__wrap {        -webkit-flex-direction: row;            -ms-flex-direction: row;                flex-direction: row; } }  .service-lists .container {    margin-bottom: 2em;    max-width: 60em; }  .service-lists .service-list {    width: 100%;    margin: 10px 0px;    padding: 5%;    text-align: center;    display: -webkit-flex;    display: -ms-flexbox;    display: flex;    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.25), 0 15px 45px 0 rgba(0, 0, 0, 0.3);    background-size: cover;    background-repeat: no-repeat; }    @media (min-width: 26.25em) {      .service-lists .service-list {        width: calc(100% - 10px);        margin: 10px 5px; } }    @media (min-width: 30em) {      .service-lists .service-list {        width: calc(100% - 20px);        margin: 10px; } }    @media (min-width: 46.25em) {      .service-lists .service-list {        width: calc(50% - 20px);        margin: 10px;        padding: 3%; } }    @media (min-width: 57.5em) {      .service-lists .service-list {        padding: 5%; } }    @media (min-width: 78.75em) {      .service-lists .service-list {        width: calc(50% - 40px);        margin: 20px; } }    .service-lists .service-list:nth-child(1) {      background-image: url("/njbgenerators-co-uk/_img/images/service-list1.jpg"); }    .service-lists .service-list:nth-child(2) {      background-image: url("/njbgenerators-co-uk/_img/images/service-list2.jpg"); }    .service-lists .service-list__inner {      width: 100%;      padding: 3em 7%;      background-color: rgba(0, 0, 0, 0.95);      color: #fff; }    .service-lists .service-list__title {      text-transform: uppercase; }    .service-lists .service-list ul li {      padding: 0.75em 0.5em;      position: relative;      opacity: 0.9; }      @media (min-width: 61.25em) {        .service-lists .service-list ul li {          padding: 1em 0.5em; } }      .service-lists .service-list ul li:not(:last-child):after {        content: "";        position: absolute;        left: 50%;        bottom: 0;        -webkit-transform: translateX(-50%);            -ms-transform: translateX(-50%);                transform: translateX(-50%);        width: 20px;        height: 1px;        background-color: #ffce00;        display: inline-block; }.also-offer {  width: 88%;  margin: auto;  max-width: 1800px;  text-align: center; }  .also-offer ul li {    padding: 0.5em 1.5em 0.5em 1em;    position: relative;    font-size: 1.2em;    font-weight: 600;    display: inline-block; }    .also-offer ul li:after {      content: "";      position: absolute;      left: 0;      top: calc(0.5em + 10px);      width: 6px;      height: 6px;      background-color: #ffce00;      display: inline-block; }      @media (min-width: 26.25em) {        .also-offer ul li:after {          top: calc(0.5em + 11px); } }      @media (min-width: 43.75em) {        .also-offer ul li:after {          top: calc(0.5em + 12px); } }.generator-content {  background-color: #eaeaea; }.generator-list {  text-align: center; }  .generator-list .container > h1 {    text-transform: uppercase;    text-align: center;    display: inline-block;    text-transform: uppercase;    padding-bottom: 1rem;    position: relative; }    .generator-list .container > h1:after {      content: "";      position: absolute;      bottom: 0;      left: 50%;      -webkit-transform: translateX(-50%);          -ms-transform: translateX(-50%);              transform: translateX(-50%);      height: 4px;      width: 4rem;      background-color: #ffce00; }.new-generators, .used-generators {  text-align: left;  display: -webkit-flex;  display: -ms-flexbox;  display: flex;  -webkit-flex-wrap: wrap;      -ms-flex-wrap: wrap;          flex-wrap: wrap;  width: 100%; }  @media (min-width: 30em) {    .new-generators, .used-generators {      width: calc(100% + 20px); } }  @media (min-width: 34.375em) {    .new-generators, .used-generators {      width: calc(100% + 26px); } }  @media (min-width: 57.5em) {    .new-generators, .used-generators {      width: calc(100% + 20px); } }  @media (min-width: 68.75em) {    .new-generators, .used-generators {      width: calc(100% + 26px); } }  .new-generators__item, .used-generators__item {    width: 100%;    padding-bottom: 1.25em;    margin-bottom: 1.25em;    box-shadow: inset 0 0 0 1px #ddd;    transition: box-shadow 400ms ease-out; }    @media (min-width: 30em) {      .new-generators__item, .used-generators__item {        padding-bottom: 2em;        margin-bottom: 2em;        width: calc(50% - 20px);        margin-right: 20px; } }    @media (min-width: 34.375em) {      .new-generators__item, .used-generators__item {        width: calc(50% - 26px);        margin-right: 26px; } }    @media (min-width: 57.5em) {      .new-generators__item, .used-generators__item {        width: calc(33.333% - 20px);        margin-right: 20px; } }    @media (min-width: 68.75em) {      .new-generators__item, .used-generators__item {        width: calc(33.333% - 26px);        margin-right: 26px; } }    @media (min-width: 87.5em) {      .new-generators__item, .used-generators__item {        width: calc(25% - 26px); } }    .new-generators__item:hover, .used-generators__item:hover {      box-shadow: inset 0 0 0 4px #ffce00; }  .new-generators__image, .used-generators__image {    margin-bottom: 1em;    margin: 4px 4px 1em;    position: relative;    background-size: cover;    background-position: 50% 50%;    background-repeat: no-repeat; }    .new-generators__image:before, .used-generators__image:before {      display: block;      content: "";      width: 100%;      padding-top: 70%; }  .new-generators__info, .used-generators__info {    padding: 0 1rem 0 2rem; }  .new-generators__title, .used-generators__title {    margin-bottom: 1em;    position: relative; }    .new-generators__title:after, .used-generators__title:after {      content: "";      position: absolute;      left: -2rem;      top: 0;      height: 100%;      width: 4px;      background-color: #ffce00;      z-index: 3; }    .new-generators__title h1, .used-generators__title h1 {      font-size: 1.728em;      line-height: 1.2;      margin-bottom: 0;      font-weight: 600; }  .new-generators__more-info, .used-generators__more-info {    display: block;    margin-bottom: 1em; }    .new-generators__more-info span, .used-generators__more-info span {      font-size: 1.2em;      font-weight: 600;      border-bottom: 2px solid #030303; }    @media (min-width: 30em) {      .new-generators__more-info, .used-generators__more-info {        display: none; } }  .new-generators__details, .used-generators__details {    margin-bottom: 0.5rem;    font-size: 14px;    display: none; }    @media (min-width: 30em) {      .new-generators__details, .used-generators__details {        display: block; } }    .new-generators__details ul, .used-generators__details ul {      list-style-type: disc;      margin-left: 1.25rem;      line-height: 1.6;      margin-bottom: 1.5rem; }      .new-generators__details ul li, .used-generators__details ul li {        display: list-item;        list-style-type: disc; }.used-generators__images {  margin: 4px 4px 1em; }  .used-generators__images .slick-slide {    position: relative;    s-index: 1;    background-repeat: no-repeat;    background-size: cover;    background-position: 50% 50%; }    .used-generators__images .slick-slide:before {      display: block;      content: "";      width: 100%;      padding-top: 75%; }  .used-generators__images .slick-arrow {    position: absolute;    top: 50%;    -webkit-transform: translateY(-50%);        -ms-transform: translateY(-50%);            transform: translateY(-50%);    z-index: 2;    font-size: 0;    height: 2rem;    width: 2rem;    background-color: white;    opacity: 0.75;    transition: opacity 300ms ease-out;    border: none;    cursor: pointer; }    .used-generators__images .slick-arrow:hover {      opacity: 1;      outline: none; }    .used-generators__images .slick-arrow:after {      content: "";      position: absolute;      top: 0.4rem;      right: 0.4rem;      bottom: 0.4rem;      left: 0.4rem;      background-repeat: no-repeat;      background-position: center;      background-size: contain; }    .used-generators__images .slick-arrow.slick-prev {      left: 0; }      .used-generators__images .slick-arrow.slick-prev:after {        background-image: url(/njbgenerators-co-uk/_img/images/svg/left-chevron.svg); }    .used-generators__images .slick-arrow.slick-next {      right: 0; }      .used-generators__images .slick-arrow.slick-next:after {        background-image: url(/njbgenerators-co-uk/_img/images/svg/right-chevron.svg); }.contact-content {  padding: 0; }  @media (min-width: 75em) {    .contact-content__inner {      padding-left: 10%; } }  .contact-content .split-section {    -webkit-align-items: center;        -ms-flex-align: center;            align-items: center;    padding: 0; }  .contact-content .split-section__content {    max-width: none;    padding: 8%;    margin: auto; }    @media (min-width: 51.25em) {      .contact-content .split-section__content {        padding: 6%;        width: 45%;        padding-right: 5%; } }    @media (min-width: 75em) {      .contact-content .split-section__content {        padding-right: 10%; } }    .contact-content .split-section__content h2 {      line-height: 1.2; }    .contact-content .split-section__content h3 {      margin-top: 0; }    .contact-content .split-section__content h5 {      margin-bottom: 0.25em;      color: #888888; }  .contact-content .split-section__form {    padding: 6em;    padding: 8%;    background-color: #ffce00; }    @media (min-width: 51.25em) {      .contact-content .split-section__form {        width: 55%;        padding: 6%; } }    .contact-content .split-section__form h3 {      border-bottom: 2px solid #030303; }    .contact-content .split-section__form label {      font-weight: 600;      font-family: "Barlow Condensed", sans-serif;      text-transform: uppercase;      font-size: 1em; }    .contact-content .split-section__form input {      margin-bottom: 0.5rem; }      .contact-content .split-section__form input[type="text"], .contact-content .split-section__form input[type="email"] {        box-shadow: none;        border: 2px solid transparent;        background-color: transparent;        border-left-color: #030303;        border-bottom-color: #030303;        color: #030303; }      .contact-content .split-section__form input[type="submit"] {        background-color: #222;        font-size: 1.2em;        width: 100%;        padding: 1.5em 3em; }        .contact-content .split-section__form input[type="submit"]:hover, .contact-content .split-section__form input[type="submit"]:focus {          background-color: #030303; }      .contact-content .split-section__form input:hover, .contact-content .split-section__form input:focus {        border-color: #030303; }    .contact-content .split-section__form textarea {      box-shadow: none;      border: 2px solid transparent;      background-color: transparent;      border-left-color: #030303;      border-bottom-color: #030303;      color: #030303; }      .contact-content .split-section__form textarea:hover, .contact-content .split-section__form textarea:focus {        border-color: #030303; }    .contact-content .split-section__form .form_submit {      margin-top: 2em; }.contact-map {  position: relative;  z-index: 1;  padding: 0; }  @media (min-width: 51.25em) {    .contact-map {      padding: 22em 2em 2em 2em; } }  .contact-map #map {    width: 100%;    height: 60vh; }    .previewFrame .contact-map #map {      height: 20em; }    @media (min-width: 51.25em) {      .contact-map #map {        position: absolute;        width: 100%;        height: 100%;        top: 0;        left: 0; } }.map-block {  position: relative;  z-index: 5;  background-color: rgba(3, 3, 3, 0.9);  padding: 3em 2em;  color: #fff;  width: 100%;  text-align: center; }  @media (min-width: 34.375em) {    .map-block {      padding: 3em; } }  @media (min-width: 51.25em) {    .map-block {      padding: 3em;      display: inline-block;      width: auto;      text-align: left;      max-width: 500px; } }  .map-block h3 {    text-transform: uppercase;    font-weight: 600;    line-height: 1.1;    position: relative;    display: inline-block; }    .map-block h3:after {      content: "";      position: absolute;      left: -1rem;      top: 0;      height: 100%;      width: 4px;      background-color: #ffce00; }.testimonials-page {  padding-top: 14em; }  @media (min-width: 20em) {    .testimonials-page {      padding-top: 11em; } }  @media (min-width: 78.125em) {    .testimonials-page {      padding-top: 14em; } }  .testimonials-page__header {    background-color: #111;    padding: 0; }    .testimonials-page__header header {      border-bottom: 1px solid rgba(255, 255, 255, 0.2);      background-color: #030303; }    .testimonials-page__header .nav-bar {      background-color: #333; }  .testimonials-page__title {    color: #fff;    text-align: center;    font-weight: 700;    text-transform: uppercase; }    .testimonials-page__title h1 {      font-size: 2.98598em;      -webkit-transform: translateX(-20px);          -ms-transform: translateX(-20px);              transform: translateX(-20px);      opacity: 0;      margin: 0.75em 0; }      @media (min-width: 30em) {        .testimonials-page__title h1 {          font-size: 3.58318em; } }      @media (min-width: 48em) {        .testimonials-page__title h1 {          font-size: 4.29982em; } }      @media (min-width: 78.75em) {        .testimonials-page__title h1 {          font-size: 5.15978em; } }      .page-loaded .testimonials-page__title h1 {        -webkit-animation: fade-in-left 500ms ease-out 500ms forwards;                animation: fade-in-left 500ms ease-out 500ms forwards; }.testimonials-main .container {  width: 82%;  margin: auto;  max-width: 46em; }.testimonials-main .testimonials-item:not(:last-child) {  width: 100%;  padding-bottom: 2.5em;  margin-bottom: 2.5em;  border-bottom: 1px solid #ccc; }.testimonials-main .testimonials-content {  margin-bottom: 1em; }.testimonials-main .testimonials-details {  font-weight: 600; }.hero {  position: relative;  padding: 0;  z-index: 5;  overflow: visible;  background-color: #030303;  min-height: 100vh; }  .previewFrame .hero {    min-height: 50em; }  .hero .hero-content {    position: relative;    z-index: 3;    padding: 20em 8% 4em 0;    color: #fff;    text-transform: uppercase;    font-weight: 700;    width: 90%;    margin: auto;    -webkit-transform: translateX(-20px);        -ms-transform: translateX(-20px);            transform: translateX(-20px);    opacity: 0; }    @media (min-width: 34.375em) {      .hero .hero-content {        padding: 22em 8% 5em 0; } }    @media (min-width: 78.125em) {      .hero .hero-content {        padding: 26em 8% 10em 0; } }    .hero .hero-content h1 {      max-width: 47rem;      line-height: 1.1;      margin: 0; }    .page-loaded .hero .hero-content {      -webkit-animation: fade-in-left 500ms ease-out 100ms forwards;              animation: fade-in-left 500ms ease-out 100ms forwards; }  .hero-slider .hero-slide {    min-height: 100vh;    height: auto;    background-size: cover;    background-repeat: no-repeat;    background-position: center center; }    .hero-slider .hero-slide:before {      content: "";      position: absolute;      left: 0;      top: 0;      height: 100%;      width: 100%;      background-color: rgba(0, 0, 0, 0.2);      z-index: 1; }    .previewFrame .hero-slider .hero-slide {      min-height: 50em; }  .hero-slider__info {    padding-left: 2rem;    border-left: 4px solid #ffce00;    font-size: 11px; }    @media (min-width: 26.25em) {      .hero-slider__info {        font-size: inherit; } }    @media (min-width: 34.375em) {      .hero-slider__info {        padding-left: 3.5rem; } }  .hero-slider .button {    margin: 2rem 0 0 2rem; }    @media (min-width: 34.375em) {      .hero-slider .button {        margin: 2rem 0 0 3.5rem; } }  .hero-slider .eyebrow {    margin-bottom: 0.5rem;    color: #ffce00;    font-family: "Barlow Condensed", sans-serif;    font-weight: 500;    font-size: 1.1rem; }  .hero-slider .slick-dots {    display: none;    position: absolute;    left: calc(5% + 2rem);    top: 90%;    min-width: 135px; }    @media (min-width: 34.375em) {      .hero-slider .slick-dots {        min-width: 0;        left: auto;        right: 1.5rem;        top: 50%;        -webkit-transform: translateY(-50%);            -ms-transform: translateY(-50%);                transform: translateY(-50%); } }    @media (min-width: 43.75em) {      .hero-slider .slick-dots {        right: 2rem; } }    @media (min-width: 57.5em) {      .hero-slider .slick-dots {        right: 3rem; } }    .hero-slider .slick-dots li {      display: inline-block; }      @media (min-width: 34.375em) {        .hero-slider .slick-dots li {          display: block; } }      .hero-slider .slick-dots li button {        font-size: 0;        line-height: 0;        display: block;        margin: 0.25rem;        width: 30px;        height: 6px;        padding: 5px;        cursor: pointer;        color: transparent;        border: 0;        outline: none;        background: transparent;        position: relative;        transition: all 300ms ease-out; }        @media (min-width: 34.375em) {          .hero-slider .slick-dots li button {            width: 6px;            height: 30px;            margin: 0.5rem; } }        .hero-slider .slick-dots li button:after {          content: "";          position: absolute;          height: 3px;          width: 100%;          background-color: #fff;          top: 0;          left: 0%; }          @media (min-width: 34.375em) {            .hero-slider .slick-dots li button:after {              height: 100%;              width: 3px;              left: 40%; } }      .hero-slider .slick-dots li.slick-active button {        height: 6px;        width: 50px; }        @media (min-width: 34.375em) {          .hero-slider .slick-dots li.slick-active button {            height: 50px;            width: 6px; } }        .hero-slider .slick-dots li.slick-active button:after {          background-color: #ffce00; }.hero-slider-nav {  position: absolute;  right: -1px;  bottom: -1rem;  z-index: 3;  display: none;  width: 84%; }  @media (min-width: 34.375em) {    .hero-slider-nav {      display: block; } }  @media (min-width: 51.25em) {    .hero-slider-nav {      width: 70%; } }  .hero-slider-nav .slick-list {    padding: 0 !important;    display: -webkit-flex;    display: -ms-flexbox;    display: flex; }  .hero-slider-nav .slick-track {    display: -webkit-flex;    display: -ms-flexbox;    display: flex; }  .hero-slider-nav .hero-slide {    position: relative;    background-color: #ffce00;    background-color: #ffd42a;    color: #000;    padding: 1.25em;    text-transform: uppercase;    font-family: "Barlow Condensed", sans-serif;    font-size: 0.875rem;    line-height: 1.1;    font-weight: 600;    cursor: pointer; }    @media (min-width: 40em) {      .hero-slider-nav .hero-slide {        font-size: 1.1rem; } }    @media (min-width: 64.375em) {      .hero-slider-nav .hero-slide {        padding: 1.75em; } }    .hero-slider-nav .hero-slide:not(:last-child) {      border-right: 1px solid rgba(0, 0, 0, 0.7); }    .hero-slider-nav .hero-slide:after {      content: "";      position: absolute;      bottom: 0;      left: 0;      width: 0%;      height: 4px;      background-color: transparent;      transition: all 300ms ease-out; }    .hero-slider-nav .hero-slide:hover:after {      background-color: #030303;      width: 100%; }    .hero-slider-nav .hero-slide.slick-current {      background-color: #030303;      color: #fff; }  .hero-slider-nav .hero-content, .hero-slider-nav .nav-text {    display: inline-block; }.intro {  position: relative;  z-index: 1;  background-position: left top;  background-repeat: no-repeat;  background-size: auto 100%; }  .intro .container {    font-size: 0;    padding: 0.5rem; }    @media (min-width: 23.75em) {      .intro .container {        padding: 1rem; } }    @media (min-width: 26.25em) {      .intro .container {        padding: 2rem; } }    @media (min-width: 100em) {      .intro .container {        padding: 4rem calc(100% / 12); } }  .intro .title-block {    padding-right: 3em;    vertical-align: top;    text-transform: uppercase;    position: relative;    font-size: 0.8125rem; }    @media (min-width: 23.75em) {      .intro .title-block {        font-size: 0.875rem; } }    @media (min-width: 61.25em) {      .intro .title-block {        width: 40%;        display: inline-block; } }    @media (min-width: 81.25em) {      .intro .title-block {        font-size: 1rem; } }    .intro .title-block h1 {      font-weight: 600;      line-height: 1.1; }      @media (min-width: 61.25em) {        .intro .title-block h1 {          margin: 0; } }      .intro .title-block h1:before {        content: "";        position: absolute;        left: -2rem;        width: 3px;        height: 100%;        background-color: #ffce00; }  .intro-content {    vertical-align: top;    font-size: 0.875rem; }    @media (min-width: 23.75em) {      .intro-content {        font-size: 1rem; } }    @media (min-width: 61.25em) {      .intro-content {        width: 60%;        display: inline-block; } }  .intro-inner {    font-size: 1rem; }.page-tiles {  padding: 0;  z-index: 2;  position: relative;  overflow: visible; }  .page-tiles .slick-arrow {    position: absolute;    z-index: 5;    right: 1rem;    bottom: -0.9rem;    height: 40px;    width: 40px;    background-color: #fff;    background-image: linear-gradient(to top, #FFFFFF, #FFFFFF);    border: none;    box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.2);    transition: background-image 300ms ease-out;    cursor: pointer;    font-size: 0; }    @media (min-width: 37.5em) {      .page-tiles .slick-arrow {        bottom: -1.25rem; } }    @media (min-width: 64.375em) {      .page-tiles .slick-arrow {        height: 55px;        width: 55px; } }    .page-tiles .slick-arrow:after {      content: "";      height: 60%;      width: 100%;      display: block;      background-size: contain;      background-position: 50% 50%;      background-repeat: no-repeat; }    .page-tiles .slick-arrow.slick-prev {      right: calc(1.5rem + 40px); }      @media (min-width: 64.375em) {        .page-tiles .slick-arrow.slick-prev {          right: calc(1.5rem + 55px); } }      .page-tiles .slick-arrow.slick-prev:after {        background-image: url(/njbgenerators-co-uk/_img/images/svg/left-chevron.svg); }    .page-tiles .slick-arrow.slick-next:after {      background-image: url(/njbgenerators-co-uk/_img/images/svg/right-chevron.svg); }    .page-tiles .slick-arrow:hover {      background-image: linear-gradient(to top, #ffa800, #ffd42a); }  .page-tiles .page-tile {    position: relative;    padding: 2em;    height: 65vh;    background-size: cover;    background-repeat: no-repeat;    background-position: 50% 50%; }    .page-tiles .page-tile:before {      content: "";      z-index: 1;      position: absolute;      left: 0;      top: 0;      height: 100%;      width: 100%;      background-color: rgba(0, 0, 0, 0.4);      transition: 300ms ease-out background; }    .page-tiles .page-tile:after {      content: "";      z-index: 1;      position: absolute;      left: 0;      bottom: 0;      height: 60%;      width: 100%;      background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent); }    .page-tiles .page-tile__content {      z-index: 2;      bottom: 2rem;      left: 2rem;      right: 2rem;      position: absolute;      color: #fff;      -webkit-transform: translateY(3rem);          -ms-transform: translateY(3rem);              transform: translateY(3rem);      transition: 300ms ease-out transform; }    .page-tiles .page-tile__title {      font-family: "Barlow Condensed", sans-serif;      text-transform: uppercase;      font-size: 2.0736em;      font-weight: 600;      position: relative; }      .page-tiles .page-tile__title:after {        content: "";        position: absolute;        left: -2rem;        top: 0;        height: 100%;        width: 4px;        background-color: #ffce00; }    .page-tiles .page-tile .button {      margin-top: 1.25rem;      opacity: 0;      transition: 300ms ease-out opacity 200ms; }    .page-tiles .page-tile:hover:before {      background-color: rgba(0, 0, 0, 0.8); }    .page-tiles .page-tile:hover .page-tile__content {      -webkit-transform: translateY(0);          -ms-transform: translateY(0);              transform: translateY(0); }    .page-tiles .page-tile:hover .button {      opacity: 1; }.aksa-home {  position: relative;  z-index: 1;  padding: 10em 1em 2em 1em;  background-size: cover;  background-position: center center; }  @media (min-width: 34.375em) {    .aksa-home {      padding: 12em 3.5em 3.5em 3.5em; } }  @media (min-width: 51.25em) {    .aksa-home {      padding: 22em 3.5em 3.5em 3.5em; } }  .aksa-home__content {    background-color: rgba(3, 3, 3, 0.9);    padding: 2em;    max-width: 500px;    color: #fff; }    @media (min-width: 34.375em) {      .aksa-home__content {        padding: 3em; } }    .aksa-home__content h3 {      text-transform: uppercase;      font-weight: 600;      line-height: 1.1;      position: relative; }      .aksa-home__content h3:after {        content: "";        position: absolute;        left: -1rem;        top: 0;        height: 100%;        width: 4px;        background-color: #ffce00; }.latest-generators {  text-align: center;  color: #fff;  background-size: cover; }  .latest-generators h1 {    text-transform: uppercase;    padding-bottom: 1rem;    position: relative; }    .latest-generators h1:after {      content: "";      position: absolute;      bottom: 0;      left: 50%;      -webkit-transform: translateX(-50%);          -ms-transform: translateX(-50%);              transform: translateX(-50%);      height: 4px;      width: 4rem;      background-color: #ffce00; }  .latest-generators__wrap {    font-size: 0;    margin-bottom: 2rem; }    @media (min-width: 43.75em) {      .latest-generators__wrap {        display: -webkit-flex;        display: -ms-flexbox;        display: flex;        -webkit-align-items: stretch;            -ms-flex-align: stretch;                align-items: stretch; } }    .latest-generators__wrap + .button a {      font-size: 1.5rem; }  .latest-generators__item {    position: relative;    display: inline-block;    width: calc(100% - 2rem);    font-size: 1rem;    margin: 1rem;    background-size: cover;    text-align: left; }    @media (min-width: 43.75em) {      .latest-generators__item {        width: calc(33.333% - 1rem);        margin: 0.5rem; } }    @media (min-width: 87.5em) {      .latest-generators__item {        margin: 1rem; } }    .latest-generators__item:before {      display: block;      content: "";      width: 100%;      position: absolute;      height: 100%;      box-shadow: inset 0 0 0 0px #ffce00;      transition: box-shadow 300ms ease-out; }    .latest-generators__item:after {      background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);      display: block;      content: "";      position: absolute;      top: 0;      left: 0;      height: 100%;      width: 100%;      background-color: transparent;      transition: background 300ms ease-out; }    .latest-generators__item:hover .latest-generators__info {      -webkit-transform: translateY(0);          -ms-transform: translateY(0);              transform: translateY(0); }    .latest-generators__item:hover .button {      opacity: 1; }    .latest-generators__item:hover:after {      background-color: rgba(0, 0, 0, 0.3);      width: calc(100% - 8px);      height: calc(100% - 8px);      top: 4px;      left: 4px; }    .latest-generators__item:hover:before {      box-shadow: inset 0 0 0 4px #ffce00; }  .latest-generators__inner {    overflow: hidden;    padding-right: 2em;    position: relative;    bottom: 2rem;    z-index: 3;    padding-top: 55%;    display: -webkit-flex;    display: -ms-flexbox;    display: flex;    height: 100%;    -webkit-align-items: flex-end;        -ms-flex-align: end;            align-items: flex-end; }    @media (min-width: 43.75em) {      .latest-generators__inner {        padding-top: 60%; } }    @media (min-width: 75em) {      .latest-generators__inner {        padding-top: 80%; } }  .latest-generators__info {    -webkit-transform: translateY(1rem);        -ms-transform: translateY(1rem);            transform: translateY(1rem);    transition: 300ms ease-out transform;    padding: 0 2em; }    @media (min-width: 43.75em) {      .latest-generators__info {        padding: 0 1em; } }    @media (min-width: 57.5em) {      .latest-generators__info {        padding: 0 2em; } }    .latest-generators__info .button {      opacity: 0;      transition: opacity 300ms ease-out; }  .latest-generators__title {    text-transform: uppercase;    font-size: 1.728em;    font-weight: 600;    font-family: "Barlow Condensed", sans-serif;    line-height: 1.1;    margin-bottom: 1.5rem;    position: relative; }    @media (min-width: 43.75em) {      .latest-generators__title {        font-size: 1.44em;        margin-bottom: 0.5rem; } }    @media (min-width: 57.5em) {      .latest-generators__title {        font-size: 1.728em;        margin-bottom: 1rem; } }    @media (min-width: 65.625em) {      .latest-generators__title {        font-size: 2.0736em;        margin-bottom: 1.5rem; } }    .latest-generators__title:after {      content: "";      position: absolute;      left: -2rem;      top: 0;      height: 100%;      width: 4px;      background-color: #ffce00;      z-index: 3; }.light-bg {  background-image: url(/njbgenerators-co-uk/_img/images/fabric-texture.jpg);  background-repeat: no-repeat;  background-size: cover; }.light-wrap {  background-color: #eee; }.latest-news {  background-color: transparent;  text-align: center; }  .latest-news h1 {    text-transform: uppercase;    padding-bottom: 1rem;    position: relative;    font-weight: 600; }    .latest-news h1:after {      content: "";      position: absolute;      bottom: 0;      left: 50%;      -webkit-transform: translateX(-50%);          -ms-transform: translateX(-50%);              transform: translateX(-50%);      height: 4px;      width: 4rem;      background-color: #ffce00; }  .latest-news .news-feed + .button a {    font-size: 1.5rem; }  .latest-news #listNews {    font-size: 0;    margin-bottom: 2rem; }  .latest-news .listNewsItem {    font-size: 0.875rem;    text-align: left;    width: calc(100% - 1rem);    margin: 0.5rem;    margin-bottom: 1rem;    display: inline-block;    vertical-align: top; }    @media (min-width: 23.75em) {      .latest-news .listNewsItem {        width: calc(50% - 1rem); } }    @media (min-width: 26.25em) {      .latest-news .listNewsItem {        width: calc(50% - 1rem);        font-size: 1rem; } }    @media (min-width: 61.25em) {      .latest-news .listNewsItem {        width: calc(25% - 1rem);        margin-bottom: 0.5rem; } }    .latest-news .listNewsItem .newsTitle {      font-size: 1.44em;      font-family: "Barlow", sans-serif;      font-weight: 600;      line-height: 1.1;      margin: 1em 0 2em; }      .latest-news .listNewsItem .newsTitle a {        color: #000; }    .latest-news .listNewsItem .newsImageTop {      background-size: cover;      background-position: center center; }      .latest-news .listNewsItem .newsImageTop:before {        display: block;        content: "";        width: 100%;        padding-top: 60%; }  .latest-news .newsInfoWrap, .latest-news .newsSummary, .latest-news .newsImageBottom {    display: none; }  .latest-news .newsSummaryLink a {    padding: 0em 2em 0.5em 0;    position: relative;    display: inline-block;    font-weight: 600;    color: #ffa800; }    .latest-news .newsSummaryLink a:after {      content: "";      display: block;      width: 0;      height: 3px;      background-color: #ffa800;      position: absolute;      left: 0;      bottom: 0;      transition: 300ms ease-out width; }  .latest-news .newsSummaryLink:hover a {    color: #ffa800; }    .latest-news .newsSummaryLink:hover a:after {      width: 100%; }.testimonials-home {  background-color: #e4e4e4;  padding-top: 4em;  padding-bottom: 4em; }  @media (min-width: 64.375em) {    .testimonials-home {      background-color: transparent;      padding-top: 2em;      padding-bottom: 6em; } }  .testimonials-home .container {    font-size: 0;    padding-right: 0;    max-width: 2500px;    width: 100%;    padding-left: 5%; }  .testimonials-home .block-title {    font-size: 13px;    text-transform: uppercase;    font-weight: 600;    margin-bottom: 5em;    padding-right: 3em;    text-align: center; }    @media (min-width: 340px) {      .testimonials-home .block-title {        font-size: calc(13px + 3 * (100vw - 340px) / 690); } }    @media (min-width: 1030px) {      .testimonials-home .block-title {        font-size: 16px; } }    @media (min-width: 26.25em) {      .testimonials-home .block-title {        text-align: left;        margin-bottom: 3em;        display: -webkit-flex;        display: -ms-flexbox;        display: flex;        -webkit-justify-content: space-between;            -ms-flex-pack: justify;                justify-content: space-between;        -webkit-align-items: center;            -ms-flex-align: center;                align-items: center; } }    @media (min-width: 64.375em) {      .testimonials-home .block-title {        display: inline-block;        vertical-align: top;        width: 35%;        padding-right: 2em; } }    .testimonials-home .block-title h1 {      max-width: 350px;      line-height: 1;      position: relative; }      .testimonials-home .block-title h1:before {        content: "";        position: absolute;        left: -2rem;        width: 4px;        height: 100%;        background-color: #ffce00; }  .testimonials-home .testimonials-box {    font-size: 1rem;    width: 100%;    box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.2);    padding: 2.5em 2em;    background-color: #fff;    position: relative; }    @media (min-width: 26.25em) {      .testimonials-home .testimonials-box {        padding: 2.5em 3em; } }    @media (min-width: 30em) {      .testimonials-home .testimonials-box {        padding: 3em 4em; } }    @media (min-width: 37.5em) {      .testimonials-home .testimonials-box {        padding: 3em 6em; } }    @media (min-width: 64.375em) {      .testimonials-home .testimonials-box {        width: 65%;        display: inline-block;        vertical-align: top; } }    .testimonials-home .testimonials-box:after {      content: "";      position: absolute;      top: -3em;      left: -2em;      height: 4em;      width: 6.25em;      display: inline-block;      background-size: contain;      background-position: center center;      background-repeat: no-repeat;      background-image: url("/njbgenerators-co-uk/_img/images/speech-marks.png"); }      @media (min-width: 26.25em) {        .testimonials-home .testimonials-box:after {          height: 5em; } }      @media (min-width: 64.375em) {        .testimonials-home .testimonials-box:after {          left: -3em;          height: 7em; } }  .testimonials-home .testimonials-content {    max-width: 850px;    margin-bottom: 3em; }    .testimonials-home .testimonials-content > * {      font-weight: 400;      font-size: 1em;      font-style: italic; }      @media (min-width: 40em) {        .testimonials-home .testimonials-content > * {          font-size: 1.2em; } }  .testimonials-home .testimonials-name {    font-weight: 700;    font-size: 1.2em;    font-family: "Barlow Condensed", sans-serif; }  .testimonials-home .testimonials-company {    font-family: "Barlow Condensed", sans-serif;    font-weight: 500;    font-size: 1.2em; }  .testimonials-home .slick-list {    margin-bottom: 2em; }  .testimonials-home .slick-dots li {    position: relative;    display: inline-block;    width: 15px;    height: 15px;    margin: 0 4px;    padding: 0;    cursor: pointer; }    @media (min-width: 43.75em) {      .testimonials-home .slick-dots li {        width: 20px;        height: 20px; } }    .testimonials-home .slick-dots li button {      font-size: 0;      line-height: 0;      display: block;      width: 15px;      height: 15px;      cursor: pointer;      color: transparent;      border: 0;      outline: none;      background: transparent;      position: relative; }      @media (min-width: 43.75em) {        .testimonials-home .slick-dots li button {          width: 17px;          height: 17px; } }      .testimonials-home .slick-dots li button:before {        content: "";        display: inline-block;        line-height: 17px;        position: absolute;        top: 0;        left: 0;        width: 14px;        height: 14px;        border-radius: 50%;        text-align: center;        background-color: #c1c1c1; }        @media (min-width: 43.75em) {          .testimonials-home .slick-dots li button:before {            width: 17px;            height: 17px; } }    .testimonials-home .slick-dots li:hover button:before {      background-color: #aaa; }    .testimonials-home .slick-dots li.slick-active button:before {      background-color: #ffce00; }    .testimonials-home .slick-dots li.slick-active:hover button:before {      background-color: #ffce00; }.contact-banner {  background-image: url(/njbgenerators-co-uk/_img/images/dark-texture.jpg);  background-repeat: repeat;  color: #fff; }  .contact-banner .container {    font-size: 0; }    @media (min-width: 90.625em) {      .contact-banner .container {        padding: 0 calc(100% / 12); } }  .contact-banner .title-block {    font-size: 0.9rem;    padding-right: 3em;    text-transform: uppercase;    margin-bottom: 1em; }    @media (min-width: 37.5em) {      .contact-banner .title-block {        font-size: 1rem; } }    @media (min-width: 72.5em) {      .contact-banner .title-block {        display: inline-block;        vertical-align: middle;        width: 40%;        margin-bottom: 0; } }    .contact-banner .title-block h2 {      line-height: 1.1;      font-weight: 600;      position: relative;      margin-bottom: 0; }      @media (min-width: 72.5em) {        .contact-banner .title-block h2 {          max-width: 490px; } }      .contact-banner .title-block h2:before {        content: "";        position: absolute;        left: -2rem;        width: 4px;        height: 100%;        background-color: #ffce00; }  .contact-banner .contact-banner__numbers {    font-size: 1rem; }    @media (min-width: 72.5em) {      .contact-banner .contact-banner__numbers {        display: inline-block;        width: 60%;        vertical-align: middle;        text-align: right; } }  .contact-banner .contact-banner__number {    margin: 0 0 1em 0;    text-align: left;    font-size: 10px; }    @media (min-width: 37.5em) {      .contact-banner .contact-banner__number {        display: inline-block;        vertical-align: middle;        margin: 0 1em 0 0;        width: calc(50% - 2.25em);        font-size: 12px; } }    @media (min-width: 46.25em) {      .contact-banner .contact-banner__number {        font-size: inherit; } }    @media (min-width: 72.5em) {      .contact-banner .contact-banner__number {        margin: 0 1em; } }  .contact-banner__eyebrow {    font-size: 1.2em;    opacity: 0.75;    text-transform: uppercase; }  .contact-banner__phone > * {    font-size: 2.98598em;    color: #ffce00;    font-weight: 600;    line-height: 1.1;    margin: 0; }/* -----------------------------------------    13.0. Footer----------------------------------------- */.footer {  background-color: #030303;  border-top: 5px solid #ffce00;  padding: 0 1em; }  .footer-content {    padding-top: 4rem;    font-size: 0;    margin-bottom: 2rem;    padding-bottom: 2rem;    border-bottom: 1px solid rgba(255, 255, 255, 0.2); }    .footer-content > div {      display: inline-block;      vertical-align: top;      color: #fff;      width: 100%;      font-size: 1rem; }      @media (min-width: 30em) {        .footer-content > div {          width: 50%; } }      @media (min-width: 57.5em) {        .footer-content > div {          width: 25%; } }    .footer-content a {      color: #fff; }  .footer-main-links, .footer-sub-links {    margin-bottom: 2em; }    @media (min-width: 57.5em) {      .footer-main-links, .footer-sub-links {        margin-bottom: 0; } }    .footer-main-links a, .footer-sub-links a {      font-family: "Barlow Condensed", sans-serif;      text-transform: uppercase;      display: inline-block;      padding: 0.15em 0; }      .footer-main-links a:hover, .footer-sub-links a:hover {        color: #ffce00; }  .footer-contact {    margin-bottom: 2em; }    @media (min-width: 30em) {      .footer-contact {        margin-bottom: 0; } }  @media (min-width: 30em) {    .footer-logo {      padding-left: 1em; } }  @media (min-width: 57.5em) {    .footer-logo {      text-align: right; } }  .footer-logo-wrap {    max-width: 15em;    display: inline-block; }    @media (min-width: 30em) {      .footer-logo-wrap {        max-width: 22em; } }  .footer .small-logos {    margin-top: 1em; }    .footer .small-logos img {      display: inline-block;      width: calc(50% - 3px);      max-width: 150px; }      .footer .small-logos img:first-child {        margin-right: 6px; }  .footer-bottom {    font-size: 0;    padding-bottom: 2rem; }    .footer-bottom > * {      font-size: 1rem; }    .footer-bottom .footer-text {      color: #fff;      font-size: 14px;      margin-bottom: 1em; }      @media (min-width: 46.25em) {        .footer-bottom .footer-text {          margin-bottom: 0;          width: 75%;          display: inline-block;          vertical-align: middle; } }    @media (min-width: 46.25em) {      .footer-bottom .footer-social {        width: 25%;        display: inline-block;        vertical-align: middle;        text-align: right; } }    .footer-bottom .footer-social__icon {      display: inline-block;      width: 40px;      height: 40px;      margin-left: 3px; }      .footer-bottom .footer-social__icon svg {        fill: #fff;        transiton: fill 300ms ease-out; }      .footer-bottom .footer-social__icon:hover svg {        fill: #ffce00; }.covid-banner {width: 100%; padding: 10px; background: #ff0000;  text-align: center; font-size: 13px; color: #fff;}.covid-banner a {color: #fff;}
/* not required */
