.row .col {
  float: left;
  margin: 0 15px;
}
.row .col *:last-child {
  margin-bottom: 0;
}
.half {
  width: 48%;
}
.full {
  width: 100%;
}
.row-50-50 .col:nth-of-type(1) {
  margin-left: 0;
  margin-right: 15px;
  width: calc(50% - (15px * 2) + (15px * 2) / 2);
}
.row-50-50 .col:nth-of-type(2) {
  margin-right: 0;
  margin-left: 15px;
  margin-bottom: 0;
  width: calc(50% - (15px * 2) + (15px * 2) / 2);
}
:root {
  --accent-color: #009aab;
  --hover-accent-color: #2da8b6;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
video {
  max-width: 100%;
}
video.shadow {
  border: 5px solid #f1f1f1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
video.shadow:fullscreen {
  border: none;
  box-shadow: none;
}
body {
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  font-family: "Lato", sans-serif;
  line-height: 1.4;
  position: relative;
  left: 0;
  transition: all 0.3s;
}
body.shifted {
  left: -100px;
  transition: all 0.7s;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  color: #333652;
}
.container {
  flex-wrap: wrap;
}
h2 {
  font-size: 32px;
}
h4 {
  font-size: 20px;
}
.heading {
  position: relative;
  display: inline-block;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 37px;
  margin-bottom: 1rem;
}
.heading::after {
  position: absolute;
  width: 40%;
  content: " ";
  display: block;
  height: 0.4rem;
  background: var(--accent-color);
  right: 0;
  bottom: -0.5rem;
}
@media (max-width: 1024px) {
  .heading {
    text-align: end;
    font-size: 30px !important;
  }
}
@media (max-width: 500px) {
  .heading {
    font-size: 25px !important;
  }
}
p {
  color: #333652;
  letter-spacing: 0.5px;
  font-size: 20px !important;
}
p, input[type=text], input[type=email], input[type=tel], textarea {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  line-height: 2.1rem;
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
}
img.shadow {
  border: 5px solid #f1f1f1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
a {
  text-decoration: none;
}
main a {
  color: #387eba;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.container.wide {
  max-width: 1300px;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.vertical {
  display: flex;
  flex-direction: column;
}
.grid-container {
  display: grid;
  grid-column-gap: 15px;
}
.button {
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 18px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  color: #fff;
  background-color: var(--accent-color);
  padding: 13px 30px;
  text-transform: uppercase;
  text-align: center;
  font-family: "Poppins", sans-serif;
  border: none;
  letter-spacing: 2px;
  transition: all 0.3s;
}
@media (max-width: 450px) {
  .button {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .button {
    font-size: 16px !important;
    padding: 10px 20px !important;
  }
}
.button:hover {
  background-color: var(--hover-accent-color) !important;
  transition: all 0.3s !important;
}
.wave-after, .wave-before {
  position: absolute;
  right: 0;
  width: 100%;
  left: 0;
  user-select: none;
  z-index: 2;
}
.wave-after {
  top: 100%;
}
.wave {
  user-select: none;
}
.wave-before {
  bottom: 100%;
}
input[type=text], input[type=email], input[type=tel], textarea {
  padding: 10px 15px;
  box-shadow: none;
  border: none;
}
::placeholder {
  color: #5399D6;
  font-weight: lighter;
}
ul {
  list-style: none;
}
input[type=submit]:hover {
  cursor: pointer;
}
@media (max-width: 768px) {
  .row > * {
    width: 100% !important;
  }
}
textarea {
  resize: vertical;
}
.status-container {
  padding: 1rem 0;
}
.status-container .warning {
  font-size: 20px;
  color: #F18904;
}
#main-header {
  background-color: #E0F0FF;
  padding: 3rem 0 1rem;
  transition: all 0.4s;
  position: relative;
}
@media (max-width: 768px) {
  #main-header {
    padding: 2rem 0 1rem;
  }
}
#main-header a {
  color: #5399D6;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  #main-header a {
    font-size: 17px;
  }
}
#main-header a:hover {
  color: #87b8e2;
}
@media (max-width: 1350px) {
  #main-header a {
    font-size: 16px !important;
  }
}
@media (max-width: 1200px) {
  #main-header a {
    font-size: 14px !important;
  }
}
#main-header .container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  max-width: 1300px;
}
#main-header .container .logo {
  width: 185px;
  margin-top: 3px;
}
@media (max-width: 1024px) {
  #main-header .container .logo {
    margin-top: 0 !important;
    width: 20%;
  }
}
#main-header .container .menu-toggle {
  left: 0;
  padding: 0.5rem;
  background-color: #E0F0FF;
  transition: all 0.6s;
  display: none;
}
@media (max-width: 1024px) {
  #main-header .container .menu-toggle {
    display: inline-block;
  }
}
#main-header .container .menu-toggle:hover {
  cursor: pointer;
}
#main-header .container .menu-toggle div {
  height: 5px;
  width: 35px;
  background-color: #5399D6;
  margin: 5px;
  transition: all 0.4s;
  border-radius: 10px;
}
#main-header .container .menu-toggle.change {
  position: relative;
  left: -120px;
  transition: all 0.3s;
}
#main-header .container .menu-toggle.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 3px);
  transform: rotate(-45deg) translate(-5px, 5px);
}
#main-header .container .menu-toggle.change .bar2 {
  opacity: 0;
}
#main-header .container .menu-toggle.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-9px, -9px);
}
@media (max-width: 768px) {
  #main-header .container .menu-toggle.change {
    left: -80px;
  }
}
#main-header .container nav {
  width: 47%;
}
@media (max-width: 1024px) {
  #main-header .container nav {
    position: fixed;
    right: -100%;
    background-color: #E0F0FF;
    z-index: 9;
    top: 0;
    bottom: 0;
    width: 250px;
    padding: 2rem;
    transition: all 0.6s;
    border-left: 1px solid #5399D6;
    box-shadow: 0 3px 6px rgba(83, 153, 214, 0.3), 0 3px 6px rgba(83, 153, 214, 0.4);
  }
  #main-header .container nav.opened {
    right: 0;
    transition: all 0.4s;
  }
}
#main-header .container nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  #main-header .container nav ul {
    flex-direction: column;
  }
}
#main-header .container nav ul li {
  margin: 0 10px;
  padding-bottom: 3px;
  font-size: 19px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  #main-header .container nav ul li {
    margin: 0 1rem 1rem !important;
  }
}
@media (max-width: 1250px) {
  #main-header .container nav ul li {
    margin: 0 0.5rem;
  }
}
#main-header .container nav ul li a {
  font-size: 19px;
  letter-spacing: 1px;
}
#main-header .container nav ul li.current-menu-item a {
  border-bottom: 3px solid #5399D6;
}
#main-header .container nav ul li.current-menu-item a:hover {
  border-color: #87b8e2;
}
#main-header .container nav ul li.menu-item-has-children {
  cursor: default;
}
#main-header .container nav ul li.menu-item-has-children button {
  font-size: 19px;
  letter-spacing: 1px;
  color: #5399D6;
  border: none;
  background: transparent;
  text-transform: uppercase;
  font-weight: bold;
}
@media (max-width: 1350px) {
  #main-header .container nav ul li.menu-item-has-children button {
    font-size: 16px !important;
  }
}
@media (max-width: 1200px) {
  #main-header .container nav ul li.menu-item-has-children button {
    font-size: 14px !important;
  }
}
#main-header .container nav ul li.menu-item-has-children button svg {
  display: inline-block;
}
#main-header .container nav ul li .sub-menu {
  flex-direction: column;
  justify-content: start;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  transition: all 0.4s;
  z-index: 2;
  background: #fff;
  padding: 0 10px;
  margin-top: 10px;
}
#main-header .container nav ul li .sub-menu li {
  line-height: 2;
}
#main-header .container nav ul li:hover > .sub-menu {
  max-height: 1000px;
  padding: 10px;
}
#main-header .container .header-contact {
  transition: all 0.3s;
  display: flex;
  align-items: center;
  width: 345px;
  max-width: 30%;
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  #main-header .container .header-contact {
    width: fit-content;
    justify-content: center;
    max-width: 110%;
  }
}
#main-header .container .header-contact img {
  width: 50px;
  transition: all 0.4s;
}
#main-header .container .header-contact .vertical {
  align-items: start;
  display: flex;
  padding-left: 10px;
}
#main-header .container .header-contact .vertical .mobile-divider {
  display: none;
}
#main-header .container .header-contact a {
  transition: all 0.4s;
  font-size: 20px;
}
#main-header .container .header-contact a:hover {
  color: #87b8e2;
}
@media (max-width: 1024px) {
  #main-header .container .header-contact a {
    font-size: 17px !important;
  }
}
#main-header .container .sale-badge {
  max-width: 70px;
}
@media (max-width: 768px) {
  #main-header .container .sale-badge {
    max-width: 60px;
  }
}
@media (max-width: 768px) {
  #main-header .container {
    flex-wrap: wrap;
  }
  #main-header .container .logo {
    order: 1;
    width: 50%;
  }
  #main-header .container .menu-toggle {
    order: 2;
  }
  #main-header .container .header-contact {
    width: 110%;
    margin-left: -5%;
    margin-right: -5%;
    order: 3;
    max-width: 110%;
    background-color: var(--accent-color);
    text-align: center;
    padding: 10px;
    justify-content: center;
    margin-top: 15px;
    align-items: center;
  }
  #main-header .container .header-contact img {
    width: 40px;
  }
  #main-header .container .header-contact .vertical {
    flex-direction: row;
    align-items: center;
  }
  #main-header .container .header-contact .vertical .mobile-divider {
    display: inline;
    color: #f1f1f1;
    margin: 0 7px;
    font-size: 20px;
    font-weight: bold;
  }
  #main-header .container .header-contact a {
    color: #f1f1f1;
  }
  #main-header .container .header-contact a:hover {
    color: #eee;
  }
  #main-header .container nav {
    width: 200px;
    padding: 2rem 1rem;
  }
  #main-header .container nav ul li a {
    font-size: 16px !important;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #main-header .container .header-contact a {
    font-size: 16px !important;
  }
}
@media (max-width: 768px) and (max-width: 450px) {
  #main-header .container .header-contact a {
    font-size: 13px !important;
  }
}
@media (max-width: 768px) and (max-width: 400px) {
  #main-header .container .header-contact a {
    font-size: 10px !important;
  }
}
#main-header.sticky {
  transition: all 0.4s;
  position: fixed;
  right: 0;
  z-index: 11;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0 0.5rem;
  box-shadow: 0 3px 6px rgba(83, 153, 214, 0.3), 0 3px 6px rgba(83, 153, 214, 0.4);
}
#main-header.sticky.shifted {
  right: 100px;
  left: auto;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  #main-header.sticky .container .header-contact {
    padding: 5px;
    transition: all 0.3s;
  }
  #main-header.sticky .container .header-contact a {
    font-size: 13px;
    transition: all 0.3s;
  }
  #main-header.sticky .container .header-contact img {
    transition: all 0.3s;
    width: 30px;
  }
}
.header-cta.cta {
  margin: 0;
}
.header-cta.cta .container .cta-wrapper {
  display: flex;
  width: 50%;
  align-items: center;
  padding: 0 30px;
}
.header-cta.cta .container .cta-wrapper h3 {
  margin: 0;
  max-width: 100%;
  padding: 0 30px;
}
.header-cta.cta .container .cta-wrapper .button {
  white-space: nowrap;
  min-width: 300px !important;
}
@media (max-width: 1200px) {
  .header-cta.cta .container .cta-wrapper {
    flex-direction: column;
  }
  .header-cta.cta .container .cta-wrapper h3 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .header-cta.cta .container .cta-wrapper .button {
    width: 220px !important;
  }
}
@media (max-width: 1024px) {
  .header-cta.cta .container {
    align-items: end;
  }
}
#areas-we-serve {
  padding: 150px 0;
}
#areas-we-serve svg#devon-map {
  /*color: var(--accent-color);*/
  color: #009aab;
  position: relative;
  max-width: 450px;
  height: auto;
  width: 100%;
}
#areas-we-serve svg#devon-map path:hover, #areas-we-serve svg#devon-map path.hover {
  /*color: var(--hover-accent-color);*/
  color: #2da8b6;
}
#areas-we-serve #map-tooltip.active {
  display: block;
  box-shadow: 0 3px 6px rgba(83, 153, 214, 0.3), 0 3px 6px rgba(83, 153, 214, 0.4);
  padding: 5px 10px;
}
#areas-we-serve #map-tooltip {
  display: none;
  z-index: 1;
  background: #fff;
  padding: 0;
  position: absolute;
  box-shadow: none;
  border-radius: 5px;
}
#areas-we-serve .map-txt {
  display: none;
}
#areas-we-serve .map-txt.showtxt {
  display: block;
}
#areas-we-serve .areas-we-serve {
  display: flex;
  margin-top: 40px;
}
#areas-we-serve .map-txt ul {
  float: left;
  margin: 20px 20px 0 0;
}
#areas-we-serve .map-container {
  width: 50%;
}
#areas-we-serve text, #areas-we-serve text tspan {
  fill: #000;
  font-size: 8px;
  cursor: default;
}
#areas-we-serve text:hover, #areas-we-serve text:hover tspan, #areas-we-serve text tspan:hover {
  fill: #000;
}
@media (max-width: 1024px) {
  #areas-we-serve .areas-we-serve {
    flex-direction: column;
  }
  #areas-we-serve .map-container {
    width: 100%;
    text-align: center;
  }
  #areas-we-serve #areas-we-serve {
    padding: 80px 0;
  }
  #areas-we-serve text, #areas-we-serve text tspan {
    font-size: 8px;
  }
}
#main-footer {
  position: relative;
  background-color: #333652;
  padding: 50px 0;
}
#main-footer .inner-section {
  margin-bottom: 15px;
}
#main-footer .container {
  display: flex;
  justify-content: space-between;
  max-width: 1300px;
}
#main-footer .footer-widget {
  width: 23%;
}
#main-footer .footer-widget:first-child p, #main-footer .footer-widget:nth-child(2) p {
  line-height: 2rem;
}
@media (max-width: 1024px) {
  #main-footer .footer-widget {
    width: 48%;
    margin-bottom: 30px;
  }
  #main-footer .footer-widget:nth-child(n+3) {
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  #main-footer .footer-widget {
    width: 100%;
    margin-bottom: 30px !important;
  }
  #main-footer .footer-widget:nth-child(n+3) {
    margin-bottom: 30px !important;
  }
  #main-footer .footer-widget:last-child {
    margin-bottom: 0 !important;
  }
}
#main-footer .footer-widget h4 {
  font-size: 19px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
