:root {
  --primaryColor: #E49E37;
  --secondaryColor: #22262E;
  --mainWhite: #fff;
  --offWhite: #f7f7f7;
  --mainBlack: #111111;
  --offBlack: #1A1A1A;
  --mainGrey: #AAA;
  --darkGrey: #888;
  --textColor: #333;
  --mainSpacing: 2px;
  --buttonSpacing: 1px;
  --lightShadow: 2px 5px 3px 0px rgba(0, 0, 0, 0.5);
  --darkShadow: 4px 10px 5px 0px rgba(0, 0, 0, 0.5);

  --content-width: 1200px;
  --top-bar-height: 4vh;
  --nav-height: 8vh;
}

html {
  background-color: var(--primaryColor);
}

body {
  color: var(--textColor);
  font-family: 'Geologica', sans-serif;
  position: relative;
  margin: auto;
  background-color: var(--mainWhite);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primaryColor);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

p {
  color: var(--textColor);
}

ul,
ol {
  margin: 0 0 0 0;
}

p,
li {
  line-height: 1.65;
}

h1 {
  font-size: 40px;
  font-family: 'Raleway', serif;
}

h2 {
  margin: auto;
  font-size: 40px;
  color: var(--secondaryColor);
  font-family: 'Geologica', sans-serif;
}

button {
  display: inline-block;
  line-height: 1;
  background-color: var(--primaryColor);
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 30px;
  color: #fff;
  text-align: center;
  letter-spacing: var(--buttonSpacing);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-color: transparent;
  border-style: solid;
  cursor: pointer;
}

button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--primaryColor);
  transition: left 0.3s, background-color 0.3s;
  z-index: -1;
}

button:hover:before {
  left: 0;
  background-color: var(--offBlack);
}

button:hover {
  background-color: var(--mainGrey);
  color: var(--primaryColor);
  border-color: var(--offWhite);
  border-style: solid;
}

button svg.arrow {
  fill: var(--mainWhite);
}

button:hover svg.arrow {
  fill: #000;
}

.arrow {
  box-sizing: border-box;
  height: 10px;
}

section {
  margin-top: 12vh;
  margin-bottom: 12vh;
}

section:first-child {
  margin-top: 0;
}

section:last-of-type {
  margin-bottom: 0;
  margin-top: 0;
}

.container {
  max-width: var(--content-width);
  margin: 0 auto;
  position: relative;
  padding: 2vw;
  min-height: 25vh;
}

/* Navigation */
.site-header {
  background-color: var(--mainBlack);
  padding: 0.5vh 2vw;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--content-width);
  margin: 0 auto;
  color: #fff;
  background-color: var(--mainBlack);
}

.usps {
  flex-wrap: wrap;
  display: flex;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  align-items: center;
}

.usp {
  margin-right: 12px;
}

.check-mark {
  margin-right: 6px;
  color: var(--primaryColor);
}

.trustpilot-widget {
  display: flex;
  align-items: center;
}

.nav-wrapper {
  max-width: var(--top-bar-height);
}

.logo {
  width: auto;
  height: 8vh;
}

.logo-mobile {
  display: none;
}

.nav {
  margin: auto;
  background-color: transparent;
  max-width: var(--content-width);
  left: 2vw;
  right: 2vw;
  margin-top: var(--top-bar-height);
  position: absolute;
  z-index: 2;
  align-self: center;
  padding: 0;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  justify-content: flex-end;
  margin: auto;
  list-style: none;
  width: 100%;
  align-items: center;
}

nav li {
  margin-left: 1rem;
  margin-right: 1rem;
}