#main-footer .footer-widget p {
  font-size: 19px !important;
  line-height: 1.8rem;
}
#main-footer .footer-widget p.vertical a {
  display: block;
  transition: all 0.3s;
  font-size: 17px !important;
}
#main-footer .footer-widget p.vertical a:hover {
  color: #ddd;
}
#main-footer .footer-widget * {
  color: #f1f1f1;
}
#main-footer .footer-widget ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
#main-footer .footer-widget ul li:last-child {
  margin-bottom: 0;
}
#main-footer .footer-widget .icon {
  width: 30px;
  margin-right: 20px;
}
#main-footer .footer-widget .facebook a, #main-footer .footer-widget .copyright a, #main-footer .footer-widget .blue a {
  color: #34DAEA;
  transition: all 0.3s;
}
#main-footer .footer-widget .facebook a:hover, #main-footer .footer-widget .copyright a:hover, #main-footer .footer-widget .blue a:hover {
  color: #87b8e2;
}
#main-footer .footer-widget .email-link {
  color: #f1f1f1;
  transition: all 0.3s;
}
#main-footer .footer-widget .email-link:hover, #main-footer .footer-widget .email-link:visited, #main-footer .footer-widget .email-link:focus, #main-footer .footer-widget .email-link:focus-visible {
  color: #ddd;
}
@media (max-width: 330px) {
  #main-footer .footer-widget .email-link {
    font-size: 15px;
    line-break: anywhere;
  }
}
.cta {
  background-color: #333652;
  padding: 1rem 0;
  margin: 2.5rem 0;
}
.cta h3 {
  color: #f1f1f1;
  letter-spacing: 2px;
  line-height: 1.8;
  font-size: 20px;
}
@media (max-width: 768px) {
  .cta h3 {
    text-align: center;
    margin-bottom: 30px;
  }
}
.cta .container {
  display: flex;
  align-items: center;
  padding: 0 3rem;
}
@media (max-width: 768px) {
  .cta .container {
    padding: 1rem;
  }
}
@media (max-width: 900px) {
  .cta .container {
    justify-content: center !important;
  }
}
.cta.with-button .container {
  justify-content: space-between;
  max-width: 1400px;
  width: 100%;
  padding: 0 20px;
}
.cta.with-button h3 {
  font-weight: normal;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  margin: 30px 20px;
  max-width: calc(100% - 300px);
}
.cta.with-button h3 b {
  font-weight: bold;
}
@media (max-width: 900px) {
  .cta.with-button h3 {
    max-width: 100%;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
}
.cta.with-button a {
  width: fit-content;
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .cta.with-button a {
    width: fit-content !important;
  }
}
@media (max-width: 900px) {
  .cta.with-button a {
    margin-bottom: 20px;
  }
}
.cta.without-button .container {
  justify-content: center;
}
#contact-form {
  position: relative;
  background: #E0F0FF;
  margin: 2.5rem 0;
  padding: 50px 0;
  scroll-margin-top: 130px;
}
#contact-form .container {
  display: flex;
  justify-content: center;
}
.contact-form-container {
  width: 65%;
}
@media (max-width: 768px) {
  .contact-form-container {
    width: 90%;
  }
}
.contact-form-container .form-heading-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact-form-container .form-heading-container h2 {
  margin-right: 20px;
}
.contact-form-container .form-heading-container span.form-heading-sale-badge {
  display: flex;
  align-items: center;
}
.contact-form-container .form-heading-container img {
  display: inline-block;
  vertical-align: middle;
  max-width: 60px;
}
.contact-form-container .form-heading-container span.form-heading-sale-text {
  margin-left: 20px;
  display: inline-block;
  color: #333652;
  letter-spacing: 0.5px;
  font-size: 18px;
}
.contact-form-container form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2rem;
}
@media (max-width: 500px) {
  .contact-form-container form .half {
    width: 100%;
  }
}
.contact-form-container form * {
  margin-bottom: 1rem;
}
.contact-form-container form input:not([type=submit]), .contact-form-container form textarea {
  border: 1px solid #fff;
  color: #5399D6;
}
.contact-form-container form input:not([type=submit]):focus-visible, .contact-form-container form textarea:focus-visible {
  outline: none;
  border: 1px solid #5399D6;
}
.contact-form-container form input[type=submit] {
  float: right;
}
.contact-form-container form input[name=miel] {
  width: 0;
  height: 0;
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
}
.contact-form-container form textarea {
  min-height: 200px;
}
#dark-header {
  background-color: #5399D6;
  padding: 3rem 0 1rem;
  transition: all 0.4s;
  position: relative;
}
@media (max-width: 768px) {
  #dark-header {
    padding: 2rem 0 1rem;
  }
}
#dark-header > img {
  transition: all 0.3s;
  z-index: -3;
}
#dark-header a {
  color: #f1f1f1;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  #dark-header a {
    font-size: 17px;
  }
}
#dark-header a:hover {
  color: #ddd;
}
@media (max-width: 1350px) {
  #dark-header a {
    font-size: 16px !important;
  }
}
@media (max-width: 1200px) {
  #dark-header a {
    font-size: 14px !important;
  }
}
#dark-header .container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  max-width: 1300px;
}
#dark-header .container .logo {
  width: 185px;
  margin-top: 3px;
}
@media (max-width: 1024px) {
  #dark-header .container .logo {
    margin-top: 0 !important;
    width: 20%;
  }
}
#dark-header .container .menu-toggle {
  display: none;
  background-color: #5399D6;
  padding: 0.5rem;
  transition: all 0.4s;
  left: 0;
}
@media (max-width: 1024px) {
  #dark-header .container .menu-toggle {
    display: inline-block;
  }
}
#dark-header .container .menu-toggle:hover {
  cursor: pointer;
}
#dark-header .container .menu-toggle div {
  height: 5px;
  width: 35px;
  background-color: #f1f1f1;
  margin: 5px;
  transition: all 0.4s;
  border-radius: 10px;
}
#dark-header .container .menu-toggle.change {
  position: relative;
  left: -120px;
}
#dark-header .container .menu-toggle.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 3px);
  transform: rotate(-45deg) translate(-5px, 5px);
}
#dark-header .container .menu-toggle.change .bar2 {
  opacity: 0;
}
#dark-header .container .menu-toggle.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-9px, -9px);
}
@media (max-width: 768px) {
  #dark-header .container .menu-toggle.change {
    left: -80px;
  }
}
#dark-header .container nav {
  width: 47%;
}
@media (max-width: 1024px) {
  #dark-header .container nav {
    position: fixed;
    right: -100%;
    background-color: #5399D6;
    z-index: 9;
    top: 0;
    bottom: 0;
    width: 250px;
    padding: 2rem;
    transition: all 0.4s;
    border-left: 1px solid #333652;
    box-shadow: 0 3px 6px rgba(83, 153, 214, 0.3), 0 3px 6px rgba(83, 153, 214, 0.4);
  }
  #dark-header .container nav.opened {
    right: 0;
    transition: all 0.4s;
  }
}
#dark-header .container nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  #dark-header .container nav ul {
    flex-direction: column;
  }
}
#dark-header .container nav ul li {
  margin: 0 10px;
  padding-bottom: 3px;
  font-size: 19px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  #dark-header .container nav ul li {
    margin: 0 1rem 1rem !important;
  }
}
@media (max-width: 1250px) {
  #dark-header .container nav ul li {
    margin: 0 0.5rem;
  }
}
#dark-header .container nav ul li.current-menu-item a {
  border-bottom: 3px solid #f1f1f1;
}
#dark-header .container nav ul li.current-menu-item a:hover {
  border-color: #ddd;
}
#dark-header .container nav ul li.menu-item-has-children {
  cursor: default;
}
#dark-header .container nav ul li.menu-item-has-children button {
  font-size: 19px;
  letter-spacing: 1px;
  color: #fff;
  border: none;
  background: transparent;
  text-transform: uppercase;
  font-weight: bold;
}
@media (max-width: 1350px) {
  #dark-header .container nav ul li.menu-item-has-children button {
    font-size: 16px !important;
  }
}
@media (max-width: 1200px) {
  #dark-header .container nav ul li.menu-item-has-children button {
    font-size: 14px !important;
  }
}
#dark-header .container nav ul li.menu-item-has-children button svg {
  display: inline-block;
}
#dark-header .container nav ul li .sub-menu {
  flex-direction: column;
  justify-content: start;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  transition: all 0.4s;
  z-index: 2;
  background: #5399D6;
  padding: 0 10px;
  margin-top: 10px;
}
#dark-header .container nav ul li .sub-menu li {
  line-height: 2;
}
#dark-header .container nav ul li:hover > .sub-menu {
  max-height: 1000px;
  padding: 10px;
}
#dark-header .container .header-contact {
  display: flex;
  align-items: center;
  width: fit-content;
  max-width: 30%;
  justify-content: flex-end;
  transition: all 0.4s;
}
@media (max-width: 1024px) {
  #dark-header .container .header-contact {
    width: fit-content;
    justify-content: center;
    max-width: 110%;
  }
}
#dark-header .container .header-contact img {
  width: 50px;
}
#dark-header .container .header-contact a {
  transition: all 0.4s;
  font-size: 20px;
}
#dark-header .container .header-contact a:hover {
  color: #ddd;
}
@media (max-width: 768px) {
  #dark-header .container .header-contact a {
    font-size: 16px !important;
  }
}
#dark-header .container .header-contact .vertical {
  align-items: start;
  display: flex;
  padding-left: 10px;
}
#dark-header .container .header-contact .vertical .mobile-divider {
  display: none;
}
#dark-header .container .sale-badge {
  max-width: 70px;
}
@media (max-width: 768px) {
  #dark-header .container .sale-badge {
    max-width: 60px;
  }
}
@media (max-width: 768px) {
  #dark-header .container {
    flex-wrap: wrap;
  }
  #dark-header .container .logo {
    order: 1;
    width: 50%;
  }
  #dark-header .container .menu-toggle {
    order: 2;
  }
  #dark-header .container .header-contact {
    width: 110%;
    margin-left: -5%;
    margin-right: -5%;
    order: 3;
    max-width: 110%;
    background-color: var(--accent-color);
    text-align: center;
    padding: 10px;
    justify-content: center;
    margin-top: 15px;
    align-items: center;
  }
  #dark-header .container .header-contact img {
    width: 40px;
    transition: all 0.3s;
  }
  #dark-header .container .header-contact .vertical {
    flex-direction: row;
    align-items: center;
  }
  #dark-header .container .header-contact .vertical .mobile-divider {
    display: inline;
    color: #f1f1f1;
    margin: 0 7px;
    font-size: 20px;
    font-weight: bold;
  }
  #dark-header .container .header-contact a {
    color: #f1f1f1;
    transition: all 0.3s;
  }
  #dark-header .container .header-contact a:hover {
    color: #eee;
  }
  #dark-header .container nav {
    width: 200px;
    padding: 2rem 1rem;
  }
  #dark-header .container nav ul li a {
    font-size: 16px !important;
  }
}
@media (max-width: 768px) and (max-width: 450px) {
  #dark-header .container .header-contact a {
    font-size: 13px !important;
  }
}
@media (max-width: 768px) and (max-width: 400px) {
  #dark-header .container .header-contact a {
    font-size: 10px !important;
  }
}
#dark-header.sticky {
  transition: all 0.4s;
  position: fixed;
  right: 0;
  z-index: 11;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0 0.5rem;
  box-shadow: 0 3px 6px rgba(83, 153, 214, 0.3), 0 3px 6px rgba(83, 153, 214, 0.4);
}
#dark-header.sticky > img {
  top: -100%;
  transition: all 0.3s;
}
#dark-header.sticky.shifted {
  right: 100px;
  left: auto;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  #dark-header.sticky .container .header-contact {
    padding: 5px;
    transition: all 0.3s;
  }
  #dark-header.sticky .container .header-contact a {
    font-size: 13px;
    transition: all 0.3s;
  }
  #dark-header.sticky .container .header-contact img {
    transition: all 0.3s;
    width: 30px;
  }
}
@media (max-width: 400px) {
  #dark-header.sticky .container .header-contact a {
    font-size: 11px;
  }
}
#why-choose-us {
  text-align: center;
  margin: 2.5rem 0;
  padding: 50px 0;
  position: relative;
}
#why-choose-us > .container {
  justify-content: center;
}
@media (max-width: 500px) {
  #why-choose-us {
    padding: 0;
  }
}
#why-choose-us.blue-background .reasons .reason {
  background: #fff;
}
#why-choose-us .reasons {
  justify-content: space-between;
  margin-top: 4rem;
}
#why-choose-us .reasons .reason {
  width: calc(100% / 6 - 2%);
  text-align: center;
  padding: 1rem;
  border: 1px solid #E0F0FF;
  border-radius: 1rem;
  box-shadow: 0 3px 6px rgba(83, 153, 214, 0.3), 0 3px 6px rgba(83, 153, 214, 0.4);
  position: relative;
}
@media (max-width: 1200px) {
  #why-choose-us .reasons .reason {
    width: 30% !important;
    margin-bottom: 70px !important;
  }
  #why-choose-us .reasons .reason:nth-child(n+4) {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 650px) {
  #why-choose-us .reasons .reason {
    width: 47% !important;
  }
  #why-choose-us .reasons .reason:nth-child(n+4) {
    margin-bottom: 70px !important;
  }
  #why-choose-us .reasons .reason:nth-child(n+5) {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 400px) {
  #why-choose-us .reasons .reason {
    width: 90% !important;
    margin: 0 auto 70px !important;
  }
  #why-choose-us .reasons .reason:nth-child(n+5) {
    margin-bottom: 70px !important;
  }
  #why-choose-us .reasons .reason:nth-child(n+6) {
    margin-bottom: 0 !important;
  }
}
#why-choose-us .reasons .reason img {
  position: absolute;
  top: -45px;
  width: 90px;
  right: 0;
  left: calc(50% - 45px);
}
#why-choose-us .reasons .reason p {
  padding-top: 50px;
  line-height: 1.6rem;
  font-size: 18px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#testimonials {
  text-align: center;
  margin: 2.5rem 0;
  padding: 75px 0;
}
@media (max-width: 600px) {
  #testimonials {
    padding: 50px 0 75px;
  }
}
@media (max-width: 500px) {
  #testimonials {
    padding: 25px 0;
  }
}
#testimonials .carousel-container {
  position: relative;
  padding: 0 50px;
}
#testimonials .carousel-container .next, #testimonials .carousel-container .prev {
  position: absolute;
  width: 40px;
  font-size: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333652;
  user-select: none;
  top: calc(50% - 35px);
}
#testimonials .carousel-container .next:hover, #testimonials .carousel-container .prev:hover {
  cursor: pointer;
}
#testimonials .carousel-container .next {
  right: 0;
}
#testimonials .carousel-container .prev {
  left: 0;
}
#testimonials .carousel-container .testimonial {
  margin: 2rem 0;
}
@media (max-width: 1024px) {
  #testimonials .carousel-container .testimonial {
    margin-bottom: 0;
  }
}
#testimonials .carousel-container .testimonial:hover {
  cursor: grab;
}
#testimonials .carousel-container .testimonial .content {
  margin-bottom: 2rem;
  letter-spacing: 0.4px;
  font-size: 21px !important;
  line-height: 1.9rem;
  font-weight: 400;
}
#testimonials .carousel-container .testimonial .author {
  font-family: "Lato", sans-serif;
  color: #333652;
  margin-top: 1rem;
  font-weight: bolder;
  letter-spacing: 0.4px;
  font-size: 22px !important;
}
#testimonials .carousel-container .testimonial .rating img {
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  width: 40px;
  height: auto;
}
@media (max-width: 400px) {
  #testimonials .carousel-container .testimonial .rating img {
    width: 25px;
  }
}
#testimonials .carousel-container .testimonial .rating.rating-1 img:first-child {
  -webkit-filter: grayscale(0);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(0);
}
#testimonials .carousel-container .testimonial .rating.rating-2 img:nth-child(-n+2) {
  -webkit-filter: grayscale(0);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(0);
}
#testimonials .carousel-container .testimonial .rating.rating-3 img:nth-child(-n+3) {
  -webkit-filter: grayscale(0);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(0);
}
#testimonials .carousel-container .testimonial .rating.rating-4 img:nth-child(-n+4) {
  -webkit-filter: grayscale(0);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(0);
}
#testimonials .carousel-container .testimonial .rating.rating-5 img:nth-child(-n+5) {
  -webkit-filter: grayscale(0);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(0);
}
#request-brochure-outer {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999999999;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  transition: all 0.4s;
  background-color: rgba(83, 153, 214, 0.3);
}
#request-brochure-outer #request-brochure-container {
  height: fit-content;
  background-color: #E0F0FF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  padding: 30px;
  max-width: 550px;
}
@media (max-width: 400px) {
  #request-brochure-outer #request-brochure-container {
    position: relative;
    padding: 40px 20px !important;
    max-width: 90% !important;
  }
}
@media (max-width: 700px) {
  #request-brochure-outer #request-brochure-container {
    max-width: 80%;
  }
}
@media (max-width: 500px) {
  #request-brochure-outer #request-brochure-container {
    padding: 30px 20px;
  }
}
#request-brochure-outer .header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  display: flex;
}
@media (max-width: 400px) {
  #request-brochure-outer .header {
    flex-wrap: wrap;
  }
}
#request-brochure-outer .header .heading {
  margin-bottom: 0 !important;
  font-size: 25px !important;
  transition: all 0.3s;
}
@media (max-width: 500px) {
  #request-brochure-outer .header .heading {
    font-size: 18px !important;
  }
}
@media (max-width: 400px) {
  #request-brochure-outer .header .heading {
    width: 100%;
  }
}
#request-brochure-outer input[name=miel] {
  width: 0;
  height: 0;
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
}
#request-brochure-outer.hidden {
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
#request-brochure-outer input[type=email] {
  margin-top: 20px;
}
@media (max-width: 500px) {
  #request-brochure-outer input[type=email] {
    margin-top: 10px;
  }
}
#request-brochure-outer input[type=tel] {
  margin-top: 20px;
  width: 100%;
}
@media (max-width: 500px) {
  #request-brochure-outer input[type=tel] {
    margin-top: 10px;
  }
}
#request-brochure-outer .close {
  font-size: 40px;
  font-weight: bold;
  transition: all 0.3s;
  line-height: 0;
}
#request-brochure-outer .close:hover {
  cursor: pointer;
  opacity: 0.5;
}
@media (max-width: 400px) {
  #request-brochure-outer .close {
    position: absolute;
    top: 10px;
    right: 10px;
    line-height: 0.5;
  }
}
#request-brochure-outer input:not([type=submit]), #request-brochure-outer textarea {
  border: 1px solid white;
}
#request-brochure-outer input:not([type=submit]):focus-visible, #request-brochure-outer textarea:focus-visible {
  border: 1px solid #5399D6;
  outline: none;
}
@media (max-width: 500px) {
  #request-brochure-outer input:not([type=submit]), #request-brochure-outer textarea {
    font-size: 17px;
  }
}
#request-brochure-outer input[type=submit]:focus-visible {
  outline: none;
}
@media (max-width: 500px) {
  #request-brochure-outer input[type=submit] {
    font-size: 19px;
  }
}
#request-brochure-outer .submit-row {
  display: flex;
  margin-top: 20px;
  justify-content: flex-end;
}
#request-brochure-outer .status-container {
  padding: 0;
}
#request-brochure-outer .status-container span.success {
  color: #06A77D;
  font-size: 20px;
  -webkit-text-stroke: 0.2px #06A77D;
}
.request-brochure.desktop {
  font-size: 18px !important;
  padding: 10px 15px !important;
  transition: transform 0s, background-color 0.4s;
  position: fixed;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transform-origin: left 45px;
  width: 276px;
  transform: rotate(90deg);
  left: 0;
  z-index: 999999;
  height: 45px;
  bottom: calc(50% + 137.5px);
}
.request-brochure.desktop:hover {
  cursor: pointer;
}
@media (max-width: 1024px) {
  .request-brochure.desktop {
    display: none;
  }
}
.request-brochure.mobile {
  padding: 10px 15px !important;
  font-size: 16px !important;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  border-bottom-left-radius: 0;
  z-index: 99999999;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
}
.request-brochure.mobile:hover {
  cursor: pointer;
}
@media (max-width: 1024px) {
  .request-brochure.mobile {
    display: inline-block;
  }
}
@media (max-width: 450px) {
  .request-brochure.mobile {
    width: auto !important;
  }
}
#popup-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#popup-outer {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999999999;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  transition: all 0.4s;
  background-color: rgba(83, 153, 214, 0.3);
}
#popup-outer #popup-container {
  height: fit-content;
  background-color: #E0F0FF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  padding: 30px;
  max-width: 550px;
  position: relative;
}
@media (max-width: 400px) {
  #popup-outer #popup-container {
    position: relative;
    padding: 40px 20px !important;
    max-width: 90% !important;
  }
}
@media (max-width: 700px) {
  #popup-outer #popup-container {
    max-width: 80%;
  }
}
@media (max-width: 500px) {
  #popup-outer #popup-container {
    padding: 30px 20px;
  }
}
@media (max-width: 500px) {
  #popup-outer #popup-container .half {
    width: 100%;
  }
}
#popup-outer .header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}
@media (max-width: 400px) {
  #popup-outer .header {
    flex-wrap: wrap;
  }
}
#popup-outer .header .heading {
  margin-bottom: 0 !important;
  font-size: 25px !important;
  transition: all 0.3s;
}
@media (max-width: 500px) {
  #popup-outer .header .heading {
    font-size: 18px !important;
  }
}
@media (max-width: 400px) {
  #popup-outer .header .heading {
    width: 100%;
  }
}
#popup-outer input[name=miel] {
  width: 0;
  height: 0;
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
}
#popup-outer.hidden {
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 500px) {
  #popup-outer input[type=email] {
    margin-top: 10px;
  }
}
#popup-outer input[type=tel] {
  width: 100%;
}
@media (max-width: 500px) {
  #popup-outer input[type=tel] {
    margin-top: 10px;
  }
}
#popup-outer .close {
  font-size: 40px;
  font-weight: bold;
  transition: all 0.3s;
  line-height: 0;
  cursor: pointer;
}
#popup-outer .close:hover {
  cursor: pointer;
  opacity: 0.5;
}
@media (max-width: 400px) {
  #popup-outer .close {
    position: absolute;
    top: 10px;
    right: 10px;
    line-height: 0.5;
  }
}
#popup-outer input:not([type=submit]):not([name=miel]), #popup-outer textarea {
  border: 1px solid white;
  margin-top: 16px;
}
#popup-outer input:not([type=submit]):not([name=miel]):focus-visible, #popup-outer textarea:focus-visible {
  border: 1px solid #5399D6;
  outline: none;
}
@media (max-width: 500px) {
  #popup-outer input:not([type=submit]):not([name=miel]), #popup-outer textarea {
    font-size: 17px;
  }
}
#popup-outer input[type=submit]:focus-visible {
  outline: none;
}
@media (max-width: 500px) {
  #popup-outer input[type=submit] {
    font-size: 19px;
  }
}
@media (max-width: 600px) {
  #popup-outer textarea {
    max-height: 100px;
  }
}
#popup-outer .submit-row {
  display: flex;
  margin-top: 20px;
  justify-content: flex-end;
}
#popup-outer .graphic {
  position: absolute;
  bottom: 30px;
  max-width: 150px;
}
@media (max-width: 600px) {
  #popup-outer .graphic {
    display: none;
  }
}
@media (max-width: 600px) {
  #popup-outer .text {
    display: none;
  }
}
#popup-outer .status-container {
  padding: 0;
}
#popup-outer .status-container span.success {
  color: #06A77D;
  font-size: 20px;
  -webkit-text-stroke: 0.2px #06A77D;
}
.popup.desktop {
  font-size: 18px !important;
  padding: 10px 15px !important;
  transition: transform 0s, background-color 0.4s;
  position: fixed;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transform-origin: left 45px;
  width: 276px;
  transform: rotate(90deg);
  left: 0;
  z-index: 999999;
  height: 45px;
  bottom: calc(50% + 137.5px);
}
.popup.desktop:hover {
  cursor: pointer;
}
@media (max-width: 1024px) {
  .popup.desktop {
    display: none;
  }
}
.popup.mobile {
  padding: 10px 15px !important;
  font-size: 16px !important;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  border-bottom-left-radius: 0;
  z-index: 99999999;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
}
.popup.mobile:hover {
  cursor: pointer;
}
@media (max-width: 1024px) {
  .popup.mobile {
    display: inline-block;
  }
}
@media (max-width: 450px) {
  .popup.mobile {
    width: auto !important;
  }
}
body.version-a #cta-blocks .cta-block {
  background: #fff;
}
body.version-b #cta-blocks .cta-block {
  background: #E0F0FF;
}
.page-template-front-page.version-a #cta-blocks, .page-template-front-page.version-a #testimonials, .page-template-front-page.version-b #cta-blocks, .page-template-front-page.version-b #testimonials {
  background: #E0F0FF;
}
.page-template-front-page.version-a #services, .page-template-front-page.version-a #why-choose-us, .page-template-front-page.version-b #services, .page-template-front-page.version-b #why-choose-us {
  background: #fff;
}
.page-template-front-page.version-a #services, .page-template-front-page.version-b #services {
  padding-top: 75px;
  padding-bottom: 75px;
}
.page-template-front-page.version-a #testimonials, .page-template-front-page.version-b #testimonials {
  padding-top: 50px;
  padding-bottom: 20px;
}
.page-template-front-page.version-a #cta-blocks .cta-block {
  background: #fff;
}
.page-template-front-page .header-cta.cta {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 3;
}
@media (max-width: 1024px) {
  .page-template-front-page .header-cta.cta {
    position: relative;
    z-index: 1;
  }
}
.page-template-front-page #main-header {
  background-color: transparent;
  padding-top: 3rem;
  top: 0;
  width: 100%;
  position: absolute;
  z-index: 2;
}
.page-template-front-page #main-header.sticky {
  background-color: #E0F0FF;
  padding-top: 1rem;
  padding-top: 1rem !important;
  position: fixed;
  transition: all 0.2s;
  z-index: 4;
}
@media (max-width: 1024px) {
  .page-template-front-page #main-header {
    position: relative;
    padding-top: 1rem;
    background-color: #E0F0FF;
  }
}
.page-template-front-page #main-header .container .menu-toggle {
  background-color: transparent;
}
.page-template-front-page .home-banner {
  background-position: bottom right;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  background-color: #e2e3e5;
  background-size: 500px;
}
@media (max-width: 1024px) {
  .page-template-front-page .home-banner #hero {
    padding-top: 0;
  }
}
@media (max-width: 1024px) {
  .page-template-front-page .home-banner {
    background-size: 300px !important;
  }
}
@media (max-width: 600px) {
  .page-template-front-page .home-banner {
    background-size: 40% !important;
  }
}
@media (max-width: 1024px) {
  .page-template-front-page .home-banner #main-header.sticky {
    background-color: #E0F0FF;
  }
}
@media (max-width: 1024px) {
  .page-template-front-page .home-banner #main-header {
    background-color: transparent;
    padding-top: 1rem !important;
  }
}
.page-template-front-page #hero {
  background-color: transparent;
  position: relative;
  padding: 180px 0 120px 0;
  z-index: 1;
}
@media (max-width: 1024px) {
  .page-template-front-page #hero {
    margin-bottom: 80px;
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .page-template-front-page #hero {
    padding: 25px 0;
  }
}
.page-template-front-page #hero .container {
  justify-content: space-between;
  display: flex;
}
.page-template-front-page #hero .container .content {
  padding: 25px 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
}
.page-template-front-page #hero .container .content h1 {
  display: block;
  width: fit-content;
  font-size: 37px;
}
@media (max-width: 1200px) {
  .page-template-front-page #hero .container .content h1 {
    font-size: 32px;
  }
}
.page-template-front-page #hero .container .content .mobile-hero-video {
  display: none;
}
.page-template-front-page #hero .container .content .mobile-hero-video video {
  width: 100%;
}
@media (max-width: 1024px) {
  .page-template-front-page #hero .container .content .mobile-hero-video {
    display: inline-block;
    margin-bottom: 30px;
  }
}
.page-template-front-page #hero .container .content .hero-intro .hero-text {
  margin-bottom: 30px;
  max-width: 680px;
}
.page-template-front-page #hero .container .content .hero-intro .hero-text p {
  color: #333652;
  font-size: 21px !important;
  font-weight: 300;
}
.page-template-front-page #hero .container .content .hero-intro .hero-text p strong {
  font-family: "Poppins", sans-serif;
}
@media (max-width: 1200px) {
  .page-template-front-page #hero .container .content .hero-intro {
    margin: 1rem 0;
  }
}
@media (max-width: 1024px) {
  .page-template-front-page #hero .container .content .hero-intro {
    margin: 0;
  }
}
.page-template-front-page #hero .container .content .hero-bullets li {
  color: #333652;
  font-size: 21px;
  font-weight: 300;
  font-family: "Lato", sans-serif;
  line-height: 1.2;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
}
.page-template-front-page #hero .container .content .hero-bullets li img {
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: auto;
  position: absolute;
  left: 0;
}
@media (max-width: 1024px) {
  .page-template-front-page #hero .container .content {
    padding: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .page-template-front-page #hero .container .content {
    margin-bottom: 30px;
  }
}
.page-template-front-page #hero .container .content .links {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
}
@media (max-width: 1580px) {
  .page-template-front-page #hero .container .content .links {
    flex-direction: column;
    align-items: start;
    margin-top: 30px;
  }
}
.page-template-front-page #hero .container .content .links .button {
  width: max-content;
  padding: 13px 30px;
  font-size: 22px;
}
.page-template-front-page #hero .container .content .heading {
  margin-bottom: 4rem;
}
.page-template-front-page #hero .container .hero-logos {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin: 30px 50px 0 50px;
}
@media (max-width: 1580px) {
  .page-template-front-page #hero .container .hero-logos {
    margin: 30px 0 0 0;
  }
}
@media (max-width: 1024px) {
  .page-template-front-page #hero .container .hero-logos {
    margin: 30px auto 0 auto;
  }
}
.page-template-front-page #hero .container .hero-logos .logos {
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: 100%;
  margin-bottom: 30px;
  gap: 30px;
}
@media (max-width: 1024px) {
  .page-template-front-page #hero .container .hero-logos .logos {
    width: 100%;
    max-width: 450px;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .page-template-front-page #hero .container .hero-logos .logos {
    flex-direction: column;
  }
  .page-template-front-page #hero .container .hero-logos .logos .logo {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }
  .page-template-front-page #hero .container .hero-logos .logos .logo:last-child {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 480px) {
  .page-template-front-page #hero .container .hero-logos .logos {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.page-template-front-page #hero .container .hero-logos .logos .logo {
  line-height: 1.2;
}
.page-template-front-page #hero .container .hero-logos .logos .logo img {
  max-width: 130px;
  max-height: 35px;
  width: auto;
}
@media (max-width: 500px) {
  .page-template-front-page #hero .container .hero-logos .logos .logo img {
    max-width: 100px;
    max-height: none;
  }
}
@media (max-width: 350px) {
  .page-template-front-page #hero .container .hero-logos .logos .logo img {
    margin-bottom: 0;
  }
  .page-template-front-page #hero .container .hero-logos .logos .logo img:last-child {
    margin-bottom: 0;
  }
}
.page-template-front-page #hero .container .hero-logos .logos .logo.checkatrade img {
  margin-bottom: 4px;
}
.page-template-front-page #hero .container .hero-logos .logos .logo.google-reviews img {
  max-height: 40px;
}
@media (max-width: 600px) {
  .page-template-front-page #hero .container .hero-logos .logos .logo.google-reviews img {
    max-height: none;
  }
}
.page-template-front-page #hero .container .hero-logos .logos .logo span {
  display: block;
  font-size: 0.8em;
  color: #333652;
}
@media (max-width: 1024px) {
  .page-template-front-page #hero .container .hero-logos {
    width: 100%;
  }
}
.page-template-front-page #hero .wave {
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  display: block;
}
.page-template-front-page #homepage {
  margin-top: 0 !important;
}
.page-template-front-page #homepage #hero {
  background-color: #E0F0FF;
  position: relative;
  margin-bottom: 120px;
  padding: 320px 0 75px 0;
}
@media (max-width: 1024px) {
  .page-template-front-page #homepage #hero {
    margin-bottom: 80px;
    padding-top: 30px;
  }
}
@media (max-width: 768px) {
  .page-template-front-page #homepage #hero {
    padding: 25px 0;
  }
}
.page-template-front-page #homepage #hero .container {
  justify-content: space-between;
  display: flex;
}
.page-template-front-page #homepage #hero .container .content {
  padding: 25px 0;
  width: 48%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
}
.page-template-front-page #homepage #hero .container .content h1 {
  display: block;
  width: fit-content;
  font-size: 37px;
}
@media (max-width: 1200px) {
  .page-template-front-page #homepage #hero .container .content h1 {
    font-size: 32px;
  }
}
.page-template-front-page #homepage #hero .container .content .mobile-hero-video {
  display: none;
}
.page-template-front-page #homepage #hero .container .content .mobile-hero-video video {
  width: 100%;
}
@media (max-width: 1024px) {
  .page-template-front-page #homepage #hero .container .content .mobile-hero-video {
    display: inline-block;
    margin-bottom: 30px;
  }
}
.page-template-front-page #homepage #hero .container .content .hero-text p {
  color: #333652;
  font-size: 21px !important;
  font-weight: 300;
}
@media (max-width: 1200px) {
  .page-template-front-page #homepage #hero .container .content .hero-text {
    margin: 1rem 0;
  }
}
@media (max-width: 1024px) {
  .page-template-front-page #homepage #hero .container .content .hero-text {
    margin: 0;
  }
}
@media (max-width: 1024px) {
  .page-template-front-page #homepage #hero .container .content {
    padding: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .page-template-front-page #homepage #hero .container .content {
    margin-bottom: 30px;
  }
}
.page-template-front-page #homepage #hero .container .content .links {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 0;
}
.page-template-front-page #homepage #hero .container .content .links .logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 350px) {
  .page-template-front-page #homepage #hero .container .content .links .logos {
    flex-wrap: wrap;
  }
  .page-template-front-page #homepage #hero .container .content .links .logos .logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px !important;
  }
  .page-template-front-page #homepage #hero .container .content .links .logos .logo:last-child {
    margin-bottom: 0 !important;
  }
}
.page-template-front-page #homepage #hero .container .content .links .logos .logo {
  line-height: 0;
}
.page-template-front-page #homepage #hero .container .content .links .logos .logo img {
  max-width: 150px;
  max-height: 75px;
}
@media (max-width: 500px) {
  .page-template-front-page #homepage #hero .container .content .links .logos .logo img {
    max-width: 100px;
    max-height: 60px;
  }
}
@media (max-width: 350px) {
  .page-template-front-page #homepage #hero .container .content .links .logos .logo img {
    max-width: 150px;
    max-height: 75px;
    margin-bottom: 20px;
  }
  .page-template-front-page #homepage #hero .container .content .links .logos .logo img:last-child {
    margin-bottom: 0;
  }
}
.page-template-front-page #homepage #hero .container .content .links .logos .logo.trustatrade {
  margin-bottom: -10px;
}
.page-template-front-page #homepage #hero .container .content .links .logos .logo.checkatrade {
  margin-bottom: -6px;
}
.page-template-front-page #homepage #hero .container .content .links .button {
  width: max-content;
  padding: 13px 30px;
}
.page-template-front-page #homepage #hero .container .content .heading {
  margin-bottom: 2rem;
}
.page-template-front-page #homepage #hero .container .hero-video {
  margin-top: -17px;
  width: 45%;
  display: flex;
  align-items: center;
}
.page-template-front-page #homepage #hero .container .hero-video video {
  width: 100%;
  max-height: 333px;
}
@media (max-width: 1024px) {
  .page-template-front-page #homepage #hero .container .hero-video {
    display: none;
  }
}
.page-template-front-page #homepage #hero .wave {
  right: 0;
  left: 0;
  top: 100%;
  position: absolute;
  display: block;
}
.page-template-front-page #cta-blocks {
  background: #fff;
  text-align: center;
  margin: 2.5rem 0;
  padding: 50px 0;
  position: relative;
}
.page-template-front-page #cta-blocks h2 {
  margin-bottom: 2rem;
  letter-spacing: 5px;
}
@media (max-width: 1024px) {
  .page-template-front-page #cta-blocks {
    padding: 25px 0;
  }
}
.page-template-front-page #cta-blocks > .container {
  justify-content: center;
}
.page-template-front-page #cta-blocks .ctas {
  justify-content: space-between;
  width: 100%;
  align-items: center;
  max-width: 1000px;
}
.page-template-front-page #cta-blocks .ctas .cta-block {
  width: calc((100% / 3) - 2.5%);
  text-align: center;
  padding: 1.5rem;
  align-self: stretch;
  border: 1px solid #E0F0FF;
  border-radius: 1rem;
  box-shadow: 0 3px 6px rgba(83, 153, 214, 0.3), 0 3px 6px rgba(83, 153, 214, 0.4);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .page-template-front-page #cta-blocks .ctas .cta-block {
    padding: 1rem;
  }
}
@media (max-width: 768px) {
  .page-template-front-page #cta-blocks .ctas .cta-block {
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  .page-template-front-page #cta-blocks .ctas .cta-block {
    width: 100%;
    margin-bottom: 20px;
  }
  .page-template-front-page #cta-blocks .ctas .cta-block:last-child {
    margin-bottom: 0;
  }
}
.page-template-front-page #cta-blocks .ctas .cta-block img {
  margin: 0 auto 20px;
  width: 90px;
}
.page-template-front-page #cta-blocks .ctas .cta-block h3 {
  margin-bottom: 20px;
}
.page-template-front-page #cta-blocks .ctas .cta-block p {
  line-height: 1.6rem;
  font-size: 18px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.page-template-front-page #cta-blocks .ctas .cta-block .button {
  display: inline-block;
  white-space: nowrap;
  max-width: 300px;
  margin: 0 auto 10px;
}
@media (max-width: 900px) {
  .page-template-front-page #cta-blocks .ctas .cta-block .button {
    padding: 13px 20px;
  }
}
@media (max-width: 768px) {
  .page-template-front-page #cta-blocks .ctas .cta-block .button {
    padding: 13px 30px;
  }
}
.page-template-front-page #intro {
  padding: 25px 0 100px;
  font-family: "Lato", sans-serif;
  font-weight: 300;
}
.page-template-front-page #intro .heading {
  margin-bottom: 4rem;
}
.page-template-front-page #intro ~ .cta {
  margin-top: 0;
  margin-bottom: 0;
}
.page-template-front-page #why-choose-us {
  padding: 75px 0;
  background: #fff;
}
.page-template-front-page #why-choose-us.blue-background {
  margin-bottom: 0;
  background: #E0F0FF;
}
.page-template-front-page #why-choose-us h2 {
  margin-bottom: 2rem;
  letter-spacing: 5px;
}
@media (max-width: 1024px) {
  .page-template-front-page #why-choose-us {
    padding: 25px 0;
  }
}
@media (max-width: 500px) {
  .page-template-front-page #why-choose-us {
    padding: 0 0 25px;
  }
}
@media (max-width: 1024px) {
  .page-template-front-page .cta .container a {
    width: fit-content;
  }
}
.page-template-front-page #testimonials {
  position: relative;
}
.page-template-front-page #testimonials.blue-background {
  margin-top: 0;
  background: #E0F0FF;
  padding-bottom: 0;
}
@media (max-width: 1024px) {
  .page-template-front-page #testimonials {
    padding: 25px 0 50px;
  }
}
@media (max-width: 768px) {
  .page-template-front-page #testimonials {
    padding: 0 0 25px !important;
  }
}
@media (max-width: 500px) {
  .page-template-front-page #testimonials {
    padding: 0 !important;
  }
}
.page-template-front-page #testimonials .container .testimonial .content {
  color: #333652;
}
.page-template-front-page #services {
  margin: 2.5rem 0;
  padding: 100px 0;
  position: relative;
}
.page-template-front-page #services.blue-background {
  background: #E0F0FF;
  padding: 0;
}
.page-template-front-page #services .services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-template-front-page #services .services .service {
  width: 45%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0;
}
@media (max-width: 500px) {
  .page-template-front-page #services .services .service {
    width: 100%;
    flex-direction: column;
    margin: 1rem 0;
  }
}
.page-template-front-page #services .services .service .divider {
  height: 100%;
  width: 5px;
  background-color: var(--accent-color);
}
@media (max-width: 500px) {
  .page-template-front-page #services .services .service .divider {
    width: 100%;
    height: 5px;
    margin: 1rem 0;
  }
}
.page-template-front-page #services .services .service img {
  width: 20%;
  height: auto;
}
@media (max-width: 500px) {
  .page-template-front-page #services .services .service img {
    width: 30%;
  }
}
.page-template-front-page #services .services .service .content {
  width: 65%;
  padding-bottom: 20px;
}
@media (max-width: 500px) {
  .page-template-front-page #services .services .service .content {
    width: 90%;
    text-align: center;
  }
}
.page-template-front-page #services .services .service .content h4 {
  color: #5399D6;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
.page-template-front-page #services .services .service .content p {
  line-height: 1.6rem;
}
.page-template-front-page #services .services .service:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 500px) {
  .page-template-front-page #services .services .service:nth-child(even) {
    flex-direction: column;
  }
}
.page-template-front-page #services .services .service:nth-child(even) .content {
  text-align: right;
}
@media (max-width: 500px) {
  .page-template-front-page #services .services .service:nth-child(even) .content {
    text-align: center;
  }
}
.page-template-front-page #design {
  background: #E0F0FF;
  position: relative;
}
.page-template-front-page #design .heading {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .page-template-front-page #design .row {
    flex-direction: row-reverse;
  }
}
.page-template-front-page #design .row .content {
  padding: 0 25px;
  width: 50%;
  font-family: "Lato", sans-serif;
  font-weight: 300;
}
@media (max-width: 768px) {
  .page-template-front-page #design .row .content {
    width: 100%;
  }
}
.page-template-front-page #design .row .image {
  padding: 0 25px;
  width: 50%;
}
@media (max-width: 768px) {
  .page-template-front-page #design .row .image {
    width: 100%;
  }
}
.page-template-front-page #contact-form .container .contact-form-container form input[type=submit], .page-template-front-page #contact-form .container .contact-form-container form .submit-row {
  margin-bottom: 0;
}
.page-template-front-page #video {
  margin: 2.5rem 0;
  padding: 150px 0;
}
@media (max-width: 1024px) {
  .page-template-front-page #video {
    padding: 50px 0;
  }
}
@media (max-width: 500px) {
  .page-template-front-page #video {
    padding: 25px 0;
  }
}
.page-template-front-page #video .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-template-front-page #video .container .content {
  width: 50%;
}
@media (max-width: 768px) {
  .page-template-front-page #video .container .content {
    margin-bottom: 30px;
  }
}
.page-template-front-page #video .container .content h2 {
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .page-template-front-page #video .container .content h2 {
    margin-bottom: 2rem;
  }
}
.page-template-front-page #video .container .content p {
  line-height: 1.6rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .page-template-front-page #video .container .content p {
    font-size: 19px;
    line-height: 1.8rem;
  }
}
.page-template-front-page #video .container video {
  width: calc(50% - 40px);
}
.page-template-front-page #homepage-gallery {
  margin: 2.5rem 0;
  padding: 100px 0;
}
@media (max-width: 600px) {
  .page-template-front-page #homepage-gallery {
    padding: 50px 0;
  }
}
@media (max-width: 1024px) {
  .page-template-front-page #homepage-gallery {
    padding: 50px 0;
  }
}
@media (max-width: 500px) {
  .page-template-front-page #homepage-gallery {
    padding: 25px 0;
  }
}
.page-template-front-page #homepage-gallery .container .images {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-template-front-page #homepage-gallery .container .images img {
  width: 32%;
  user-select: none;
  max-height: 400px;
  object-fit: cover;
}
.page-template-front-page #homepage-gallery .container .images img:hover {
  cursor: pointer;
}
@media (max-width: 900px) {
  .page-template-front-page #homepage-gallery .container .images img:first-child {
    max-height: 500px;
    object-fit: cover;
  }
}
@media (max-width: 768px) {
  .page-template-front-page #homepage-gallery .container .images img {
    width: 48%;
    max-height: 200px;
    margin-bottom: 30px;
    align-items: self-start;
  }
  .page-template-front-page #homepage-gallery .container .images img:first-child {
    width: 100%;
    max-height: initial;
  }
}
.page-template-front-page #homepage-gallery .container .gallery-bottom {
  width: 80%;
  margin: 50px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .page-template-front-page #homepage-gallery .container .gallery-bottom {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 1200px) {
  .page-template-front-page #homepage-gallery .container .gallery-bottom {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .page-template-front-page #homepage-gallery .container .gallery-bottom {
    margin-top: 0;
  }
}
.page-template-front-page #homepage-gallery .container .gallery-bottom a {
  width: fit-content;
}
@media (max-width: 500px) {
  .page-template-front-page #homepage-gallery .container .gallery-bottom a {
    width: 100%;
  }
}
.page-template-front-page #homepage-gallery .container .gallery-bottom p {
  line-height: 1.6rem;
  width: 68%;
}
@media (max-width: 1024px) {
  .page-template-front-page #homepage-gallery .container .gallery-bottom p {
    width: 100%;
    margin-bottom: 30px;
  }
}
.page-template-front-page #homepage-gallery .container .lightbox-container {
  padding: 3rem;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(83, 153, 214, 0.8);
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  transition: all 0.3s;
}
.page-template-front-page #homepage-gallery .container .lightbox-container.hidden {
  opacity: 0;
  pointer-events: none;
}
.page-template-front-page #homepage-gallery .container .lightbox-container .close {
  position: fixed;
  top: 20px;
  right: 30px;
  color: #f1f1f1;
  font-size: 50px;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-template-front-page #homepage-gallery .container .lightbox-container .close:hover {
  cursor: pointer;
}
.page-template-front-page #homepage-gallery .container .lightbox-container .lightbox {
  width: 90%;
  height: 90%;
  justify-content: center;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .page-template-front-page #homepage-gallery .container .lightbox-container .lightbox {
    width: 100%;
    height: 100%;
  }
}
.page-template-front-page #homepage-gallery .container .lightbox-container .lightbox img {
  max-height: 100%;
  display: none;
  max-width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.page-template-front-page #home-faqs {
  position: relative;
  padding: 50px 0;
  background: #E0F0FF;
}
@media (max-width: 1024px) {
  .page-template-front-page #home-faqs {
    padding-bottom: 60px;
  }
}
@media (max-width: 500px) {
  .page-template-front-page #home-faqs {
    padding-bottom: 30px;
  }
}
.page-template-front-page #home-faqs .heading {
  margin: 0 auto 3rem 0;
}
@media (max-width: 1024px) {
  .page-template-front-page #home-faqs .heading {
    margin: 0 auto 50px 0;
  }
}
.page-template-front-page #home-faqs .faq {
  margin: 0 0 30px;
  padding-left: 30px;
  position: relative;
}
.page-template-front-page #home-faqs .faq:before {
  content: "?";
  background: #5399d5;
  border-radius: 100%;
  height: 20px;
  width: 20px;
  display: flex;
  position: absolute;
  left: 0;
  top: 2px;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  color: #fff;
}
.page-template-front-page #home-faqs .faq .question {
  margin-bottom: 20px;
}
.page-template-front-page #home-faqs .faq .answer p {
  margin-bottom: 10px;
  font-weight: 300;
}
.page-template-front-page #home-faqs a {
  color: #333652;
}
.page-template-front-page #home-faqs a:hover {
  color: #5399D6;
}
#services .cta.with-button {
  margin: 0;
}
#services #hero {
  margin: 2.5rem 0;
  padding: 150px 0 100px;
}
@media (max-width: 1024px) {
  #services #hero {
    padding: 100px 0;
  }
}
@media (max-width: 900px) {
  #services #hero {
    padding: 50px 0;
  }
}
@media (max-width: 500px) {
  #services #hero {
    padding: 25px 0;
  }
}
#services #hero .container {
  justify-content: space-between;
}
#services #hero .container .hero-video {
  width: 47%;
}
#services #hero .container .hero-video video {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  #services #hero .container .hero-video video {
    display: none;
  }
}
#services #hero .container .hero-video img.shadow {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  #services #hero .container .hero-video img.shadow {
    display: none;
  }
}
#services #hero .container .content {
  width: 47%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#services #hero .container .content .mobile-hero-video {
  display: none;
}
@media (max-width: 768px) {
  #services #hero .container .content .mobile-hero-video {
    display: block;
    margin-bottom: 30px;
  }
}
#services #hero .container .content p {
  font-size: 21px !important;
  line-height: 2rem;
  color: #333652;
  font-weight: 300;
}
#services #hero .container .content h1 {
  width: fit-content;
  margin-bottom: 2rem;
}
@media (max-width: 1280px) {
  #services #hero .container .content h1 {
    text-align: right;
  }
}
#services .trustpilot-reviews .heading {
  height: 80px;
  overflow: visible;
}
#services .trustpilot-reviews .heading img {
  display: inline-block;
  vertical-align: middle;
  width: 100px;
  padding-bottom: 12px;
}
#services .trustpilot-reviews .tp-review {
  margin: 30px 0;
}
#services .trustpilot-reviews .tp-review .comment {
  position: relative;
  margin-bottom: 20px;
  text-align: center;
  min-height: 200px;
  /*
				display: -webkit-box;
				-webkit-line-clamp: 5;
				-webkit-box-orient: vertical;
				overflow: hidden;
				*/
}
#services .trustpilot-reviews .tp-review .comment p {
  font-size: 16px !important;
}
#services .trustpilot-reviews .tp-review .rating {
  float: right;
}
#services .trustpilot-reviews .tp-review .rating img {
  display: inline-block;
  vertical-align: middle;
}
#services .logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 350px) {
  #services .logos {
    flex-wrap: wrap;
  }
  #services .logos .logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px !important;
  }
  #services .logos .logo:last-child {
    margin-bottom: 0 !important;
  }
}
#services .logos .logo {
  line-height: 0;
}
#services .logos .logo img {
  max-width: 150px;
  max-height: 75px;
}
@media (max-width: 500px) {
  #services .logos .logo img {
    max-width: 100px;
    max-height: 60px;
  }
}
@media (max-width: 350px) {
  #services .logos .logo img {
    max-width: 150px;
    max-height: 75px;
    margin-bottom: 20px;
  }
  #services .logos .logo img:last-child {
    margin-bottom: 0;
  }
}
#services .logos .logo.trustatrade {
  margin-bottom: -10px;
}
#services .logos .logo.checkatrade {
  margin-bottom: -6px;
}
#services #cta-blocks {
  background: #E0F0FF;
  text-align: center;
  margin: 2.5rem 0;
  padding: 50px 0;
  position: relative;
}
#services #cta-blocks h2 {
  margin-bottom: 2rem;
  letter-spacing: 5px;
}
@media (max-width: 1024px) {
  #services #cta-blocks {
    padding: 25px 0;
  }
}
#services #cta-blocks > .container {
  justify-content: center;
}
#services #cta-blocks .ctas {
  justify-content: space-between;
  width: 100%;
  align-items: center;
  max-width: 1000px;
}
#services #cta-blocks .ctas .cta-block {
  width: calc((100% / 3) - 2.5%);
  text-align: center;
  padding: 1.5rem;
  align-self: stretch;
  border: 1px solid #E0F0FF;
  border-radius: 1rem;
  box-shadow: 0 3px 6px rgba(83, 153, 214, 0.3), 0 3px 6px rgba(83, 153, 214, 0.4);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 900px) {
  #services #cta-blocks .ctas .cta-block {
    padding: 1rem;
  }
}
@media (max-width: 768px) {
  #services #cta-blocks .ctas .cta-block {
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  #services #cta-blocks .ctas .cta-block {
    width: 100%;
    margin-bottom: 20px;
  }
  #services #cta-blocks .ctas .cta-block:last-child {
    margin-bottom: 0;
  }
}
#services #cta-blocks .ctas .cta-block img {
  margin: 0 auto 10px;
  width: 90px;
}
#services #cta-blocks .ctas .cta-block h3 {
  margin-bottom: 10px;
}
#services #cta-blocks .ctas .cta-block p {
  line-height: 1.6rem;
  font-size: 18px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