nav a {
  text-decoration: none;
  color: var(--mainWhite);
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background-color: var(--primaryColor);
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

nav .sub-menu a::after {
  bottom: 0px;
}

nav a:hover {
  color: var(--primaryColor);
}

.menu {
  position: relative;
}

.main-navigation {
  display: flex;
}

.sub-menu {
  background-color: var(--offBlack);
  display: none;
  position: absolute;
  z-index: 1;
  float: left;
  margin: auto;
  padding-left: 1rem;
  width: auto;
}

.menu-item {
  position: relative;
  color: var(--mainBlack);
  z-index: 2;
}

.menu-item:hover>.sub-menu {
  display: block;
  padding: 1rem;
}

.menu-toggle {
  display: none;
}

.nav-highlight a {
  display: inline-block;
  line-height: 1;
  background-color: var(--primaryColor);
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 30px;
  color: #fff;
  text-align: center;
  letter-spacing: var(--buttonSpacing);
  position: relative;
  z-index: 1;
  border-color: transparent;
  border-style: solid;
  cursor: pointer;
}

.nav-highlight a:hover {
  background-color: var(--offBlack);
  color: var(--primaryColor);
  border-color: var(--offWhite);
  border-style: solid;
}

.nav-highlight a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 0px;
  background-color: var(--primaryColor);
  transition: width 0.3s;
}

@media only screen and (max-width: 600px) {

  .site-header {
    display: block;
  }

  .logo {
    display: none;
  }

  .logo img {
    height: 8vh;
  }

  .logo-mobile {
    display: block;
    float: right;
    color: var(--mainWhite);
    position: absolute;
    top: 35%;
    right: 5%;
  }

  .top-bar {
    display: none;
  }

  .nav-wrapper {
    display: block;
    justify-content: space-between;
    margin-left: 0;
    max-width: none;
    position: relative;
    padding: 1rem;
  }

  .nav {
    display: block;
    margin: 0;
    margin-top: 0;
    padding: 0;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 2;
    height: 40px;
    width: 40px;
    margin-right: 0;
    align-self: center;
  }

  .menu-toggle-icon {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--mainWhite);
    position: relative;
    transition: background-color 0.3s;
  }

  .menu-toggle-icon:before,
  .menu-toggle-icon:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--mainWhite);
    transition: transform 0.3s;
  }

  .menu-toggle-icon:before {
    top: -6px;
  }

  .menu-toggle-icon:after {
    top: 6px;
  }

  .main-navigation {
    display: none;
    position: absolute;
    top: var(--top-bar-height);
    left: 0;
    right: 0;
    background-color: var(--mainBlack);
    padding: 1rem;
    z-index: 1;
  }

  .main-navigation.active {
    display: grid;
    padding: 2rem;
  }

  .main-navigation-menu {
    flex-direction: column;
    padding: 0 2vw;
    width: auto;
  }

  .menu-item {
    display: block;
    z-index: 1;
  }

  .sub-menu {
    display: contents;
    padding-left: 1rem;
  }

  .menu-item:hover>.sub-menu {
    display: contents;
  }
}

.main-navigation {
  padding: 0;
  position: relative;
}

.nav-container {
  max-width: var(--content-width);
  margin: auto;
  align-self: center;
}

/* Hero */
.hero {
  margin-top: 0;
  min-height: calc(70vh);
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(var(--offBlack) 0%, rgba(0, 0, 0, 0.5) 50%, var(--offBlack) 100%);
  z-index: 1;
}

.hero-content {
  text-align: center;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0%);
  color: white;
  z-index: 2;
}

.hero-subtitle {
  font-size: xx-large;
  margin-bottom: 4vh;
}