#services #cta-blocks .ctas .cta-block .button {
  display: inline-block;
  white-space: nowrap;
  max-width: 300px;
  margin: 0 auto 10px;
}
@media (max-width: 900px) {
  #services #cta-blocks .ctas .cta-block .button {
    padding: 13px 20px;
  }
}
@media (max-width: 768px) {
  #services #cta-blocks .ctas .cta-block .button {
    padding: 13px 30px;
  }
}
#services #content #services-list {
  padding: 125px 0;
}
@media (max-width: 900px) {
  #services #content #services-list {
    padding: 50px 0;
  }
}
@media (max-width: 500px) {
  #services #content #services-list {
    padding: 25px 0;
  }
}
#services #content #services-list .container {
  justify-content: center;
}
#services #content #services-list .container h2 {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  #services #content #services-list .container h2 {
    text-align: center;
    width: fit-content !important;
    display: block;
    margin-bottom: 30px;
  }
}
#services #content #services-list .container ul {
  display: grid;
  grid-gap: 50px;
  grid-column-gap: 10%;
  width: 100%;
  grid-template-columns: 45% 45%;
  max-width: 900px;
}
@media (max-width: 768px) {
  #services #content #services-list .container ul {
    grid-template-columns: 100%;
    grid-gap: 30px;
  }
}
#services #content #services-list .container ul li {
  width: 100%;
  display: flex;
  align-items: center;
  color: #333652;
  font-size: 21px;
  font-family: "Lato", sans-serif;
}
@media (max-width: 768px) {
  #services #content #services-list .container ul li {
    width: 100%;
  }
}
#services #content #services-list .container ul li img {
  margin-right: 25px;
  width: 35px;
}
#services #content #why-choose-us {
  background-color: #E0F0FF;
  position: relative;
  margin: 2.5rem 0;
  padding: 50px 0;
  scroll-margin-top: 130px;
}
#services #content #why-choose-us h2 {
  margin-bottom: 3rem;
  letter-spacing: 4px;
}
@media (max-width: 768px) {
  #services #content #why-choose-us h2 {
    text-align: center;
    margin-bottom: 1rem;
    width: fit-content !important;
  }
}
#services #content #faq {
  padding: 125px 0;
}
@media (max-width: 900px) {
  #services #content #faq {
    padding: 50px 0;
  }
}
@media (max-width: 500px) {
  #services #content #faq {
    padding: 25px 0;
  }
}
#services #content #faq h2 .heading {
  margin: 0 auto 3rem auto;
}
#services #content #footer-area {
  background-color: #E0F0FF;
  position: relative;
  margin: 2.5rem 0;
  padding: 50px 0;
  scroll-margin-top: 130px;
}
#services #content #footer-area .container {
  justify-content: space-between;
  align-items: center;
}
#services #content #footer-area .container h2 {
  width: 100%;
  text-align: center;
}
#services #content #footer-area .container h2 span.heading {
  margin: 60px auto 60px;
}
@media (max-width: 768px) {
  #services #content #footer-area .container h2 span.heading {
    margin: 0 auto 30px;
  }
}
#services #content #footer-area .container .image {
  width: 45%;
}
@media (max-width: 768px) {
  #services #content #footer-area .container .image {
    margin-bottom: 30px;
  }
}
#services #content #footer-area .container .content {
  width: 50%;
}
@media (max-width: 768px) {
  #services #content #footer-area .container .content {
    order: 2;
  }
}
#services #content #footer-area .container .content p {
  font-size: 21px !important;
  line-height: 2.2rem;
  font-weight: 300;
}
#services #content #contact-form {
  padding: 125px 0;
  background-color: transparent;
}
@media (max-width: 900px) {
  #services #content #contact-form {
    padding: 50px 0;
  }
}
@media (max-width: 500px) {
  #services #content #contact-form {
    padding: 25px 0;
  }
}
@media (max-width: 768px) {
  #services #content #contact-form {
    padding: 25px 0;
  }
}
@media (max-width: 400px) {
  #services #content #contact-form {
    padding: 0;
  }
}
#services #content #contact-form input:not([type=submit]), #services #content #contact-form textarea {
  background-color: #E0F0FF;
}
#services #content #contact-form #main-contact-form textarea {
  height: 300px;
}
#services #content #contact-form .container .contact-form-container form input[type=submit] {
  margin-bottom: 0;
}
#services #content #contact-form input[type="submit"], #services #content #contact-form .submit-row {
  margin-bottom: 0;
}
#blog h1.heading {
  margin: 150px auto 3rem 0;
}
@media (max-width: 1024px) {
  #blog h1.heading {
    margin: 100px auto 50px 0;
  }
}
@media (max-width: 768px) {
  #blog h1.heading {
    margin: 50px auto 50px 0;
  }
}
#blog .empty-posts {
  text-align: center;
  width: 100%;
}
#blog .tags {
  margin-bottom: 30px;
}
#blog .tags a {
  font-weight: 300;
}
#blog a:not(.button) {
  color: #333652;
}
#blog a:not(.button):hover, #blog a:not(.button):active, #blog a:not(.button):focus {
  color: #5399D6;
}
#blog .archive-info {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  #blog .archive-info {
    flex-direction: column;
    margin-bottom: 0;
  }
}
#blog .archive-info .search {
  display: block;
}
#blog .archive-info .categories ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-gap: 0 50px;
  grid-auto-flow: row;
  margin: 10px 20px;
}
@media (max-width: 1200px) {
  #blog .archive-info .categories ul {
    grid-gap: 0 20px;
  }
}
@media (max-width: 1024px) {
  #blog .archive-info .categories ul {
    margin: 30px 0;
  }
}
@media (max-width: 768px) {
  #blog .archive-info .categories ul {
    display: block;
    text-align: center;
  }
}
#blog .archive-info .categories ul .cat-item {
  font-size: 20px;
  color: #333652;
  font-weight: bold;
  line-height: 2;
  white-space: nowrap;
  letter-spacing: 1px;
}
#blog .archive-info .categories ul .cat-item a {
  color: #333652;
}
#blog .archive-info .categories ul .cat-item a:hover {
  color: #5399D6;
}
#blog #content > .container {
  justify-content: space-between;
  grid-gap: 50px;
}
#blog #content > .container .blog {
  width: calc(50% - 25px);
}
#blog #content > .container .blog .meta {
  margin: 20px 0;
  letter-spacing: 2px;
  font-weight: 400;
}
#blog #content > .container .blog .title {
  font-size: 28px;
  margin-bottom: 30px;
}
#blog #content > .container .blog .excerpt {
  margin-bottom: 30px;
  font-weight: 300;
}
#blog #content > .container .blog img {
  width: 100%;
  height: 380px;
  -o-object-fit: cover;
  object-fit: cover;
}
#blog #content > .container .blog .button {
  display: inline-block;
}
#blog #pagination {
  width: 100%;
}
#blog #pagination .pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#blog #pagination .pagination .page-num {
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 3;
}
@media (max-width: 480px) {
  #blog #pagination .pagination .page-num {
    font-size: 16px;
  }
}
#blog #pagination .pagination .page-num span {
  padding: 10px 20px;
  background: #333652;
  margin: 10px;
  color: #fff;
  border-radius: 10px;
}
@media (max-width: 480px) {
  #blog #pagination .pagination .page-num span {
    padding: 5px 10px;
  }
}
#blog #pagination .pagination .page-num a {
  padding: 10px 20px;
  background: #eee;
  margin: 10px;
  color: #333652;
  border-radius: 10px;
}
#blog #pagination .pagination .page-num a.prev, #blog #pagination .pagination .page-num a.next {
  background: transparent;
}
@media (max-width: 480px) {
  #blog #pagination .pagination .page-num a {
    padding: 5px 10px;
  }
}
#blog .footer-gallery {
  position: relative;
  background: #E0F0FF;
  margin: 6rem 0 0;
  padding: 50px 0 100px;
}
@media (max-width: 768px) {
  #blog .footer-gallery {
    padding: 50px 0 30px;
  }
}
#blog .footer-gallery h2 {
  text-align: center;
  margin: 0 0 50px;
}
#blog .footer-gallery .button {
  display: inline-block;
  margin: 30px 20px;
  white-space: nowrap;
}
#blog .footer-gallery .gallery {
  display: flex;
  grid-gap: 30px;
}
@media (max-width: 768px) {
  #blog .footer-gallery .gallery {
    flex-direction: column;
  }
}
#blog .footer-gallery .gallery .gallery-single {
  width: 33.33%;
}
@media (max-width: 768px) {
  #blog .footer-gallery .gallery .gallery-single {
    width: 100%;
  }
}
#blog .footer-gallery .gallery .gallery-single img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 280px;
}
#blog .footer-gallery .gallery-description {
  display: flex;
  align-items: center;
  width: 85%;
  margin: 0 auto;
  padding: 20px;
}
@media (max-width: 1024px) {
  #blog .footer-gallery .gallery-description {
    flex-direction: column;
    width: 100%;
    padding: 20px 0 0 0;
  }
}
#four-zero-four {
  padding: 150px 0;
}
#four-zero-four p {
  margin: 1rem 0 2rem;
}
@media (max-width: 768px) {
  #four-zero-four {
    padding: 50px 0;
  }
}
@media (max-width: 1024px) {
  #four-zero-four {
    padding: 100px 0;
  }
}
#blog-search-form {
  position: relative;
}
#blog-search-form .search-form-submit {
  background: transparent;
  position: absolute;
  left: 20px;
  width: 30px;
  height: 30px;
  z-index: 1;
  border: none;
  top: 15px;
}
#blog-search-form .search-form-text {
  padding-left: 60px;
  border: 2px solid #333652;
  border-radius: 10px;
  background: transparent;
  color: #333652;
  width: 100%;
}
#blog-search-form .search-form-text:active, #blog-search-form .search-form-text:focus {
  border: 2px solid transparent;
}
#blog-search-form .icon {
  position: absolute;
  left: 20px;
  top: 15px;
  z-index: 0;
  width: 30px;
  height: 30px;
}
#s::-webkit-input-placeholder {
  /* Edge */
  color: #333652;
  opacity: 1;
  font-weight: bold;
  opacity: 1;
}
#s:-ms-input-placeholder {
  /* Internet Explorer */
  color: #333652;
  font-weight: bold;
  opacity: 1;
}
#s::placeholder {
  color: #333652;
  font-weight: bold;
  opacity: 1;
}
#page {
  padding: 150px 0;
}
@media (max-width: 1024px) {
  #page {
    padding: 100px 0;
  }
}
@media (max-width: 768px) {
  #page {
    padding: 50px 0;
  }
}
#page p {
  margin-bottom: 1rem;
}
#page p:last-child {
  margin-bottom: 0;
}
#single-blog {
  padding-top: 100px;
}
@media (max-width: 1024px) {
  #single-blog {
    padding-top: 50px;
  }
}
#single-blog .back {
  color: #5399D6;
  font-family: "Poppins", sans-serif;
  margin: 20px 0;
  display: block;
}
#single-blog .back:hover {
  color: #87b8e2;
}
#single-blog .button {
  display: inline-block;
  margin: 20px 0;
  font-size: 18px;
}
#single-blog .main {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  #single-blog .main {
    flex-direction: column-reverse;
  }
}
#single-blog .main .sidebar {
  width: calc(33.33% - 50px);
  padding-left: 50px;
  margin-left: 50px;
  border-left: 2px solid #eee;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  #single-blog .main .sidebar {
    width: 100%;
    padding-left: 0;
    margin-left: 0;
    border-left: none;
  }
}
#single-blog .main .sidebar .sidebar-nav {
  margin-bottom: 200px;
}
@media (max-width: 1024px) {
  #single-blog .main .sidebar .sidebar-nav {
    margin-bottom: 20px;
  }
}
#single-blog .main .sidebar .sidebar-nav .categories h3 {
  color: #5399D6;
  letter-spacing: 2px;
  margin: 50px 0 10px;
  font-size: 30px;
}
@media (max-width: 1024px) {
  #single-blog .main .sidebar .sidebar-nav .categories h3 {
    text-align: center;
  }
}
@media (max-width: 1024px) {
  #single-blog .main .sidebar .sidebar-nav .categories ul {
    text-align: center;
    margin-bottom: 30px;
  }
}
#single-blog .main .sidebar .sidebar-nav .categories .cat-item {
  font-size: 20px;
  color: #333652;
  letter-spacing: 2px;
  line-height: 2.5;
}
#single-blog .main .sidebar .sidebar-nav .categories .cat-item a {
  color: #333652;
}
#single-blog .main .sidebar .sidebar-nav .categories .cat-item a:hover {
  color: #5399D6;
}
#single-blog .main .sidebar .services-cta {
  border: 2px solid #5399D6;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  #single-blog .main .sidebar .services-cta {
    text-align: center;
  }
}
#single-blog .main .sidebar .services-cta h3 {
  text-transform: uppercase;
  font-size: 30px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
#single-blog .main .sidebar .services-cta img {
  margin: 0 auto 20px;
  width: 100px;
  display: block;
}
#single-blog .main .content {
  width: 66.6%;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  #single-blog .main .content {
    width: 100%;
  }
}
#single-blog .main .content .meta {
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-weight: 300;
}
#single-blog .main .content h1 {
  margin-bottom: 20px;
  font-size: 36px;
}
#single-blog .main .content .featured-img {
  border-radius: 30px;
  border: none;
  display: block;
  margin-bottom: 30px;
}
#single-blog .main .content .tags a {
  font-weight: 300;
}
#single-blog .main .content a:not(.button) {
  color: #333652;
}
#single-blog .main .content a:not(.button):hover, #single-blog .main .content a:not(.button):active, #single-blog .main .content a:not(.button):focus {
  color: #5399D6;
}
#single-blog .main .content ul, #single-blog .main .content ol {
  padding-left: 20px;
  list-style: disc;
}
#single-blog .main .content li {
  letter-spacing: 0.5px;
  font-size: 20px;
  line-height: 2.1rem;
  color: #333652;
}
#single-blog .main .content h2, #single-blog .main .content h3, #single-blog .main .content h4, #single-blog .main .content p, #single-blog .main .content li {
  margin-bottom: 20px;
}
#single-blog .related {
  margin-bottom: 6rem;
  width: 100%;
}
@media (max-width: 1024px) {
  #single-blog .related {
    margin-bottom: 3rem;
  }
}
#single-blog .related h2 {
  text-align: center;
  margin: 0 auto 50px;
}
@media (max-width: 768px) {
  #single-blog .related h2 {
    margin: 0 auto 30px;
  }
}
#single-blog .related ul {
  display: flex;
  grid-gap: 50px;
}
@media (max-width: 1024px) {
  #single-blog .related ul {
    flex-direction: column;
    grid-gap: 20px;
  }
}
#single-blog .related ul li {
  width: 33.33%;
  position: relative;
}
@media (max-width: 1024px) {
  #single-blog .related ul li {
    width: 100%;
    display: flex;
    grid-gap: 30px;
  }
  #single-blog .related ul li:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media (max-width: 768px) {
  #single-blog .related ul li {
    flex-direction: column;
    grid-gap: 0;
  }
  #single-blog .related ul li:nth-child(even) {
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  #single-blog .related ul li a {
    width: 100%;
  }
}
#single-blog .related ul li a img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1024px) {
  #single-blog .related ul li a img {
    height: 320px;
  }
}
@media (max-width: 768px) {
  #single-blog .related ul li a img {
    height: 280px;
  }
}
@media (max-width: 1024px) {
  #single-blog .related ul li .summary {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #single-blog .related ul li .summary {
    padding: 0;
  }
}
#single-blog .related ul li .summary .title {
  font-size: 24px;
  margin-bottom: 20px;
}
#single-blog .related ul li .summary .meta {
  margin: 20px 0;
  letter-spacing: 1px;
  font-weight: 300;
  font-size: 18px !important;
}
#single-blog .related ul li .summary .readmore {
  position: absolute;
  padding: 8px 20px;
  font-size: 18px;
  top: 200px;
  left: 15px;
}
@media (max-width: 1024px) {
  #single-blog .related ul li .summary .readmore {
    position: relative;
    top: auto;
    left: auto;
  }
}
#single-blog .related .viewall {
  text-align: center;
}
@media (max-width: 768px) {
  #single-blog .related .viewall {
    display: none;
  }
}
#fb-share-button {
  position: fixed;
  bottom: 30%;
  background: #fff;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 260px;
  border-radius: 30px;
  cursor: pointer;
  z-index: 9;
  overflow: hidden;
}
@media (max-width: 1024px) {
  #fb-share-button {
    bottom: 20px;
    height: 50px;
    width: 50px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  #fb-share-button:hover {
    width: 260px;
  }
}
#fb-share-button .fb-ico {
  display: block;
  width: 40px;
  height: 40px;
  padding: 5px;
  background: #5399D6;
  border-radius: 100%;
  margin: 10px 5px;
}
@media (max-width: 1024px) {
  #fb-share-button .fb-ico {
    margin: 5px 5px;
  }
}
#fb-share-button .fb-ico svg {
  width: 30px;
  fill: #fff;
}
#fb-share-button .fb-txt {
  transform: rotate(-90deg);
  display: block;
  position: absolute;
  left: -65px;
  top: calc(30% + 60px);
  letter-spacing: 2px;
  color: #5399D6;
  font-family: "Poppins", sans-serif;
  width: 180px;
}
@media (max-width: 1024px) {
  #fb-share-button .fb-txt {
    transform: rotate(0deg);
    left: 65px;
    top: 15px;
  }
}
#contact-us #contact-hero {
  background-color: #5399D6;
  padding: 50px 0;
  position: relative;
  margin-bottom: 2.5rem;
}
@media (max-width: 500px) {
  #contact-us #contact-hero {
    padding: 25px 0 50px;
  }
}
#contact-us #contact-hero .container {
  justify-content: space-between;
}
#contact-us #contact-hero .container .image {
  width: 40%;
}
@media (max-width: 768px) {
  #contact-us #contact-hero .container .image {
    margin-bottom: 30px;
  }
}
#contact-us #contact-hero .container .image img {
  border-width: 5px;
}
#contact-us #contact-hero .container .content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: wrap;
  width: 53%;
  padding: 1rem 0;
}
@media (max-width: 1200px) {
  #contact-us #contact-hero .container .content {
    padding: 0;
  }
}
#contact-us #contact-hero .container .content h2 {
  color: #f1f1f1;
}
#contact-us #contact-hero .container .content p {
  color: #f1f1f1;
  font-size: 21px !important;
  line-height: 2rem;
}
@media (max-width: 1200px) {
  #contact-us #contact-hero .container .content p {
    margin: 30px 0;
  }
}
#contact-us #content {
  scroll-margin-top: 60px;
  margin: 2.5rem 0;
  padding: 50px 0;
}
@media (max-width: 500px) {
  #contact-us #content {
    padding: 25px 0 0;
    scroll-margin-top: 120px;
  }
}
#contact-us #content > .container {
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 5rem;
}
@media (max-width: 768px) {
  #contact-us #content > .container {
    margin-top: 3rem;
  }
}
@media (max-width: 500px) {
  #contact-us #content > .container {
    margin-top: 0;
  }
}
#contact-us #content > .container #contact-form {
  width: 53%;
  background-color: transparent;
  margin: 0;
  padding: 0;
}
#contact-us #content > .container #contact-form input:not([type=submit]), #contact-us #content > .container #contact-form textarea {
  background-color: #E0F0FF;
}
@media (max-width: 500px) {
  #contact-us #content > .container #contact-form #main-contact-form {
    margin-bottom: 30px;
  }
}
#contact-us #content > .container #contact-form #main-contact-form textarea {
  height: 300px;
}
#contact-us #content > .container #contact-form .container {
  width: 100%;
  max-width: 100%;
}
#contact-us #content > .container #contact-form .container .contact-form-container {
  width: 100%;
}
#contact-us #content > .container #contact-details {
  width: 39%;
}
#contact-us #content > .container #contact-details .detail {
  margin-bottom: 30px;
}
#contact-us #content > .container #contact-details .detail:last-child {
  margin-bottom: 0;
}
#contact-us #content > .container #contact-details .detail h3 {
  margin-bottom: 0.5rem;
  color: #5399D6;
  font-size: 26px;
  letter-spacing: 1px;
}
#contact-us #content > .container #contact-details .detail ul li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
#contact-us #content > .container #contact-details .detail ul li:last-child {
  margin-bottom: 0;
}
#contact-us #content > .container #contact-details .detail ul li img {
  margin-right: 15px;
}
#contact-us #content > .container #contact-details .detail a {
  font-family: "Lato", sans-serif;
  color: #333652;
  font-weight: lighter;
  font-size: 21px;
  transition: all 0.3s;
}
@media (max-width: 360px) {
  #contact-us #content > .container #contact-details .detail a {
    font-size: 16px;
  }
}
#contact-us #content > .container #contact-details .detail a:hover {
  color: #5399D6;
}
#contact-us #content > .container #contact-details .detail p {
  line-height: 1.6rem !important;
  font-size: 21px !important;
  color: #333652;
  font-weight: 300;
}
.page-template-page-contact #dark-header > img {
  display: none;
}
#gallery #hero {
  padding: 150px 0 40px;
}
@media (max-width: 1024px) {
  #gallery #hero {
    padding: 100px 0 40px;
  }
}
@media (max-width: 768px) {
  #gallery #hero {
    padding: 75px 0 40px;
  }
}
@media (max-width: 500px) {
  #gallery #hero {
    padding: 50px 0 40px;
  }
}
#gallery #hero .container {
  justify-content: center;
}
#gallery #hero .container h1 {
  margin: 0 auto 3rem 0;
}
@media (max-width: 500px) {
  #gallery #hero .container h1 {
    margin: 0 auto 2rem;
  }
}
@media (max-width: 1024px) {
  #gallery #hero .container h1 {
    text-align: center;
    width: fit-content !important;
  }
}
#gallery #hero .container .gallery-description {
  margin-bottom: 3rem;
}
#gallery #hero .container .gallery-description p {
  font-size: 21px !important;
  color: #333652;
  line-height: 2rem;
  font-weight: 100;
}
#gallery #hero .container .gallery-single {
  width: 100%;
  max-height: 700px;
}
#gallery #testimonials {
  background-color: #5399D6;
  margin-top: 0;
  padding: 50px 0;
  position: relative;
}
#gallery #testimonials h2, #gallery #testimonials p, #gallery #testimonials .prev, #gallery #testimonials .next {
  color: #f1f1f1;
}
@media (max-width: 500px) {
  #gallery #testimonials {
    padding: 25px 0;
  }
}
#gallery #testimonials .container .testimonial {
  margin-bottom: 0;
}
#gallery #testimonials .container .testimonial .content {
  color: #eee;
}
#gallery #testimonials .container .testimonial .author {
  letter-spacing: 1px;
}
#gallery #testimonials .container h2 {
  font-size: 32px;
}
#gallery #contact-form {
  background-color: transparent;
}
@media (max-width: 768px) {
  #gallery #contact-form {
    padding: 25px 0;
  }
}
@media (max-width: 400px) {
  #gallery #contact-form {
    padding: 0;
  }
}
#gallery #contact-form input:not([type=submit]), #gallery #contact-form textarea {
  background-color: #E0F0FF;
}
#gallery #contact-form #main-contact-form textarea {
  height: 300px;
}
#gallery #contact-form .container .contact-form-container form input[type=submit] {
  margin-bottom: 0;
}
#gallery #gallery-top {
  padding: 0 0 40px;
}
#gallery #gallery-top .container {
  justify-content: space-between;
  align-items: stretch;
}
#gallery #gallery-top .container .gallery-single {
  width: 31%;
  max-height: 250px;
}
@media (max-width: 768px) {
  #gallery #gallery-top .container .gallery-single {
    width: 31% !important;
  }
}
@media (max-width: 500px) {
  #gallery #gallery-top .container .gallery-single {
    width: 100% !important;
    margin-bottom: 30px;
  }
  #gallery #gallery-top .container .gallery-single:last-child {
    margin-bottom: 0;
  }
}
#gallery #gallery-bottom {
  padding: 0 0 100px;
}
@media (max-width: 768px) {
  #gallery #gallery-bottom {
    padding: 0 0 75px;
  }
}
@media (max-width: 500px) {
  #gallery #gallery-bottom {
    padding: 0 0 50px;
  }
}
#gallery #gallery-bottom .container {
  justify-content: space-between;
}
#gallery #gallery-bottom .container .left {
  width: 41%;
  min-height: 520px;
  max-height: 600px;
}
#gallery #gallery-bottom .container .left .gallery-single {
  height: 100%;
}
@media (max-width: 900px) {
  #gallery #gallery-bottom .container .left {
    min-height: 400px;
  }
}
#gallery #gallery-bottom .container .right {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 56%;
  align-items: stretch;
  max-height: 600px;
}
@media (max-width: 400px) {
  #gallery #gallery-bottom .container .right {
    max-height: fit-content;
  }
}
@media (max-width: 768px) {
  #gallery #gallery-bottom .container .right {
    padding-top: 30px;
  }
}
#gallery #gallery-bottom .container .right .gallery-single {
  width: 47.5%;
  height: 45%;
  margin-bottom: 9%;
}
@media (max-width: 1024px) {
  #gallery #gallery-bottom .container .right .gallery-single {
    margin-bottom: 11%;
  }
}
@media (max-width: 768px) {
  #gallery #gallery-bottom .container .right .gallery-single {
    margin-bottom: 30px;
  }
  #gallery #gallery-bottom .container .right .gallery-single:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 400px) {
  #gallery #gallery-bottom .container .right .gallery-single {
    width: 100%;
    margin-bottom: 30px !important;
    height: 250px;
  }
  #gallery #gallery-bottom .container .right .gallery-single:last-child {
    margin-bottom: 0 !important;
  }
}
#gallery #gallery-bottom .container .right .gallery-single:nth-child(3), #gallery #gallery-bottom .container .right .gallery-single:nth-child(4) {
  margin-bottom: 0;
}
#gallery .gallery-single img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
#gallery .gallery-single a {
  width: 100%;
  height: 100%;
}
#single-gallery #hero {
  padding: 125px 0 0;
  margin: 2.5rem 0;
}
@media (max-width: 1024px) {
  #single-gallery #hero {
    padding: 75px 0 0;
  }
}
@media (max-width: 768px) {
  #single-gallery #hero {
    padding: 25px 0 0;
  }
}
@media (max-width: 400px) {
  #single-gallery #hero {
    padding: 0;
  }
}
#single-gallery #hero .container {
  justify-content: space-between;
  position: relative;
}
#single-gallery #hero .container .description {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  width: 44%;
}
@media (max-width: 768px) {
  #single-gallery #hero .container .description {
    padding: 3rem 0 1.5rem;
  }
}
#single-gallery #hero .container .description .showcase-description {
  margin: 2.5rem 0;
  font-size: 18px !important;
  line-height: 1.8rem;
  color: #333652;
}
@media (max-width: 768px) {
  #single-gallery #hero .container .description .showcase-description {
    margin: 1rem 0 2rem;
  }
}
#single-gallery #hero .container .description a {
  font-size: 23px;
}
@media (max-width: 920px) {
  #single-gallery #hero .container .description a {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  #single-gallery #hero .container .description a {
    font-size: 23px;
  }
}
@media (max-width: 450px) {
  #single-gallery #hero .container .description a {
    font-size: 17px;
    padding: 10px 20px;
  }
}
#single-gallery #hero .container .image {
  width: 52%;
}
@media (max-width: 768px) {
  #single-gallery #hero .container .image {
    min-height: 300px;
    max-height: 500px;
  }
}
#single-gallery #hero .container .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#single-gallery #hero .container .back {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Poppins", sans-serif;
  color: #5399D6;
  text-decoration: underline;
  padding: 0;
  display: flex;
  align-items: center;
  font-size: 18px;
  letter-spacing: 1px;
}
#single-gallery #hero .container .back img {
  margin-right: 10px;
  width: 30px;
}
#single-gallery #showcase-top {
  padding-bottom: 50px;
}
#single-gallery #showcase-top .container {
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 768px) {
  #single-gallery #showcase-top .container .before {
    margin: 2.5rem 0;
    margin-top: 0;
  }
}
#single-gallery #showcase-top .container .before, #single-gallery #showcase-top .container .after {
  width: 48%;
  position: relative;
  min-height: 600px;
}
#single-gallery #showcase-top .container .before img, #single-gallery #showcase-top .container .after img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
#single-gallery #showcase-top .container .overlay-text {
  font-size: 35px;
  font-weight: bold;
  letter-spacing: 2px;
}
@media (max-width: 600px) {
  #single-gallery #showcase-top .container .overlay-text {
    font-size: 25px;
  }
}
#single-gallery #showcase-bottom {
  padding-bottom: 125px;
}
@media (max-width: 768px) {
  #single-gallery #showcase-bottom {
    padding-bottom: 75px;
  }
}
#single-gallery #showcase-bottom .container .bottom {
  width: 100%;
  position: relative;
  max-height: 500px;
}
#single-gallery #showcase-bottom .container .bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#single-gallery #showcase-bottom .overlay-text {
  max-width: 40%;
  font-size: 20px;
  padding-left: 4rem;
}
@media (max-width: 768px) {
  #single-gallery #showcase-bottom .overlay-text {
    max-width: 70%;
    max-height: 85%;
  }
}
@media (max-width: 600px) {
  #single-gallery #showcase-bottom .overlay-text {
    font-size: 17px;
    padding: 1rem;
  }
}
@media (max-width: 400px) {
  #single-gallery #showcase-bottom .overlay-text {
    font-size: 15px;
    padding: 1rem;
  }
}
#single-gallery .overlay-text {
  position: absolute;
  right: 0;
  padding: 2rem 3rem 2rem 2rem;
  background-color: #87b8e2;
  bottom: 50px;
  text-align: right;
  color: #333652;
}
#single-gallery .divider {
  width: 100%;
  height: 100px;
}
#homepage.stairs-page #hero {
  background-color: #E0F0FF;
  position: relative;
  margin-bottom: 120px;
  padding: 25px 0 75px 0;
}
@media (max-width: 1024px) {
  #homepage.stairs-page #hero {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  #homepage.stairs-page #hero {
    padding: 25px 0;
  }
}
#homepage.stairs-page #hero .container {
  justify-content: space-between;
  display: flex;
}
#homepage.stairs-page #hero .container .content {
  padding: 25px 0;
  width: 48%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
}
#homepage.stairs-page #hero .container .content h1 {
  display: block;
  width: fit-content;
  font-size: 37px;
}
@media (max-width: 1200px) {
  #homepage.stairs-page #hero .container .content h1 {
    font-size: 32px;
  }
}
#homepage.stairs-page #hero .container .content .mobile-hero-video {
  display: none;
}
#homepage.stairs-page #hero .container .content .mobile-hero-video video {
  width: 100%;
}
@media (max-width: 1024px) {
  #homepage.stairs-page #hero .container .content .mobile-hero-video {
    display: inline-block;
    margin-bottom: 30px;
  }
}
#homepage.stairs-page #hero .container .content .hero-text p {
  color: #333652;
  font-size: 21px !important;
  font-weight: 300;
}
@media (max-width: 1200px) {
  #homepage.stairs-page #hero .container .content .hero-text {
    margin: 1rem 0;
  }
}
@media (max-width: 1024px) {
  #homepage.stairs-page #hero .container .content .hero-text {
    margin: 0;
  }
}
@media (max-width: 1024px) {
  #homepage.stairs-page #hero .container .content {
    padding: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  #homepage.stairs-page #hero .container .content {
    margin-bottom: 30px;
  }
}
#homepage.stairs-page #hero .container .content .links {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
#homepage.stairs-page #hero .container .content .links .logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 350px) {
  #homepage.stairs-page #hero .container .content .links .logos {
    flex-wrap: wrap;
  }
  #homepage.stairs-page #hero .container .content .links .logos .logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px !important;
  }
  #homepage.stairs-page #hero .container .content .links .logos .logo:last-child {
    margin-bottom: 0 !important;
  }
}
#homepage.stairs-page #hero .container .content .links .logos .logo {
  line-height: 0;
}
#homepage.stairs-page #hero .container .content .links .logos .logo img {
  max-width: 150px;
  max-height: 75px;
}
@media (max-width: 500px) {
  #homepage.stairs-page #hero .container .content .links .logos .logo img {
    max-width: 100px;
    max-height: 60px;
  }
}
@media (max-width: 350px) {
  #homepage.stairs-page #hero .container .content .links .logos .logo img {
    max-width: 150px;
    max-height: 75px;
    margin-bottom: 20px;
  }
  #homepage.stairs-page #hero .container .content .links .logos .logo img:last-child {
    margin-bottom: 0;
  }
}
#homepage.stairs-page #hero .container .content .links .logos .logo.trustatrade {
  margin-bottom: -10px;
}
#homepage.stairs-page #hero .container .content .links .logos .logo.checkatrade {
  margin-bottom: -6px;
}
#homepage.stairs-page #hero .container .content .links .button {
  width: max-content;
  padding: 13px 30px;
  font-size: 22px;
}
@media (max-width: 550px) {
  #homepage.stairs-page #hero .container .content .links .button {
    width: 100%;
  }
}
#homepage.stairs-page #hero .container .content .heading {
  margin-bottom: 2rem;
}
#homepage.stairs-page #hero .container .hero-video {
  margin-top: -17px;
  width: 45%;
  display: flex;
  align-items: center;
}
#homepage.stairs-page #hero .container .hero-video video {
  width: 100%;
  max-height: 333px;
}
@media (max-width: 1024px) {
  #homepage.stairs-page #hero .container .hero-video {
    display: none;
  }
}
#homepage.stairs-page #hero .wave {
  right: 0;
  left: 0;
  top: 100%;
  position: absolute;
  display: block;
}
#homepage.stairs-page #why-choose-us {
  padding: 75px 0;
}
#homepage.stairs-page #why-choose-us h2 {
  margin-bottom: 2rem;
  letter-spacing: 5px;
}
@media (max-width: 1024px) {
  #homepage.stairs-page #why-choose-us {
    padding: 25px 0;
  }
}
@media (max-width: 500px) {
  #homepage.stairs-page #why-choose-us {
    padding: 0 0 25px;
  }
}
@media (max-width: 1024px) {
  #homepage.stairs-page .cta .container a {
    width: fit-content;
  }
}
#homepage.stairs-page #testimonials > img {
  display: none;
}
@media (max-width: 1024px) {
  #homepage.stairs-page #testimonials {
    padding: 25px 0 50px;
  }
}
@media (max-width: 768px) {
  #homepage.stairs-page #testimonials {
    padding: 0 0 25px !important;
  }
}
@media (max-width: 500px) {
  #homepage.stairs-page #testimonials {
    padding: 0 !important;
  }
}
#homepage.stairs-page #testimonials .container .testimonial .content {
  color: #333652;
}
#homepage.stairs-page #services {
  margin: 2.5rem 0;
  background: #E0F0FF;
  position: relative;
}
#homepage.stairs-page #services .services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#homepage.stairs-page #services .services .service {
  width: 45%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0;
}
@media (max-width: 500px) {
  #homepage.stairs-page #services .services .service {
    width: 100%;
    flex-direction: column;
    margin: 1rem 0;
  }
}
#homepage.stairs-page #services .services .service .divider {
  height: 100%;
  width: 5px;
  background-color: var(--accent-color);
}
@media (max-width: 500px) {
  #homepage.stairs-page #services .services .service .divider {
    width: 100%;
    height: 5px;
    margin: 1rem 0;
  }
}
#homepage.stairs-page #services .services .service img {
  width: 20%;
  height: auto;
}
@media (max-width: 500px) {
  #homepage.stairs-page #services .services .service img {
    width: 30%;
  }
}
#homepage.stairs-page #services .services .service .content {
  width: 65%;
  padding-bottom: 20px;
}
@media (max-width: 500px) {
  #homepage.stairs-page #services .services .service .content {
    width: 90%;
    text-align: center;
  }
}
#homepage.stairs-page #services .services .service .content h4 {
  color: #5399D6;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