.hero-small {
  margin-top: 0;
  min-height: calc(50vh);
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* About Us */
.about-us {
  display: flex;
}

.about-us .left {
  float: left;
  flex: 1;
}

.about-us .right {
  align-self: center;
  float: right;
  padding: 4vw;
  flex: 1;
}

@media only screen and (max-width: 600px) {
  .about-us .left {
    display: none;
  }
}

/* Services */

.service-container {
  flex-wrap: wrap;
  display: flex;
}

.item {
  flex-basis: calc(25% - 10px);
  margin: 5px;
}

.service-image {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 25rem;
  background-size: cover;
  position: relative;
}

.service-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.title-container {
  margin-left: 1vw;
  margin-bottom: 1vw;
  color: var(--mainWhite);
  z-index: 1;
}

.service-button {
  margin-top: 2vh;
  float: right;
}

@media only screen and (max-width: 600px) {
  .item {
    flex-basis: calc(50% - 10px);
  }
}

/* FAQ */
.faq {
  display: flex;
  background-color: var(--offWhite);
}

.faq .left {
  float: left;
  align-self: center;
  flex: 1;
  padding: 4vw;
}

.faq .right {
  float: right;
  flex: 1;
}

.faq p {
  margin-top: 0;
  margin-left: 2rem;
}

summary {
  font-size: larger;
  position: relative;
  cursor: pointer;
  padding: 1em .5em;
  list-style: none;
  display: flex;
  align-items: center;
}

summary::before {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  background-color: var(--primaryColor);
  color: var(--offWhite);
  margin-right: 1.25em;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

summary.active::before {
  transform: rotate(45deg);
}

summary h3 {
  display: flex;
  flex-direction: column;
}

summary small {
  color: #999;
  font-size: .875em;
}

summary strong {
  font-weight: 700;
}

summary span:first-child {
  width: 4rem;
  height: 4rem;
  border-radius: 10px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-right: 1.25em;
}

summary span:first-child svg {
  width: 2.25rem;
  height: 2.25rem;
}

summary span:last-child {
  font-weight: 700;
  margin-left: auto;
}

summary:focus {
  outline: none;
}

details {
  border-bottom: 1px solid var(--primaryColor);
}

details>div {
  padding: 2em 2em 0;
  font-size: .875em;
}

@media only screen and (max-width: 600px) {
  .faq .right {
    display: none;
  }
}

/* CTA Section */
.cta-section {
  padding: 10rem 10vw;
  text-align: center;
  background-color: var(--mainGrey);
  margin-top: 0;
  background-size: cover;
  position: relative;
}

.cta-section h2,
.cta-section p {
  color: var(--mainWhite);
  position: relative;
  z-index: 2;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(var(--offBlack) 0%, rgba(0, 0, 0, 0.5) 50%, var(--offBlack) 100%);
  z-index: 1;
}

/* Footer */
.footer {
  background-color: var(--offBlack);
  color: var(--offWhite);
}

.footer h3 {
  color: var(--mainWhite);
}

.footer a {
  color: var(--offWhite);
}

.footer p {
  color: var(--offWhite);
}

.footer ul {
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer ul li {
  margin-left: 0;
}

.footer .wrapper {
  display: flex;
  max-width: 1300px;
  margin: 0 auto;
  padding: 2vw;
  flex-wrap: wrap;
}

.footer .col {
  flex: 1;
  flex-basis: calc(25% - 10px);
  margin: 5px;
}

.footer .strip {
  background-color: var(--primaryColor);
  padding: 2rem auto;
  width: 100%;
}

footer .left {
  float: left;
  flex: 1;
}

footer .right {
  float: right;
  flex: 1;
  text-align: right;
}

.social-icon {
  width: 2rem;
  margin-right: 4px;
  position: relative;
  filter: invert(1);
}

@media only screen and (max-width: 600px) {
  .footer .col {
    flex-basis: calc(50% - 10px);
  }
}

/* Forms */

.form-wrapper {
  display: flex;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1rem;
  flex-basis: 40%;
}

.form-section .row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 0.5rem;
}

.form-image {
  margin: auto;
  flex: 1;
  padding: 2rem;
}

.form-image img {
  height: 100%;
  width: auto;
}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=submit] {
  display: inline-block;
  line-height: 1;
  background-color: var(--primaryColor);
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 30px;
  color: #fff;
  text-align: center;
  letter-spacing: var(--buttonSpacing);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-color: transparent;
  border-style: solid;
  cursor: pointer;
}

input[type=submit]:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--primaryColor);
  transition: left 0.3s, background-color 0.3s;
  z-index: -1;
}

input[type=submit]:hover:before {
  left: 0;
  background-color: var(--offBlack);
}

input[type=submit]:hover {
  background-color: var(--offBlack);
  color: var(--primaryColor);
  border-color: var(--offWhite);
  border-style: solid;
}

@media only screen and (max-width: 600px) {
  .form-image {
    display: none;
  }

  .form-section {
    flex-basis: 100%;
  }
}