#homepage.stairs-page #services .services .service .content p {
  line-height: 1.6rem;
}
#homepage.stairs-page #services .services .service:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 500px) {
  #homepage.stairs-page #services .services .service:nth-child(even) {
    flex-direction: column;
  }
}
#homepage.stairs-page #services .services .service:nth-child(even) .content {
  text-align: right;
}
@media (max-width: 500px) {
  #homepage.stairs-page #services .services .service:nth-child(even) .content {
    text-align: center;
  }
}
#homepage.stairs-page #contact-form .container .contact-form-container form input[type=submit], #homepage.stairs-page #contact-form .container .contact-form-container form .submit-row {
  margin-bottom: 0;
}
#homepage.stairs-page #video {
  margin: 2.5rem 0;
  padding: 150px 0;
}
@media (max-width: 1024px) {
  #homepage.stairs-page #video {
    padding: 50px 0;
  }
}
@media (max-width: 500px) {
  #homepage.stairs-page #video {
    padding: 25px 0;
  }
}
#homepage.stairs-page #video .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#homepage.stairs-page #video .container .content {
  width: 50%;
}
@media (max-width: 768px) {
  #homepage.stairs-page #video .container .content {
    margin-bottom: 30px;
  }
}
#homepage.stairs-page #video .container .content h2 {
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  #homepage.stairs-page #video .container .content h2 {
    margin-bottom: 2rem;
  }
}
#homepage.stairs-page #video .container .content p {
  line-height: 1.6rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  #homepage.stairs-page #video .container .content p {
    font-size: 19px;
    line-height: 1.8rem;
  }
}
#homepage.stairs-page #video .container video {
  width: 40%;
}
#homepage.stairs-page #homepage-gallery {
  margin: 2.5rem 0;
  padding: 100px 0;
}
@media (max-width: 600px) {
  #homepage.stairs-page #homepage-gallery {
    padding: 50px 0;
  }
}
@media (max-width: 1024px) {
  #homepage.stairs-page #homepage-gallery {
    padding: 50px 0;
  }
}
@media (max-width: 500px) {
  #homepage.stairs-page #homepage-gallery {
    padding: 25px 0;
  }
}
#homepage.stairs-page #homepage-gallery .container .images {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#homepage.stairs-page #homepage-gallery .container .images img {
  width: 32%;
  user-select: none;
  max-height: 400px;
  object-fit: cover;
}
#homepage.stairs-page #homepage-gallery .container .images img:hover {
  cursor: pointer;
}
@media (max-width: 900px) {
  #homepage.stairs-page #homepage-gallery .container .images img:first-child {
    max-height: 500px;
    object-fit: cover;
  }
}
@media (max-width: 768px) {
  #homepage.stairs-page #homepage-gallery .container .images img {
    width: 48%;
    max-height: 200px;
    margin-bottom: 30px;
    align-items: self-start;
  }
  #homepage.stairs-page #homepage-gallery .container .images img:first-child {
    width: 100%;
    max-height: initial;
  }
}
#homepage.stairs-page #homepage-gallery .container .gallery-bottom {
  width: 80%;
  margin: 50px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  #homepage.stairs-page #homepage-gallery .container .gallery-bottom {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 1200px) {
  #homepage.stairs-page #homepage-gallery .container .gallery-bottom {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #homepage.stairs-page #homepage-gallery .container .gallery-bottom {
    margin-top: 0;
  }
}
#homepage.stairs-page #homepage-gallery .container .gallery-bottom a {
  width: fit-content;
  font-size: 23px;
  letter-spacing: 4px;
}
@media (max-width: 500px) {
  #homepage.stairs-page #homepage-gallery .container .gallery-bottom a {
    width: 100%;
  }
}
#homepage.stairs-page #homepage-gallery .container .gallery-bottom p {
  line-height: 1.6rem;
  width: 68%;
}
@media (max-width: 1024px) {
  #homepage.stairs-page #homepage-gallery .container .gallery-bottom p {
    width: 100%;
    margin-bottom: 30px;
  }
}
#homepage.stairs-page #homepage-gallery .container .lightbox-container {
  padding: 3rem;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(83, 153, 214, 0.8);
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  transition: all 0.3s;
}
#homepage.stairs-page #homepage-gallery .container .lightbox-container.hidden {
  opacity: 0;
  pointer-events: none;
}
#homepage.stairs-page #homepage-gallery .container .lightbox-container .close {
  position: fixed;
  top: 20px;
  right: 30px;
  color: #f1f1f1;
  font-size: 50px;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#homepage.stairs-page #homepage-gallery .container .lightbox-container .close:hover {
  cursor: pointer;
}
#homepage.stairs-page #homepage-gallery .container .lightbox-container .lightbox {
  width: 90%;
  height: 90%;
  justify-content: center;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  #homepage.stairs-page #homepage-gallery .container .lightbox-container .lightbox {
    width: 100%;
    height: 100%;
  }
}
#homepage.stairs-page #homepage-gallery .container .lightbox-container .lightbox img {
  max-height: 100%;
  display: none;
  max-width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
#homepage.stairs-page #hero .container .content .mobile-hero-image {
  display: none;
}
#homepage.stairs-page #hero .container .content .mobile-hero-image video {
  width: 100%;
}
@media (max-width: 1024px) {
  #homepage.stairs-page #hero .container .content .mobile-hero-image {
    display: inline-block;
    margin-bottom: 30px;
  }
}
#homepage.stairs-page #hero .container .hero-image {
  width: 45%;
  display: flex;
  align-items: center;
}
#homepage.stairs-page #hero .container .hero-image img {
  width: 100%;
}
@media (max-width: 1024px) {
  #homepage.stairs-page #hero .container .hero-image {
    display: none;
  }
}
#homepage.stairs-page #hero .wave {
  right: 0;
  left: 0;
  top: 100%;
  position: absolute;
  display: block;
}
@media (max-width: 500px) {
  #homepage.stairs-page #hero {
    margin-bottom: 50px;
  }
}
#homepage.stairs-page #testimonials {
  background-color: #5399D6;
  margin-top: 0;
  padding: 50px 0;
  position: relative;
}
@media (max-width: 768px) {
  #homepage.stairs-page #testimonials {
    padding: 25px 0 !important;
  }
}
@media (max-width: 500px) {
  #homepage.stairs-page #testimonials {
    padding: 25px 0 !important;
  }
}
#homepage.stairs-page #testimonials > img {
  display: block;
}
#homepage.stairs-page #testimonials h2, #homepage.stairs-page #testimonials p, #homepage.stairs-page #testimonials .prev, #homepage.stairs-page #testimonials .next {
  color: #f1f1f1;
}
@media (max-width: 500px) {
  #homepage.stairs-page #testimonials {
    padding: 25px 0;
  }
}
#homepage.stairs-page #testimonials .container .testimonial {
  margin-bottom: 0;
}
#homepage.stairs-page #testimonials .container .testimonial .content {
  color: #eee;
}
#homepage.stairs-page #testimonials .container .testimonial .author {
  letter-spacing: 1px;
}
#homepage.stairs-page #testimonials .container h2 {
  font-size: 32px;
}
#homepage.stairs-page #stairs-gallery {
  margin: 2.5rem 0;
  padding: 100px 0 0 0;
}
@media (max-width: 768px) {
  #homepage.stairs-page #stairs-gallery {
    padding: 25px 0 0 0;
  }
}
@media (max-width: 1024px) {
  #homepage.stairs-page #stairs-gallery {
    padding: 50px 0 0 0;
  }
}
@media (max-width: 500px) {
  #homepage.stairs-page #stairs-gallery {
    padding: 25px 0 0 0;
  }
}
#homepage.stairs-page #stairs-gallery .container .images {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#homepage.stairs-page #stairs-gallery .container .images img {
  width: 32%;
  user-select: none;
  max-height: 400px;
  object-fit: cover;
}
#homepage.stairs-page #stairs-gallery .container .images img:hover {
  cursor: pointer;
}
@media (max-width: 900px) {
  #homepage.stairs-page #stairs-gallery .container .images img:first-child {
    max-height: 500px;
    object-fit: cover;
  }
}
@media (max-width: 768px) {
  #homepage.stairs-page #stairs-gallery .container .images img {
    width: 48%;
    max-height: 200px;
    margin-bottom: 30px;
    align-items: self-start;
  }
  #homepage.stairs-page #stairs-gallery .container .images img:first-child {
    width: 100%;
    max-height: initial;
  }
}
#homepage.stairs-page #stairs-gallery .container .gallery-bottom {
  width: 80%;
  margin: 50px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  #homepage.stairs-page #stairs-gallery .container .gallery-bottom {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 1200px) {
  #homepage.stairs-page #stairs-gallery .container .gallery-bottom {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #homepage.stairs-page #stairs-gallery .container .gallery-bottom {
    margin-top: 0;
  }
}
#homepage.stairs-page #stairs-gallery .container .gallery-bottom a {
  width: fit-content;
  font-size: 23px;
  letter-spacing: 4px;
}
@media (max-width: 500px) {
  #homepage.stairs-page #stairs-gallery .container .gallery-bottom a {
    width: 100%;
  }
}
#homepage.stairs-page #stairs-gallery .container .gallery-bottom p {
  line-height: 1.6rem;
  width: 68%;
}
@media (max-width: 1024px) {
  #homepage.stairs-page #stairs-gallery .container .gallery-bottom p {
    width: 100%;
    margin-bottom: 30px;
  }
}
#homepage.stairs-page #stairs-gallery .container .lightbox-container {
  padding: 3rem;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(83, 153, 214, 0.8);
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  transition: all 0.3s;
}
#homepage.stairs-page #stairs-gallery .container .lightbox-container.hidden {
  opacity: 0;
  pointer-events: none;
}
#homepage.stairs-page #stairs-gallery .container .lightbox-container .close {
  position: fixed;
  top: 20px;
  right: 30px;
  color: #f1f1f1;
  font-size: 50px;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#homepage.stairs-page #stairs-gallery .container .lightbox-container .close:hover {
  cursor: pointer;
}
#homepage.stairs-page #stairs-gallery .container .lightbox-container .lightbox {
  width: 90%;
  height: 90%;
  justify-content: center;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  #homepage.stairs-page #stairs-gallery .container .lightbox-container .lightbox {
    width: 100%;
    height: 100%;
  }
}
#homepage.stairs-page #stairs-gallery .container .lightbox-container .lightbox img {
  max-height: 100%;
  display: none;
  max-width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
#homepage.stairs-page #why-choose-us {
  padding: 75px 0 100px;
}
@media (max-width: 1024px) {
  #homepage.stairs-page #why-choose-us {
    padding: 50px 0;
  }
}
@media (max-width: 768px) {
  #homepage.stairs-page #why-choose-us {
    padding: 25px 0;
  }
}
@media (max-width: 500px) {
  #homepage.stairs-page #why-choose-us {
    padding: 0;
  }
}
#homepage.stairs-page #services {
  background-color: transparent;
  padding: 50px 0 25px;
}
@media (max-width: 1024px) {
  #homepage.stairs-page #services {
    padding: 25px 0 0;
  }
}
@media (max-width: 768px) {
  #homepage.stairs-page #services {
    margin-bottom: 0 !important;
    padding: 0 0 25px !important;
  }
}
#homepage.stairs-page #faq {
  padding: 0 0 50px 0;
}
@media (max-width: 900px) {
  #homepage.stairs-page #faq {
    padding: 50px 0;
  }
}
@media (max-width: 500px) {
  #homepage.stairs-page #faq {
    padding: 25px 0 0 0;
  }
}
#homepage.stairs-page #faq h2 .heading {
  margin: 50px auto 3rem auto;
}
#homepage.stairs-page #video {
  margin: 2.5rem 0;
  padding: 75px 0 100px;
}
@media (max-width: 1024px) {
  #homepage.stairs-page #video {
    padding: 25px 0 100px;
  }
}
@media (max-width: 768px) {
  #homepage.stairs-page #video {
    padding: 0 0 25px;
  }
}
#homepage.stairs-page #video .container .image {
  width: 40%;
}
#homepage.stairs-page #video .container .image img {
  width: 100%;
}
@media (max-width: 768px) {
  #homepage.stairs-page .cta {
    margin: 0 !important;
  }
}
#faq #content .heading, #home-faqs #content .heading {
  margin: 150px auto 3rem 0;
}
@media (max-width: 1024px) {
  #faq #content .heading, #home-faqs #content .heading {
    margin: 100px auto 50px 0;
  }
}
#faq .faqs, #home-faqs .faqs {
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  #faq .faqs, #home-faqs .faqs {
    margin-bottom: 50px;
  }
}
#faq .faqs .faq, #home-faqs .faqs .faq {
  margin: 0 0 30px;
  padding-left: 30px;
  position: relative;
}
#faq .faqs .faq:before, #home-faqs .faqs .faq:before {
  content: "?";
  background: #5399d5;
  border-radius: 100%;
  height: 20px;
  width: 20px;
  display: flex;
  position: absolute;
  left: 0;
  top: 2px;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  color: #fff;
}
#faq .faqs .faq .question, #home-faqs .faqs .faq .question {
  margin-bottom: 20px;
}
#faq .faqs .faq .answer p, #home-faqs .faqs .faq .answer p {
  margin-bottom: 10px;
  font-weight: 300;
}
#faq .faqs a, #home-faqs .faqs a {
  color: #333652;
}
#faq .faqs a:hover, #home-faqs .faqs a:hover {
  color: #5399D6;
}
#faq #footer-area .content, #home-faqs #footer-area .content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}
@media (max-width: 1024px) {
  #faq #footer-area .content, #home-faqs #footer-area .content {
    width: 100%;
    padding: 0;
  }
}
#faq #footer-area .content p, #home-faqs #footer-area .content p {
  font-weight: 300;
}
#faq #footer-area .content .logos, #home-faqs #footer-area .content .logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 350px) {
  #faq #footer-area .content .logos, #home-faqs #footer-area .content .logos {
    flex-wrap: wrap;
  }
  #faq #footer-area .content .logos .logo, #home-faqs #footer-area .content .logos .logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px !important;
  }
  #faq #footer-area .content .logos .logo:last-child, #home-faqs #footer-area .content .logos .logo:last-child {
    margin-bottom: 0 !important;
  }
}
#faq #footer-area .content .logos .logo, #home-faqs #footer-area .content .logos .logo {
  line-height: 0;
}
#faq #footer-area .content .logos .logo img, #home-faqs #footer-area .content .logos .logo img {
  max-width: 150px;
  max-height: 75px;
}
@media (max-width: 500px) {
  #faq #footer-area .content .logos .logo img, #home-faqs #footer-area .content .logos .logo img {
    max-width: 100px;
    max-height: 60px;
  }
}
@media (max-width: 350px) {
  #faq #footer-area .content .logos .logo img, #home-faqs #footer-area .content .logos .logo img {
    max-width: 150px;
    max-height: 75px;
    margin-bottom: 20px;
  }
  #faq #footer-area .content .logos .logo img:last-child, #home-faqs #footer-area .content .logos .logo img:last-child {
    margin-bottom: 0;
  }
}
#faq #footer-area .content .logos .logo.trustatrade, #home-faqs #footer-area .content .logos .logo.trustatrade {
  margin-bottom: -10px;
}
#faq #footer-area .content .logos .logo.checkatrade, #home-faqs #footer-area .content .logos .logo.checkatrade {
  margin-bottom: -6px;
}
#faq #footer-area #contact-form, #home-faqs #footer-area #contact-form {
  padding: 50px 0 100px;
  margin: 2rem 0;
}
@media (max-width: 1024px) {
  #faq #footer-area #contact-form, #home-faqs #footer-area #contact-form {
    margin: 0;
  }
}
@media (max-width: 1024px) {
  #faq #footer-area #contact-form .container, #home-faqs #footer-area #contact-form .container {
    flex-direction: column-reverse;
  }
}
#faq #footer-area #contact-form .container .contact-form-container, #home-faqs #footer-area #contact-form .container .contact-form-container {
  width: 50%;
}
@media (max-width: 1024px) {
  #faq #footer-area #contact-form .container .contact-form-container, #home-faqs #footer-area #contact-form .container .contact-form-container {
    width: 100%;
    margin-top: 30px;
  }
}
#faq #footer-area #contact-form .container .contact-form-container input[type=submit], #faq #footer-area #contact-form .container .contact-form-container .submit-row, #home-faqs #footer-area #contact-form .container .contact-form-container input[type=submit], #home-faqs #footer-area #contact-form .container .contact-form-container .submit-row {
  margin-bottom: 0;
}
#faq #footer-area #contact-form .container .contact-form-container .heading, #home-faqs #footer-area #contact-form .container .contact-form-container .heading {
  margin-top: 0;
}
#team-members section {
  position: relative;
}
#team-members .intro {
  margin-bottom: 20px;
}
#team-members #hero {
  padding: 100px 0;
}
@media (max-width: 1024px) {
  #team-members #hero {
    padding: 50px 0 0;
  }
}
@media (max-width: 768px) {
  #team-members #hero {
    padding: 50px 0;
  }
}
#team-members #hero .hero-video {
  width: 50%;
  text-align: center;
  margin-top: 100px;
}
#team-members #hero .intro-container {
  width: 50%;
}
#team-members #hero > .container {
  display: flex;
}
#team-members .hero-logos {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin: 30px 50px 0 50px;
}
@media (max-width: 1580px) {
  #team-members .hero-logos {
    margin: 30px 0 0 0;
  }
}
@media (max-width: 1024px) {
  #team-members .hero-logos {
    margin: 30px auto 0 auto;
  }
}
#team-members .hero-logos .logos {
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: 100%;
  margin-bottom: 30px;
  gap: 30px;
}
@media (max-width: 1024px) {
  #team-members .hero-logos .logos {
    width: 100%;
    max-width: 450px;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  #team-members .hero-logos .logos .logo {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #team-members .hero-logos .logos .logo:last-child {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 512px) {
  #team-members .hero-logos .logos {
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 0;
  }
}
#team-members .hero-logos .logos .logo {
  line-height: 1.2;
}
#team-members .hero-logos .logos .logo img {
  max-width: 130px;
  max-height: 35px;
  width: auto;
}
@media (max-width: 512px) {
  #team-members .hero-logos .logos .logo img {
    max-width: 100px;
    max-height: none;
  }
}
@media (max-width: 350px) {
  #team-members .hero-logos .logos .logo img {
    margin-bottom: 0;
  }
  #team-members .hero-logos .logos .logo img:last-child {
    margin-bottom: 0;
  }
}
#team-members .hero-logos .logos .logo.checkatrade img {
  margin-bottom: 4px;
}
#team-members .hero-logos .logos .logo.google-reviews img {
  max-height: 40px;
}
@media (max-width: 600px) {
  #team-members .hero-logos .logos .logo.google-reviews img {
    max-height: none;
  }
}
#team-members .hero-logos .logos .logo span {
  display: block;
  font-size: 0.8em;
  color: #333652;
}
@media (max-width: 1024px) {
  #team-members .hero-logos {
    width: 100%;
  }
}
#team-members #content {
  background: #E0F0FF;
  padding-bottom: 50px;
}
#team-members #content p {
  margin-bottom: 20px;
}
#team-members .heading {
  margin: 100px auto 3rem 0;
}
@media (max-width: 1024px) {
  #team-members .heading {
    margin: 50px auto 50px 0;
  }
}
#team-members .team-members {
  margin: 50px 0;
  display: flex;
  text-align: center;
  grid-gap: 50px;
  width: 100%;
}
@media (max-width: 768px) {
  #team-members .team-members {
    margin: 30px 0;
    flex-direction: column;
  }
}
#team-members .team-members .team-member {
  padding: 30px;
  position: relative;
  margin: 0 auto;
  max-width: 400px;
  width: 50%;
  border-radius: 1rem;
  box-shadow: 0 3px 6px rgba(83, 153, 214, 0.3), 0 3px 6px rgba(83, 153, 214, 0.4);
}
@media (max-width: 768px) {
  #team-members .team-members .team-member {
    width: 100%;
  }
}
#team-members .team-members .testimonial {
  font-style: italic;
}
#team-members .team-members .testimonial:before {
  content: "";
  width: 30px;
  height: 2px;
  background: #5399D6;
  display: block;
  margin: 0 auto 20px;
}
#team-members .links {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
}
@media (max-width: 1580px) {
  #team-members .links {
    flex-direction: column;
    align-items: start;
    margin-top: 30px;
  }
}
#team-members .links .button {
  width: max-content;
  padding: 13px 30px;
  font-size: 22px;
}
#team-members #why-choose-us {
  padding: 50px 0 150px;
}
@media (max-width: 1024px) {
  #team-members #why-choose-us {
    padding: 0 0 50px;
  }
}
#team-members #cta-blocks {
  background: #E0F0FF;
  text-align: center;
  margin: 2.5rem 0;
  padding: 50px 0;
  position: relative;
}
#team-members #cta-blocks h2 {
  margin-bottom: 2rem;
  letter-spacing: 5px;
}
@media (max-width: 1024px) {
  #team-members #cta-blocks {
    padding: 25px 0;
  }
}
#team-members #cta-blocks > .container {
  justify-content: center;
}
#team-members #cta-blocks .ctas {
  justify-content: space-between;
  width: 100%;
  align-items: center;
  max-width: 1000px;
}
#team-members #cta-blocks .ctas .cta-block {
  width: calc((100% / 3) - 2.5%);
  text-align: center;
  padding: 1.5rem;
  align-self: stretch;
  border: 1px solid #E0F0FF;
  border-radius: 1rem;
  box-shadow: 0 3px 6px rgba(83, 153, 214, 0.3), 0 3px 6px rgba(83, 153, 214, 0.4);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 900px) {
  #team-members #cta-blocks .ctas .cta-block {
    padding: 1rem;
  }
}
@media (max-width: 768px) {
  #team-members #cta-blocks .ctas .cta-block {
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  #team-members #cta-blocks .ctas .cta-block {
    width: 100%;
    margin-bottom: 20px;
  }
  #team-members #cta-blocks .ctas .cta-block:last-child {
    margin-bottom: 0;
  }
}
#team-members #cta-blocks .ctas .cta-block img {
  margin: 0 auto 20px;
  width: 90px;
}
#team-members #cta-blocks .ctas .cta-block h3 {
  margin-bottom: 20px;
}
#team-members #cta-blocks .ctas .cta-block p {
  line-height: 1.6rem;
  font-size: 18px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
#team-members #cta-blocks .ctas .cta-block .button {
  display: inline-block;
  white-space: nowrap;
  max-width: 300px;
  margin: 0 auto 10px;
}
@media (max-width: 900px) {
  #team-members #cta-blocks .ctas .cta-block .button {
    padding: 13px 20px;
  }
}
@media (max-width: 768px) {
  #team-members #cta-blocks .ctas .cta-block .button {
    padding: 13px 30px;
  }
}
#team-members #services {
  margin: 2.5rem 0;
  position: relative;
  padding: 100px 0;
}
@media (max-width: 1024px) {
  #team-members #services {
    padding: 50px 0;
  }
}
#team-members #services .services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#team-members #services .services .service {
  width: 45%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0;
}
@media (max-width: 500px) {
  #team-members #services .services .service {
    width: 100%;
    flex-direction: column;
    margin: 1rem 0;
  }
}
#team-members #services .services .service .divider {
  height: 100%;
  width: 5px;
  background-color: var(--accent-color);
}
@media (max-width: 500px) {
  #team-members #services .services .service .divider {
    width: 100%;
    height: 5px;
    margin: 1rem 0;
  }
}
#team-members #services .services .service img {
  width: 20%;
  height: auto;
}
@media (max-width: 500px) {
  #team-members #services .services .service img {
    width: 30%;
  }
}
#team-members #services .services .service .content {
  width: 65%;
  padding-bottom: 20px;
}
@media (max-width: 500px) {
  #team-members #services .services .service .content {
    width: 90%;
    text-align: center;
  }
}
#team-members #services .services .service .content h4 {
  color: #5399D6;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
#team-members #services .services .service .content p {
  line-height: 1.6rem;
}
#team-members #services .services .service:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 500px) {
  #team-members #services .services .service:nth-child(even) {
    flex-direction: column;
  }
}
#team-members #services .services .service:nth-child(even) .content {
  text-align: right;
}
@media (max-width: 500px) {
  #team-members #services .services .service:nth-child(even) .content {
    text-align: center;
  }
}
#team-members #footer-area #contact-form {
  padding: 50px 0 150px;
  margin: 2rem 0;
}
@media (max-width: 1024px) {
  #team-members #footer-area #contact-form {
    margin: 0;
  }
}
@media (max-width: 1024px) {
  #team-members #footer-area #contact-form .container {
    flex-direction: column;
  }
}
#team-members #footer-area #contact-form .container .contact-form-container {
  width: 50%;
}
@media (max-width: 1024px) {
  #team-members #footer-area #contact-form .container .contact-form-container {
    width: 100%;
    margin-top: 30px;
  }
}
#team-members #footer-area #contact-form .container .contact-form-container input[type=submit], #team-members #footer-area #contact-form .container .contact-form-container .submit-row {
  margin-bottom: 0;
}
#team-members #footer-area #contact-form .container .contact-form-container .heading {
  margin-top: 0;
}
#team-members .contact-details {
  width: 39%;
}
@media (max-width: 1024px) {
  #team-members .contact-details {
    width: 100%;
  }
}
#team-members .contact-details .detail {
  margin-bottom: 30px;
  padding: 0 30px;
}
#team-members .contact-details .detail:last-child {
  margin-bottom: 0;
}
#team-members .contact-details .detail h3 {
  margin-bottom: 0.5rem;
  color: #5399D6;
  font-size: 26px;
  letter-spacing: 1px;
}
#team-members .contact-details .detail ul li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
#team-members .contact-details .detail ul li:last-child {
  margin-bottom: 0;
}
#team-members .contact-details .detail ul li img {
  margin-right: 15px;
}
#team-members .contact-details .detail a {
  font-family: "Lato", sans-serif;
  color: #333652;
  font-weight: lighter;
  font-size: 21px;
  transition: all 0.3s;
}
@media (max-width: 360px) {
  #team-members .contact-details .detail a {
    font-size: 16px;
  }
}
#team-members .contact-details .detail a:hover {
  color: #5399D6;
}
#team-members .contact-details .detail p {
  line-height: 1.6rem !important;
  font-size: 21px !important;
  color: #333652;
  font-weight: 300;
}
#reviews section {
  position: relative;
}
#reviews #hero {
  padding: 150px 0;
}
#reviews #hero p {
  margin-bottom: 20px;
}
#reviews #hero .button {
  margin-top: 20px;
  display: block;
}
@media (max-width: 1024px) {
  #reviews #hero {
    padding: 100px 0;
  }
}
@media (max-width: 768px) {
  #reviews #hero {
    padding: 50px 0;
  }
}
#reviews #content {
  background: #E0F0FF;
}
#reviews #content #testimonials {
  padding: 0;
}
@media (max-width: 1024px) {
  #reviews #content #testimonials {
    padding-bottom: 50px;
  }
}
#reviews .heading {
  margin: 100px auto 3rem 0;
}
@media (max-width: 1024px) {
  #reviews .heading {
    margin: 50px auto 50px 0;
  }
}
#reviews #logos {
  padding: 100px 0;
}
@media (max-width: 1024px) {
  #reviews #logos {
    padding: 10px 0 100px;
  }
}
@media (max-width: 768px) {
  #reviews #logos {
    padding: 0 0 70px;
  }
}
#reviews #logos .hero-logos {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin: 30px 50px 0 50px;
}
@media (max-width: 1580px) {
  #reviews #logos .hero-logos {
    margin: 30px 0 0 0;
  }
}
@media (max-width: 1024px) {
  #reviews #logos .hero-logos {
    margin: 30px auto 0 auto;
  }
}
#reviews #logos .hero-logos .logos {
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: 100%;
  gap: 30px;
  max-width: 768px;
  margin: 30px auto 30px;
}
@media (max-width: 1024px) {
  #reviews #logos .hero-logos .logos {
    width: 100%;
    max-width: 450px;
    margin: 30px auto 0;
  }
}
@media (max-width: 768px) {
  #reviews #logos .hero-logos .logos .logo {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #reviews #logos .hero-logos .logos .logo:last-child {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 512px) {
  #reviews #logos .hero-logos .logos {
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 0;
  }
}
#reviews #logos .hero-logos .logos .logo {
  line-height: 1.2;
}
#reviews #logos .hero-logos .logos .logo img {
  max-width: 130px;
  max-height: 35px;
  width: auto;
}
@media (max-width: 512px) {
  #reviews #logos .hero-logos .logos .logo img {
    max-width: 100px;
    max-height: none;
  }
}
@media (max-width: 350px) {
  #reviews #logos .hero-logos .logos .logo img {
    margin-bottom: 0;
  }
  #reviews #logos .hero-logos .logos .logo img:last-child {
    margin-bottom: 0;
  }
}
#reviews #logos .hero-logos .logos .logo.checkatrade img {
  margin-bottom: 4px;
}
#reviews #logos .hero-logos .logos .logo.google-reviews img {
  max-height: 40px;
}
@media (max-width: 600px) {
  #reviews #logos .hero-logos .logos .logo.google-reviews img {
    max-height: none;
  }
}
#reviews #logos .hero-logos .logos .logo span {
  display: block;
  font-size: 0.8em;
  color: #333652;
}
@media (max-width: 1024px) {
  #reviews #logos .hero-logos {
    width: 100%;
  }
}
#reviews #footer-area #contact-form {
  padding: 50px 0 150px;
  margin: 2rem 0;
}
@media (max-width: 1024px) {
  #reviews #footer-area #contact-form {
    margin: 0;
  }
}
@media (max-width: 1024px) {
  #reviews #footer-area #contact-form .container {
    flex-direction: column;
  }
}
#reviews #footer-area #contact-form .container .contact-form-container {
  width: 50%;
}
@media (max-width: 1024px) {
  #reviews #footer-area #contact-form .container .contact-form-container {
    width: 100%;
    margin-top: 30px;
  }
}
#reviews #footer-area #contact-form .container .contact-form-container input[type=submit], #reviews #footer-area #contact-form .container .contact-form-container .submit-row {
  margin-bottom: 0;
}
#reviews #footer-area #contact-form .container .contact-form-container .heading {
  margin-top: 0;
}
#reviews .contact-details {
  width: 39%;
}
@media (max-width: 1024px) {
  #reviews .contact-details {
    width: 100%;
  }
}
#reviews .contact-details .detail {
  margin-bottom: 30px;
  padding: 0 30px;
}
#reviews .contact-details .detail:last-child {
  margin-bottom: 0;
}
#reviews .contact-details .detail h3 {
  margin-bottom: 0.5rem;
  color: #5399D6;
  font-size: 26px;
  letter-spacing: 1px;
}
#reviews .contact-details .detail ul li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
#reviews .contact-details .detail ul li:last-child {
  margin-bottom: 0;
}
#reviews .contact-details .detail ul li img {
  margin-right: 15px;
}
#reviews .contact-details .detail a {
  font-family: "Lato", sans-serif;
  color: #333652;
  font-weight: lighter;
  font-size: 21px;
  transition: all 0.3s;
}
@media (max-width: 360px) {
  #reviews .contact-details .detail a {
    font-size: 16px;
  }
}
#reviews .contact-details .detail a:hover {
  color: #5399D6;
}
#reviews .contact-details .detail p {
  line-height: 1.6rem !important;
  font-size: 21px !important;
  color: #333652;
  font-weight: 300;
}
#design-visit .heading {
  margin: 138px auto 3rem 0;
}
@media (max-width: 1024px) {
  #design-visit .heading {
    margin: 100px auto 50px 0;
  }
}
#design-visit #content {
  padding-bottom: 100px;
}
#design-visit .steps {
  margin-top: 50px;
  margin-bottom: 100px;
  counter-reset: steps;
  justify-content: start;
}
@media (max-width: 1024px) {
  #design-visit .steps {
    margin-bottom: 50px;
  }
}
#design-visit .steps .step {
  margin: 0 0 30px;
  padding-left: 30px;
  position: relative;
}
#design-visit .steps .step:before {
  counter-increment: steps;
  content: counter(steps);
  background: #5399d5;
  border-radius: 100%;
  height: 20px;
  width: 20px;
  display: flex;
  position: absolute;
  left: 0;
  top: 2px;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  color: #fff;
}
#design-visit .steps .step .step-title {
  margin-bottom: 20px;
}
#design-visit .steps .step .step-text p {
  margin-bottom: 10px;
  font-weight: 300;
}
#design-visit .steps a {
  color: #333652;
}
#design-visit .steps a:hover {
  color: #5399D6;
}
#design-visit .content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}
@media (max-width: 1024px) {
  #design-visit .content {
    width: 100%;
    padding: 0;
  }
}
#design-visit .content p {
  font-weight: 300;
}
#design-visit .logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 350px) {
  #design-visit .logos {
    flex-wrap: wrap;
  }
  #design-visit .logos .logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px !important;
  }
  #design-visit .logos .logo:last-child {
    margin-bottom: 0 !important;
  }
}
#design-visit .logos .logo {
  line-height: 0;
}
#design-visit .logos .logo img {
  max-width: 150px;
  max-height: 75px;
}
@media (max-width: 500px) {
  #design-visit .logos .logo img {
    max-width: 100px;
    max-height: 60px;
  }
}
@media (max-width: 350px) {
  #design-visit .logos .logo img {
    max-width: 150px;
    max-height: 75px;
    margin-bottom: 20px;
  }
  #design-visit .logos .logo img:last-child {
    margin-bottom: 0;
  }
}
#design-visit .logos .logo.trustatrade {
  margin-bottom: -10px;
}
#design-visit .logos .logo.checkatrade {
  margin-bottom: -6px;
}
#design-visit .page-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1024px) {
  #design-visit .container {
    flex-direction: column;
  }
}
#design-visit .container .contact-form-container {
  width: 50%;
  margin-top: 200px;
}
@media (max-width: 1024px) {
  #design-visit .container .contact-form-container {
    width: 100%;
    margin-top: 30px;
  }
}
#design-visit .container .contact-form-container form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#design-visit .container .contact-form-container form input[type=submit], #design-visit .container .contact-form-container form .submit-row {
  margin-bottom: 0;
}
#design-visit .container .contact-form-container form input:not([type="submit"]), #design-visit .container .contact-form-container form textarea {
  background-color: #E0F0FF;
  margin-bottom: 1rem;
}
#design-visit .container .contact-form-container form input[name="miel"] {
  width: 0;
  height: 0;
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
}
#design-visit #footer-area {
  background: #E0F0FF;
  padding-top: 100px;
  padding-bottom: 50px;
}
#design-visit #footer-area h3:not(.step-title) {
  text-align: center;
}
.page-template-page-free-design-visit .wave-before {
  background: #E0F0FF;
}
