@font-face {
  font-family: "Brands 400";
  src: url('../fonts/Brands-Regular-400.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sharp Solid 900";
  src: url('../fonts/Sharp-Solid-900.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --light-blue: #0658a2;
  --navy: #16255b;
  --white: white;
  --black: black;
  --sky-blue: #2886db;
  --slate: #161616;
  --silver: #979797;
  --smoke: #ececec;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.master-header-section {
  border-bottom: 4px solid var(--light-blue);
  background-color: var(--navy);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.body {
  color: var(--white);
  flex-direction: column;
  font-family: Varela, sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.body.black {
  color: var(--black);
}

.logo-div {
  justify-content: flex-start;
  width: 30%;
  display: flex;
}

.home-link {
  max-width: 390px;
}

.home-link.w--current {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.header-div {
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1300px;
  display: flex;
}

.contact-info-div {
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 30%;
  display: flex;
}

.contact-info-div.left {
  align-items: flex-start;
}

.phone-number-div {
  display: flex;
}

.phone-number-div.footer {
  justify-content: flex-end;
}

.phone-number-div.centre {
  color: var(--black);
  justify-content: flex-start;
}

.contact-link {
  color: var(--black);
  text-align: left;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 18px;
  text-decoration: none;
}

.contact-link.footer {
  color: var(--white);
  text-align: right;
  padding-top: 8px;
  padding-bottom: 5px;
}

.contact-link.centre {
  justify-content: flex-start;
  display: flex;
}

.button {
  border: 1px solid var(--white);
  background-color: var(--navy);
  text-align: center;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 5px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 15px;
  font-weight: 300;
  transition: all .2s;
}

.button:hover {
  background-color: var(--light-blue);
}

.button.footer {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 400;
}

.menu-section {
  border-bottom: 4px solid var(--light-blue);
  background-color: var(--sky-blue);
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
  display: flex;
}

.menu-div {
  flex-direction: column;
  width: 90%;
  max-width: 1300px;
  padding-top: 20px;
}

.navbar {
  background-color: var(--slate);
  display: flex;
}

.nav-item {
  color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20%;
  height: 100%;
  line-height: 18px;
  text-decoration: none;
  display: flex;
}

.nav-item:hover {
  background-color: var(--silver);
  color: var(--white);
}

.nav-item:focus {
  color: var(--white);
  text-align: center;
  width: 20%;
  height: 100%;
  text-decoration: none;
}

.nav-item.w--current {
  background-color: var(--navy);
  color: var(--white);
}

.nav-item.w--current:focus {
  background-color: var(--slate);
  color: var(--white);
}

.nav-menu {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 66px;
  display: flex;
}

.toggle {
  color: var(--white);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: all .2s;
  display: flex;
}

.toggle:hover {
  background-color: var(--light-blue);
  color: var(--white);
  justify-content: center;
  width: 100%;
  display: flex;
}

.toggle:focus {
  background-color: #0000;
}

.toggle.w--open {
  background-color: var(--light-blue);
  color: var(--white);
}

.toggle.w--open:focus {
  color: var(--white);
  background-color: #0000;
}

.dropdown-list {
  background-color: #f4f405;
}

.dropdown-list.w--open {
  background-color: var(--white);
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.dropdown-list.w--open:focus {
  background-color: #f4f405;
}

.dropdown-link {
  color: var(--black);
  background-color: #0000;
  transition: all .2s;
}

.dropdown-link:hover, .dropdown-link:focus {
  background-color: var(--light-blue);
  color: var(--white);
}

.dropdown-link.w--current {
  background-color: var(--navy);
  color: var(--white);
}

.dropdown-link.w--current:focus {
  background-color: var(--slate);
  color: var(--white);
}

.banner-slider {
  z-index: -2;
  height: 70vh;
  position: static;
}

.left-arrow, .right-arrow {
  display: none;
}

.slide-1 {
  background-image: url('../images/banner.webp');
  background-position: 50% 55%;
  background-repeat: no-repeat;
  background-size: cover;
}

.content-section {
  background-color: var(--light-blue);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.content-section.blue {
  background-color: var(--navy);
}

.content-section.even-lighter-blue {
  background-color: var(--sky-blue);
}

.content-section.white {
  background-color: var(--white);
}

.double-content-div {
  justify-content: space-between;
  width: 90%;
  max-width: 1300px;
  margin-top: 40px;
  display: flex;
}

.double-content-div.vtl {
  flex-direction: column;
  align-items: flex-start;
}

.double-content-div.vtl._1 {
  align-items: flex-start;
  padding-bottom: 0;
}

.double-content-div.vtl.z {
  flex-flow: row;
  width: 100%;
  margin-bottom: 40px;
}

.double-content-div._2 {
  padding-bottom: 30px;
}

.double-content-div._1 {
  padding-top: 30px;
}

.h1 {
  color: var(--light-blue);
  text-align: left;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 35px;
}

.h1.subtext {
  text-align: left;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 30px;
}

.h1.subtext.w {
  color: var(--white);
}

.h1.white {
  color: var(--white);
  margin-bottom: 20px;
}

.h1-div {
  padding-bottom: 0;
}

.div-block {
  flex-direction: column;
  margin-top: 0;
}

.p {
  color: var(--slate);
  text-align: left;
  margin-bottom: 0;
}

.p.white {
  color: var(--slate);
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
}

.p.white._2 {
  padding-bottom: 20px;
}

.p.white.w {
  text-transform: none;
  padding-bottom: 20px;
  font-size: 16px;
  line-height: 26px;
}

.p._1 {
  padding-top: 30px;
}

.p._1.white._60 {
  padding-top: 0;
  padding-bottom: 60px;
}

.p.centre {
  color: var(--white);
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
}

.p.left {
  text-align: left;
}

.p.left.top {
  margin-top: 20px;
}

.p._2 {
  padding-bottom: 30px;
}

.p.white {
  color: var(--white);
  text-align: left;
  font-family: Varela Round, sans-serif;
}

.p.white._2 {
  color: var(--white);
  padding-bottom: 30px;
}

.p.footer {
  color: var(--white);
  text-align: left;
}

.p._3 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.h2 {
  color: var(--light-blue);
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 30px;
  font-size: 24px;
  font-weight: 400;
}

.h2.left {
  text-align: left;
}

.h2.white {
  color: var(--white);
}

.list-white {
  flex-direction: column;
  justify-content: center;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.button-div {
  justify-content: space-between;
  width: 380px;
  padding-top: 30px;
  display: flex;
}

.button-left {
  border: 1px solid var(--white);
  background-color: var(--sky-blue);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  width: 48%;
  transition: all .2s;
}

.button-left:hover {
  background-color: var(--light-blue);
}

.button-right {
  border: 1px solid var(--white);
  background-color: var(--sky-blue);
  text-align: center;
  text-transform: uppercase;
  width: 48%;
  transition: all .2s;
}

.button-right:hover {
  background-color: var(--light-blue);
}

.single-content-div {
  flex-direction: column;
  justify-content: flex-start;
  width: 48%;
  display: flex;
}

.single-content-div.outline {
  border: 1px solid var(--white);
  width: 49%;
  padding: 20px;
}

.single-content-div.outline._2 {
  border-color: var(--white);
}

.h4 {
  color: #c9c913;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 46px;
}

.h4.subtext {
  color: var(--silver);
  text-align: left;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
}

.h3 {
  color: var(--white);
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 21px;
  font-style: italic;
  font-weight: 400;
  line-height: 36px;
}

.h3.top {
  text-align: left;
  margin-top: 40px;
}

.h3-link {
  color: var(--white);
  text-decoration: none;
}

.footer-section {
  background-color: var(--slate);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 30px;
  display: flex;
}

.single-footer-div {
  flex-direction: column;
  width: 34%;
  display: flex;
}

.footer-content-div {
  justify-content: center;
  width: 90%;
  max-width: 1300px;
  padding-bottom: 30px;
  display: flex;
}

.footer-info-div {
  justify-content: space-between;
  width: 90%;
  max-width: 1300px;
  padding-bottom: 30px;
  display: flex;
}

.footer-heading {
  border-bottom: 1px solid var(--white);
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: 300;
}

.footer-heading.right {
  text-align: right;
}

.footer-heading.centre {
  color: var(--white);
  text-align: center;
}

.footer-list {
  margin-bottom: 0;
  padding-top: 30px;
  padding-left: 30px;
}

.footer-contact-div {
  text-align: right;
  flex-direction: column;
  padding-top: 30px;
  display: flex;
}

.footerlink-div {
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 1300px;
  margin-top: 40px;
  display: flex;
}

.footerlinks {
  color: var(--silver);
  text-align: center;
  margin-bottom: 0;
  text-decoration: none;
}

.list-item {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: Varela Round, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.list-item.left {
  color: var(--black);
  text-align: left;
}

.list-item.w {
  color: var(--white);
}

.list-item._0 {
  padding-top: 0;
  padding-bottom: 0;
}

._1-3-content-div {
  width: 32%;
}

.int-link {
  color: var(--white);
}

.int-link.black {
  color: var(--black);
  -webkit-text-stroke-width: .5px;
  font-weight: 400;
}

.int-link.internal-link {
  -webkit-text-stroke-width: .5px;
  -webkit-text-stroke-color: var(--black);
  font-weight: 400;
}

.footerlink {
  color: var(--silver);
  text-decoration: none;
}

.map-div {
  width: 100%;
}

.area-list {
  width: 20%;
}

.contact-div {
  flex-direction: column;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.b-master-menu-div-tablet {
  z-index: 0;
  flex-direction: column;
  width: 90%;
  max-width: 1300px;
  display: none;
  position: absolute;
}

.footer-html {
  color: var(--white);
  width: 100%;
  height: 100%;
  margin-top: 30px;
  font-family: Varela Round, sans-serif;
}

.services-toggle {
  background-color: var(--light-blue);
  color: var(--white);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: all .2s;
  display: flex;
}

.services-toggle:hover {
  color: var(--white);
  justify-content: center;
  width: 100%;
  display: flex;
}

.services-toggle:active {
  background-color: var(--light-blue);
}

.services-toggle:focus, .services-toggle.w--open {
  background-color: var(--light-blue);
  color: var(--white);
}

.services-toggle.w--open:hover, .services-toggle.w--open:focus {
  color: var(--white);
}

.image {
  max-width: 390px;
}

.map-div-mobile {
  width: 107%;
  display: none;
}

.internal-link {
  color: var(--slate);
}

.subtext {
  font-weight: 300;
}

.contact-map {
  width: 100%;
}

.divider {
  background-color: var(--slate);
  width: 1px;
  margin-left: 10px;
  margin-right: 10px;
}

.divider.white {
  background-color: var(--white);
  margin-left: 6px;
  margin-right: 6px;
}

.services-menu-section {
  border-bottom: 4px solid var(--light-blue);
  background-color: var(--sky-blue);
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
  display: flex;
}

.services-nav-item {
  background-color: var(--navy);
  color: var(--white);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 20%;
  height: 100%;
  line-height: 18px;
  text-decoration: none;
}

.services-nav-item:hover {
  background-color: var(--slate);
  color: var(--white);
}

.services-nav-item:focus {
  color: var(--white);
  text-align: center;
  width: 20%;
  height: 100%;
  text-decoration: none;
}

.services-nav-item.w--current {
  background-color: var(--silver);
  color: var(--white);
  height: 100%;
}

.services-nav-item.w--current:focus {
  background-color: var(--slate);
  color: var(--white);
}

.blogs-menu-section {
  background-color: var(--silver);
  justify-content: center;
  align-items: center;
  display: flex;
}

.services-toggle-link {
  width: 70%;
  height: 100%;
  position: absolute;
  left: 0;
}

.dropdown-nav-item {
  color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20%;
  height: 100%;
  line-height: 18px;
  text-decoration: none;
}

.dropdown-nav-item:hover {
  background-color: var(--silver);
  color: var(--white);
}

.dropdown-nav-item:focus {
  color: var(--white);
  text-align: center;
  width: 20%;
  height: 100%;
  text-decoration: none;
}

.dropdown-nav-item.w--current {
  background-color: var(--silver);
  color: var(--white);
}

.dropdown-nav-item.w--current:focus {
  background-color: var(--slate);
  color: var(--white);
}

.list {
  width: 100%;
  margin-bottom: 0;
  margin-right: 20px;
  padding-top: 30px;
  padding-left: 0;
  list-style-type: none;
}

.list.centre {
  flex-direction: column;
  align-items: flex-start;
  margin-right: 20px;
  padding-top: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.list.centre.white {
  margin-top: 40px;
}

.list.centre.white._2 {
  padding-bottom: 30px;
}

.list.centre.white.big {
  padding-left: 40px;
}

.list.centre.white.black {
  color: var(--white);
}

.list.centre.white._0 {
  margin-top: 0;
}

.list._4 {
  padding-left: 0;
  list-style-type: none;
}

.list._4.big {
  padding-left: 40px;
}

.list._4._0, .list._0 {
  padding-top: 0;
}

.list-group {
  justify-content: flex-start;
  width: 100%;
  display: flex;
}

.list-group._2 {
  justify-content: flex-start;
  padding-bottom: 30px;
}

.list-group.left {
  justify-content: flex-start;
}

.single-image-div {
  background-image: url('../images/drivway-new-2.webp');
  background-position: 50% 46%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 65%;
}

.single-image-div._1 {
  background-image: url('../images/drivway-new-5.webp');
  background-position: 50% 36%;
}

.single-image-div._2 {
  background-image: url('../images/tarmac-new-14.webp');
  background-position: 50% 60%;
}

.single-image-div._3 {
  background-image: url('../images/tarmac-new-17.webp');
  background-position: 50%;
}

.single-image-div._4 {
  background-image: url('../images/Across-site-_-Prev-work-1.jpg');
  background-position: 50% 60%;
}

.double-image-div {
  background-image: url('../images/tarmac-new-1.webp');
  background-position: 50% 31%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 450px;
  display: flex;
}

.double-image-div._2 {
  background-image: url('../images/thumb4.webp');
  background-position: 50% 65%;
}

.double-image-div._2._50 {
  background-image: url('../images/tarmac-new-11.webp');
  width: 48%;
}

.double-image-div._2._50.a {
  background-image: url('../images/tarmac-new-3.webp');
}

.double-image-div._3 {
  background-image: url('../images/tarmac-new-2.webp');
  background-position: 50% 20%;
}

.double-image-div._4 {
  background-image: url('../images/tarmac-new-5.webp');
  background-position: 50% 30%;
}

.toggle-copy {
  color: var(--white);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.toggle-copy:focus, .toggle-copy.w--open, .toggle-copy.w--open:focus {
  background-color: var(--slate);
  color: var(--white);
}

.blog-toggle {
  color: var(--white);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.blog-toggle:hover {
  background-color: var(--silver);
  color: var(--white);
  justify-content: center;
  width: 100%;
  display: flex;
}

.blog-toggle:focus, .blog-toggle.w--open, .blog-toggle.w--open:focus {
  background-color: var(--slate);
  color: var(--white);
}

.navbar-3 {
  background-color: var(--navy);
  justify-content: center;
  align-items: center;
}

.nav-link {
  color: var(--white);
  justify-content: center;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  transition: all .2s;
  display: flex;
}

.nav-link:hover {
  background-color: var(--light-blue);
}

.nav-link.w--current {
  background-color: var(--light-blue);
  color: var(--white);
}

.link-white {
  color: var(--white);
  text-decoration: none;
}

.link-white.header-2 {
  margin-left: 10px;
}

.link-white.body {
  color: var(--black);
}

.nav-menu-2 {
  width: 100%;
  display: flex;
}

.dropdown {
  width: 100%;
  margin-left: 0;
}

.dropdown:hover {
  background-color: var(--light-blue);
}

.toggle-copy {
  color: var(--white);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: all .2s;
  display: flex;
}

.toggle-copy:hover {
  background-color: var(--light-blue);
  color: var(--white);
  justify-content: center;
  width: 100%;
  display: flex;
}

.toggle-copy:focus {
  background-color: #0000;
}

.toggle-copy.w--open {
  background-color: var(--light-blue);
  color: var(--white);
}

.toggle-copy.w--open:focus {
  background-color: var(--slate);
  color: var(--white);
}

._2x2 {
  width: 100%;
}

._2x2._2 {
  padding-bottom: 30px;
}

.grid-div {
  border: 1px solid var(--white);
  padding: 20px;
}

.footer-button-div {
  justify-content: flex-end;
  display: flex;
}

.single-footer-div-mobile {
  flex-direction: column;
  width: 34%;
  display: none;
}

.single-footer-div-copy {
  flex-direction: column;
  width: 34%;
  display: flex;
}

.slide-3 {
  background-image: url('../images/Banner-_-across-site.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-4 {
  background-image: url('../images/Across-site-prev-work-2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-2 {
  background-image: url('../images/banner-2.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.previous-work-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-top: 40px;
}

.lightbox-image {
  object-fit: cover;
  width: 100%;
  height: 200px;
}

.contact-map-html-mobile {
  display: none;
}

._50pc-img {
  width: 48.5%;
}

._50pc-img._1 {
  background-image: url('../images/drivway-new-4.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

._50pc-img._2 {
  background-image: url('../images/Surface-dressing-page.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

._2-img-div {
  justify-content: space-between;
  width: 100%;
  min-height: 450px;
  display: flex;
}

.section {
  padding-top: 0;
  padding-bottom: 0;
}

.insta-feed {
  margin-bottom: 20px;
}

.car-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 40px;
  display: flex;
}

.image-51 {
  width: auto;
  height: 100px;
}

.white-link {
  color: #fff;
  text-decoration: none;
}

.top-tel-link {
  color: #fff;
  padding-left: 0;
  padding-right: 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 40px;
  text-decoration: none;
  transition: all .5s;
}

.top-tel-link:hover {
  color: var(--sky-blue);
}

.logo-div-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 50%;
  display: flex;
}

.tel-div {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.emaiil {
  color: #fff;
  margin-bottom: 0;
  font-size: 16px;
}

.tel-icon {
  filter: brightness(200%);
  margin-bottom: 5px;
  margin-right: 5px;
}

.need-help {
  color: #fff;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 700;
}

.top-tel-no {
  text-align: right;
  margin-bottom: 5px;
  line-height: 22px;
}

.top-contact-div {
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 60%;
  height: 100%;
  display: flex;
}

.master-header-section-2 {
  background-color: #16255b;
  border-bottom: 4px solid #0658a2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.home-link-2 {
  max-width: 750px;
}

.home-link-2.w--current {
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
}

.text-block {
  font-size: 15px;
  font-weight: 400;
}

.dropdown-list-5 {
  background-color: #fff;
}

.dropdown-list-5.w--open {
  background-color: #0658a2;
}

.nav-link-2 {
  color: #fff;
  text-align: center;
  border-bottom: 5px solid #0658a2;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 400;
}

.nav-link-2:hover {
  border-bottom-color: #16255b;
}

.nav-link-2.w--current {
  color: #fff;
  border-bottom-color: #16255b;
}

.nav-link-2.home {
  border-bottom-color: #16255b;
}

.icon {
  font-weight: 400;
}

.nav-link-dropdown {
  color: #fff;
  text-align: left;
  border-bottom: 0 solid #c4a16c;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 20px;
  font-size: 16px;
  font-weight: 400;
}

.nav-link-dropdown:hover {
  background-color: #16255b;
  border-bottom-width: 0;
  border-bottom-color: #2e2e2e;
}

.nav-link-dropdown.w--current {
  color: #fff;
  background-color: #16255b;
  border-bottom-width: 0;
}

.navbar-4 {
  background-color: #0000;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  width: 95%;
  max-width: 1200px;
  display: flex;
}

.top-section {
  z-index: 3;
  background-color: #0658a2;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.nav-link-services-dropdown {
  color: #fff;
  text-align: center;
  border-bottom: 5px solid #0658a2;
  padding: 10px 40px 10px 15px;
  font-size: 15px;
  font-weight: 700;
}

.nav-link-services-dropdown:hover {
  border-bottom-color: #16255b;
}

.nav-link-services-dropdown.w--current {
  color: #fff;
  border-bottom-color: #fc5a0a;
}

.nav-link-services-dropdown.svs {
  border-bottom-color: var(--navy);
}

.small-text-div-and-arrow {
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.arrow-2 {
  background-color: #2e2e2e4d;
  border: 2px solid #fff;
  width: 140px;
  margin-left: 10px;
}

.arrow-2.banner-arrow {
  width: 100px;
  margin-left: 0;
}

.arrow-2.banner-arrow:hover {
  background-color: #0658a275;
}

.slider-heading {
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 50px;
}

.slider-text-div {
  background-color: #2e2e2ecc;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 45%;
  max-width: 780px;
  padding: 30px;
  display: flex;
}

.button-link {
  width: 210px;
  margin-left: 0;
}

.slider-overlay-div {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
}

.slider-small-text {
  color: #fff;
  text-align: left;
  margin-bottom: 0;
  margin-right: 20px;
  padding-bottom: 0;
  font-size: 16px;
  line-height: 25px;
}

.overlay-div {
  z-index: 100;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 0;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

._4-box-text {
  color: #fff;
  width: 100%;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 24px;
}

._3-box-grid {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.box-1 {
  opacity: 1;
  background-image: url('../images/Across-site-prev-work-2.jpg');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 400px;
  min-height: 100px;
  text-decoration: none;
  display: flex;
}

.box-1:hover {
  text-shadow: 4px 4px 5px #000000bf;
  text-decoration: none;
}

._4-block-div {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.box-2 {
  background-color: #272d33;
  background-image: url('../images/Roller-1.jpg');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  min-height: 100px;
  text-decoration: none;
  display: flex;
}

.box-2:hover {
  text-shadow: 4px 4px 5px #000000bf;
  background-color: #fc5a0a4d;
}

.box-4 {
  background-color: #272d33;
  background-image: url('../images/Banner-_-across-site.webp');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 400px;
  min-height: 100px;
  text-decoration: none;
  display: flex;
}

.box-4:hover {
  text-shadow: 4px 4px 5px #000000bf;
}

._4-boxes-section {
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

._4-boxes-section.no-bottom-padding {
  padding-top: 30px;
  padding-bottom: 0;
}

.div-container {
  background-color: #00000080;
  width: 68%;
  height: auto;
  padding: 20px 10px 10px 20px;
  text-decoration: none;
  position: static;
}

.box-3 {
  background-color: #272d33;
  background-image: url('../images/newbanner.webp');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 400px;
  min-height: 100px;
  text-decoration: none;
  display: flex;
}

.box-3:hover {
  text-shadow: 4px 4px 5px #000000bf;
}

.box-heading {
  color: #fff;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 10px;
  font-size: 26px;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
}

.box-heading:hover {
  text-decoration: none;
}

.contact-info {
  color: #fff;
  width: 100%;
  height: 100%;
  font-weight: 400;
  text-decoration: none;
}

.terms-and-cons {
  background-color: var(--white);
  color: var(--slate);
  letter-spacing: 1px;
  border: 1px solid #16255b;
  width: auto;
  margin-top: 20px;
  padding: 10px 20px;
  font-family: Varela Round, sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  transition: all .35s ease-in-out;
}

.terms-and-cons:hover {
  border-color: var(--white);
  color: var(--white);
  background-color: #0000;
}

.h2-white {
  color: #fff;
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 50px;
  font-weight: 400;
  line-height: 60px;
}

.bottom-content-div {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: flex-start center;
  width: 95%;
  max-width: 1200px;
  display: grid;
}

.bottom-text {
  color: #e0e0e0;
  margin-bottom: 0;
  margin-right: 10px;
  font-weight: 400;
  line-height: 24px;
}

.contact-left-div {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.bottom-section {
  background-color: var(--slate);
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 100px;
  display: flex;
}

.heading {
  font-size: 16px;
  line-height: 26px;
}

.h3list {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.image-52 {
  width: 100%;
}

.div-block-2 {
  cursor: pointer;
  width: 50px;
  height: 50px;
}

.heading-2 {
  font-size: 22px;
  font-weight: 400;
}

.heading-2.b {
  color: var(--black);
}

.fs-cc-manager_icon {
  width: 32px;
  height: 32px;
}

.fs-cc-banner_trigger {
  display: none;
}

.fs-cc-banner_close-icon {
  width: 24px;
  height: 24px;
}

.fs-cc-prefs_form {
  background-color: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 576px;
  height: 100%;
  max-height: 70vh;
  margin-bottom: 0;
  position: relative;
}

.fs-cc-prefs_submit-hide {
  display: none;
}

.fs-cc-prefs_close {
  z-index: 1;
  color: #333;
  cursor: pointer;
  background-color: #f5f6ff;
  border-radius: 100%;
  padding: 10px;
  font-size: 20px;
  text-decoration: none;
  position: absolute;
  inset: -12px -12px auto auto;
  box-shadow: -1px 1px 12px #3333331a;
}

.fs-cc-prefs_overlay {
  z-index: -1;
  background-color: #03052499;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fs-cc-prefs_component {
  z-index: 997;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding: 32px;
  display: none;
  position: fixed;
  inset: 0%;
}

.fs-cc-prefs_toggle-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  display: flex;
}

.fs-cc-banner_button {
  border: 2px solid var(--navy);
  background-color: var(--navy);
  color: #fff;
  text-align: center;
  border-radius: 500px;
  min-width: 140px;
  margin-left: 16px;
  padding: 10px 20px;
  font-size: 16px;
}

.fs-cc-banner_button.fs-cc-button-alt {
  border-color: var(--navy);
  color: var(--navy);
  background-color: #f5f5f5;
}

.fs-cc-manager_component {
  z-index: 999;
  display: none;
  position: fixed;
  inset: auto auto 20px 20px;
}

.fs-cc-prefs_title {
  color: var(--navy);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
}

.fs-cc-prefs_toggle {
  background-color: #fff;
  border-radius: 999px;
  width: 20px;
  height: 20px;
}

.fs-cc-prefs_option {
  border-bottom: 1px solid #33333326;
  padding-top: 16px;
  padding-bottom: 16px;
}

.fs-cc-banner_close {
  opacity: 1;
  color: var(--black);
  cursor: pointer;
  background-color: #fff;
  border-radius: 500px;
  margin-left: 12px;
  padding: 10px;
  box-shadow: 1px 1px 12px #0000001a;
}

.fs-cc-prefs_space-medium {
  margin-bottom: 40px;
}

.fs-cc-prefs_button {
  border: 2px solid var(--navy);
  background-color: var(--navy);
  border-radius: 500px;
  margin-right: 8px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 700;
}

.fs-cc-prefs_button.fs-cc-button-alt {
  border-color: var(--navy);
  color: var(--navy);
  background-color: #fff;
}

.fs-cc-prefs_checkbox-field {
  background-color: #ccc;
  border-radius: 999px;
  width: 44px;
  height: 24px;
  margin-bottom: 0;
  padding: 2px;
  display: flex;
  position: relative;
}

.fs-cc-banner_buttons-wrapper {
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.fs-cc-manager_trigger {
  display: none;
}

.fs-cc-banner_container {
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.fs-cc-prefs_close-icon {
  color: var(--black);
  width: 16px;
  height: 16px;
  display: flex;
}

.fs-cc-prefs_trigger {
  display: none;
}

.fs-cc-prefs_text {
  color: var(--black);
  font-size: 12px;
}

.fs-cc-prefs_checkbox {
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0%;
}

.fs-cc-banner_text {
  color: #616161;
  margin-right: 24px;
}

.fs-cc-prefs_checkbox-label {
  display: none;
}

.fs-cc-prefs_buttons-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  margin-top: 32px;
  margin-right: -8px;
  display: flex;
}

.fs-cc-prefs_content {
  height: 100%;
  padding: 40px 32px;
  overflow: scroll;
}

.fs-cc-prefs_space-small {
  margin-bottom: 12px;
}

.fs-cc-prefs_label {
  color: var(--navy);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 32px;
  font-size: 16px;
  font-weight: 700;
}

.fs-cc-banner_text-link {
  border-bottom: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 400;
  text-decoration: none;
}

.fs-cc-manager_button {
  color: #333;
  cursor: pointer;
  background-color: #fff;
  border-radius: 500px;
  flex-direction: column;
  padding: 10px;
  transition: color .2s;
  display: flex;
}

.fs-cc-manager_button:hover {
  color: #4353ff;
}

.fs-cc-banner_component {
  z-index: 998;
  background-color: #f5f6ff;
  border-top: 1px solid #4353ff29;
  padding: 24px 32px;
  display: none;
  position: fixed;
  inset: auto 0% 0%;
}

.text-span {
  background-color: var(--slate);
  color: var(--white);
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  font-family: "Sharp Solid 900", sans-serif;
  display: inline-flex;
}

.text-span.bot {
  background-color: var(--navy);
  margin-bottom: 5px;
  margin-right: 0;
}

.text-span.bot._40l {
  margin-right: 20px;
}

.live-chat-top-text {
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  position: static;
}

.live-chat-top-text.block {
  color: #494949;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
}

.whatsapp-block {
  z-index: 30;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 20px;
  margin-right: 20px;
  display: none;
  position: fixed;
  inset: auto 0% 0% auto;
}

.live-icon {
  background-color: #00b94a;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  position: absolute;
  inset: 2px auto auto 2px;
}

.live-chat-bottom-text {
  font-size: 10px;
}

.live-chat-bottom-text.block {
  color: var(--black);
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 24px;
}

.live-chat-bottom-text.bold {
  color: var(--black);
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
}

.chat-section {
  background-color: #b7b5b5;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50%;
  padding: 16px 20px;
  display: flex;
  position: relative;
}

.small-whatsapp-icon {
  margin-right: 10px;
}

.live-chat-text {
  color: #fff;
  text-decoration: none;
}

.live-chat-link {
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 25%;
  text-decoration: none;
  display: flex;
  position: relative;
}

.chat-block {
  background-color: #fff;
  border-radius: 8px;
  width: 100%;
  padding: 15px;
}

.whatsapp-container {
  z-index: 30;
  background-color: var(--navy);
  cursor: pointer;
  border: 1px solid #ffffff4d;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  transition: all .3s cubic-bezier(.45, .182, .111, .989);
  display: flex;
  position: relative;
  inset: auto 0% 0% auto;
}

.whatsapp-container:hover {
  background-color: var(--black);
  transform: scale(1.05);
}

.whatsapp-chat {
  background-color: #fff;
  border: 1px solid #00000029;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  width: 300px;
  max-width: 300px;
  height: 315px;
  margin-bottom: 16px;
  display: none;
  overflow: hidden;
}

.livechat-button {
  background-color: var(--navy);
  cursor: pointer;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 42px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.livechat-button:hover {
  background-color: var(--black);
}

.top-section-2 {
  background-color: var(--navy);
  color: var(--white);
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 25%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.live-icon-chat {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.div-block-3 {
  z-index: 99;
  background-color: var(--navy);
  flex-flow: column;
  display: flex;
  position: fixed;
  inset: 400px 20px auto auto;
}

.stickysocial {
  background-color: var(--navy);
  color: var(--white);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-family: "Sharp Solid 900", sans-serif;
  text-decoration: none;
  display: inline-flex;
}

.stickysocial.brand {
  font-family: "Brands 400", sans-serif;
}

.stickysocial.brand.hid {
  opacity: 0;
  display: none;
}

.stickysocial.plus {
  z-index: 999;
}

.stickysocial.hid {
  opacity: 0;
  display: none;
}

.bold-text {
  text-transform: none;
}

._50-width {
  width: 50%;
}

.div-block-4 {
  flex-flow: row;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.side {
  margin-right: 20px;
}

.div-block-6 {
  background-color: var(--sky-blue);
  color: var(--white);
  justify-content: center;
  align-items: center;
  height: 40px;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
  font-family: "Sharp Solid 900", sans-serif;
  display: flex;
}

.text-span-2 {
  margin-right: 10px;
  font-family: Varela, sans-serif;
}

@media screen and (min-width: 1920px) {
  .livechat-button:hover {
    background-color: #000;
    transform: scale(1.05);
  }
}

@media screen and (max-width: 991px) {
  .logo-div {
    justify-content: center;
    width: 100%;
  }

  .header-div {
    flex-direction: column;
    align-items: center;
  }

  .contact-info-div {
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding-top: 20px;
  }

  .contact-info-div.left {
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    padding-bottom: 20px;
  }

  .phone-number-div {
    flex-direction: column;
  }

  .phone-number-div.centre {
    flex-direction: column;
    align-items: center;
  }

  .contact-link {
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
  }

  .contact-link.footer {
    text-align: left;
    font-size: 20px;
  }

  .button {
    text-transform: uppercase;
    width: 48%;
    margin-bottom: 0;
  }

  .button.footer {
    width: 100%;
  }

  .menu-section {
    padding-top: 20px;
  }

  .menu-div {
    padding-top: 0;
  }

  .navbar {
    flex-direction: column;
  }

  .nav-item {
    background-color: var(--black);
    color: var(--white);
    flex-direction: column;
    width: 100%;
    height: 80%;
    line-height: 10px;
  }

  .nav-item:focus {
    width: 100%;
  }

  .nav-item.w--current {
    background-color: var(--white);
    color: var(--black);
    width: 100%;
    height: 80%;
  }

  .nav-menu {
    background-color: #f4f405e6;
    height: auto;
  }

  .toggle {
    color: var(--navy);
    justify-content: flex-start;
  }

  .toggle:hover {
    justify-content: flex-start;
  }

  .toggle.w--open {
    flex-direction: column;
    align-items: flex-start;
  }

  .toggle.w--open:focus {
    background-color: var(--light-blue);
    color: var(--white);
  }

  .dropdown-list.w--open {
    flex-direction: column;
    display: flex;
  }

  .dropdown-link {
    color: var(--navy);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .banner-slider {
    z-index: 0;
    justify-content: center;
    align-items: flex-start;
    height: 60vh;
    display: flex;
  }

  .content-section {
    margin-top: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .double-content-div {
    flex-direction: column;
    align-items: stretch;
  }

  .double-content-div.vtl {
    justify-content: space-between;
    align-items: center;
  }

  .double-content-div.vtl.z {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
  }

  .double-content-div._2 {
    flex-direction: column;
  }

  .h1.subtext {
    line-height: 32px;
  }

  .p.white {
    text-align: center;
  }

  .p._1 {
    padding-top: 30px;
    padding-bottom: 0;
  }

  .p.centre {
    margin-bottom: 0;
  }

  .p.left {
    text-align: center;
  }

  .p.left.white {
    margin-bottom: 0;
  }

  .h2.left {
    text-align: center;
  }

  .h2.white {
    margin-left: auto;
    margin-right: auto;
  }

  .list-white {
    padding-bottom: 30px;
    padding-left: 40px;
  }

  .button-div {
    align-items: center;
    width: 420px;
  }

  .button-left, .button-right {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .single-content-div {
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
  }

  .single-content-div.outline {
    width: 100%;
  }

  .single-content-div.outline._2 {
    margin-bottom: 30px;
  }

  .h3 {
    line-height: 26px;
  }

  .single-footer-div {
    width: 100%;
  }

  .footer-info-div {
    flex-direction: column;
  }

  .footer-heading.right {
    text-align: left;
    padding-top: 30px;
  }

  .footer-heading.centre {
    text-align: center;
  }

  .footer-list {
    padding-bottom: 30px;
  }

  .list-item {
    text-align: center;
  }

  ._1-3-content-div {
    flex-direction: column;
    width: 100%;
    display: flex;
  }

  ._1-3-content-div._1 {
    flex-direction: column;
    padding-top: 0;
  }

  .map-div {
    width: 100%;
    display: none;
  }

  .area-list {
    width: 100%;
    display: flex;
  }

  .menu-button {
    background-color: var(--navy);
    color: var(--black);
    text-align: center;
    width: 100%;
  }

  .menu-button:hover {
    background-color: var(--navy);
  }

  .menu-button:focus {
    background-color: #c9c913;
  }

  .menu-button.w--open {
    background-color: var(--navy);
    color: var(--black);
    position: static;
  }

  .b-master-menu-div-tablet {
    z-index: 5;
    justify-content: center;
    display: flex;
    position: relative;
  }

  .menu-button-2 {
    background-color: var(--navy);
    text-align: center;
    width: 100%;
  }

  .menu-button-2.w--open {
    background-color: var(--navy);
    color: var(--black);
  }

  .navbar-2 {
    color: var(--black);
    background-color: #f4f405;
  }

  .navbar-2:hover {
    background-color: #c9c913;
  }

  .footer-html {
    margin-bottom: 30px;
  }

  .services-toggle {
    background-color: var(--light-blue);
    color: var(--white);
    justify-content: flex-start;
  }

  .services-toggle:hover {
    background-color: var(--light-blue);
    justify-content: flex-start;
  }

  .services-toggle:focus {
    background-color: var(--light-blue);
    color: var(--white);
  }

  .services-toggle.w--open {
    background-color: var(--light-blue);
  }

  .services-toggle.w--open:focus {
    background-color: var(--light-blue);
    color: var(--white);
  }

  .mask {
    width: 100%;
  }

  .image {
    max-width: 390px;
  }

  .map-div-mobile {
    width: 100%;
    padding-top: 30px;
    display: block;
  }

  .contact-map {
    width: 100%;
  }

  .icon-2 {
    color: var(--white);
  }

  .services-menu-section {
    padding-top: 20px;
  }

  .services-nav-item {
    background-color: var(--black);
    color: var(--white);
    flex-direction: column;
    width: 100%;
    height: 80%;
    line-height: 10px;
  }

  .services-nav-item:focus {
    width: 100%;
  }

  .services-nav-item.w--current {
    background-color: var(--white);
    color: var(--black);
    width: 100%;
    height: 80%;
  }

  .blogs-menu-section {
    padding-top: 20px;
  }

  .services-toggle-link {
    width: 90%;
  }

  .services-toggle-link:hover {
    color: var(--black);
  }

  .dropdown-nav-item {
    background-color: var(--black);
    color: var(--white);
    flex-direction: column;
    width: 100%;
    height: 80%;
    line-height: 10px;
  }

  .dropdown-nav-item:focus {
    width: 100%;
  }

  .dropdown-nav-item.w--current {
    background-color: var(--white);
    color: var(--black);
    width: 100%;
    height: 80%;
  }

  .list._4 {
    flex-direction: column;
    align-items: center;
    padding-left: 20px;
    display: flex;
  }

  .list._4.big {
    padding-left: 40px;
  }

  .list-group.left {
    justify-content: center;
  }

  .single-image-div {
    width: 100%;
    min-height: 300px;
    max-height: 100%;
    margin-bottom: 30px;
  }

  .double-image-div {
    min-height: 300px;
  }

  .blog-toggle {
    background-color: var(--white);
    color: var(--slate);
  }

  .blog-toggle.w--open {
    flex-direction: column;
  }

  .image-2 {
    max-width: 390px;
  }

  .nav-link {
    color: var(--navy);
    text-align: left;
    justify-content: flex-start;
  }

  .nav-link:hover {
    color: var(--white);
  }

  .link-white.header, .link-white.header-2 {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 20px;
  }

  .nav-menu-2 {
    background-color: var(--smoke);
  }

  .dropdown:hover {
    color: var(--white);
  }

  .toggle-copy.w--open {
    flex-direction: column;
  }

  .menu-button-4 {
    text-align: center;
    width: 100%;
  }

  .menu-button-4.w--open {
    background-color: var(--light-blue);
  }

  .dropdown-list-3 {
    background-color: var(--smoke);
  }

  .menu-button-5 {
    text-align: center;
    width: 100%;
  }

  .menu-button-5.w--open {
    background-color: var(--light-blue);
  }

  .single-footer-div-mobile {
    width: 100%;
    display: block;
  }

  .single-footer-div-copy {
    width: 100%;
    display: none;
  }

  .dropdown-list-4 {
    background-color: var(--white);
  }

  .dropdown-list-4.w--open {
    background-color: var(--smoke);
  }

  .previous-work-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  ._2-img-div {
    min-height: 300px;
  }

  .image-51 {
    max-width: 600px;
  }

  .top-tel-link {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .logo-div-2 {
    justify-content: center;
    width: auto;
  }

  .tel-div {
    width: 100%;
  }

  .tel-icon {
    display: none;
  }

  .top-tel-no {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .top-contact-div {
    align-items: center;
    width: 100%;
    padding-top: 20px;
  }

  .text-block {
    padding-left: 20px;
  }

  .nav-menu-3 {
    color: #0000;
    background-color: #0658a2;
  }

  .dropdown-list-5.w--open {
    background-color: #0658a2;
  }

  .nav-link-2 {
    border-bottom-width: 0;
  }

  .nav-link-2:hover {
    background-color: #16255b;
  }

  .icon {
    display: block;
  }

  .nav-link-dropdown {
    text-align: center;
    background-color: #0658a2;
    padding-right: 15px;
  }

  .navbar-4 {
    width: 100%;
  }

  .dropdown-2 {
    background-color: #0658a2;
    width: 100%;
  }

  .nav-link-services-dropdown {
    background-color: #0658a2;
    border-bottom-width: 0;
    width: 100%;
  }

  .nav-link-services-dropdown:hover, .nav-link-services-dropdown.w--open {
    background-color: #16255b;
  }

  .menu-button-6 {
    color: #fff;
    text-align: center;
    width: 100%;
  }

  .menu-button-6.w--open {
    background-color: #16255b;
  }

  .slider-text-div {
    width: 90%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .slider-overlay-div {
    width: 100%;
  }

  .overlay-div {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  ._3-box-grid {
    grid-template-columns: 1fr;
    padding-bottom: 25px;
  }

  ._4-block-div {
    align-items: flex-end;
  }

  .box-2, .box-4, .box-3 {
    height: 400px;
  }

  .box-heading {
    font-size: 33px;
  }

  .contact-right-div {
    width: 100%;
  }

  .bottom-content-div {
    flex-direction: column;
    grid-template-columns: 1fr;
    width: 90%;
  }

  .contact-left-div {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
  }

  .bottom-section {
    padding-top: 60px;
    padding-bottom: 100px;
  }

  .whatsapp-block {
    display: flex;
  }

  ._50-width {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .header-div {
    flex-direction: column;
  }

  .contact-info-div {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .contact-info-div.left {
    flex-direction: column;
    align-items: center;
  }

  .contact-link {
    align-items: center;
    padding-bottom: 10px;
    font-size: 16px;
    line-height: 14px;
    display: flex;
  }

  .contact-link.footer {
    text-align: left;
  }

  .nav-item.w--current {
    height: 80%;
  }

  .banner-slider {
    height: 60vh;
  }

  .content-section {
    padding-top: 30px;
  }

  .double-content-div {
    flex-direction: column;
  }

  .h1 {
    padding-bottom: 10px;
    font-size: 28px;
    line-height: 40px;
  }

  .h1.subtext {
    line-height: 28px;
  }

  .h1-div, .list-white {
    padding-bottom: 0;
  }

  .button-div {
    padding-top: 0;
  }

  .single-content-div, .single-footer-div {
    width: 100%;
  }

  .footer-info-div {
    flex-direction: column;
  }

  .footer-heading.right {
    text-align: left;
    padding-top: 20px;
  }

  ._1-3-content-div._1 {
    width: 100%;
  }

  .map-div {
    display: none;
  }

  .contact-div {
    width: 100%;
  }

  .image {
    max-width: 400px;
    margin-top: 10px;
  }

  .map-div-mobile {
    display: block;
  }

  .services-nav-item.w--current {
    height: 80%;
  }

  .services-toggle-link {
    width: 87%;
  }

  .dropdown-nav-item.w--current {
    height: 80%;
  }

  .list._4, .list._4.big {
    width: 50%;
    padding-top: 0;
    padding-left: 0;
  }

  .list._4._0 {
    width: 100%;
  }

  .list-group {
    flex-direction: column;
  }

  .list-group.left {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 30px;
  }

  .single-image-div {
    width: 100%;
  }

  .double-image-div._2._50 {
    width: 100%;
    margin-bottom: 20px;
  }

  .single-footer-div-mobile, .single-footer-div-copy {
    width: 100%;
  }

  .previous-work-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .image-51 {
    max-width: 500px;
    margin-top: 10px;
  }

  .top-tel-link {
    font-size: 20px;
    line-height: 30px;
  }

  .logo-div-2 {
    width: 100%;
    padding-left: 89px;
  }

  .top-tel-no {
    flex-flow: row;
  }

  .menu-button-6 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .slider-heading {
    font-size: 35px;
    line-height: 41px;
  }

  .overlay-div {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  ._3-box-grid {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  ._4-boxes-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .terms-and-cons {
    border-color: #16255b;
  }

  .terms-and-cons:hover {
    background-color: #16255b;
  }

  .contact-right-div {
    width: 100%;
    margin-top: 40px;
  }

  .bottom-content-div {
    text-align: center;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .contact-left-div {
    align-items: center;
  }

  .bottom-section {
    padding-top: 40px;
    padding-bottom: 100px;
  }

  .fs-cc-banner_button {
    margin-left: 0;
    margin-right: 8px;
  }

  .fs-cc-prefs_title {
    font-size: 20px;
  }

  .fs-cc-banner_buttons-wrapper {
    margin-top: 12px;
  }

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .fs-cc-banner_text-link {
    margin-right: 8px;
  }

  .div-block-4 {
    flex-flow: column;
  }
}

@media screen and (max-width: 479px) {
  .logo-div {
    width: 90%;
  }

  .phone-number-div.centre {
    flex-flow: column;
  }

  .contact-link.footer {
    font-size: 17px;
  }

  .contact-link.centre {
    flex-flow: column;
  }

  .button {
    max-width: 280px;
  }

  .banner-slider {
    height: auto;
  }

  .slide-1 {
    height: 400px;
  }

  .double-content-div.vtl._1 {
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
  }

  .h1 {
    line-height: 29px;
  }

  .h1.subtext {
    line-height: 23px;
  }

  .h2.left, .h2.white {
    padding-bottom: 0;
  }

  .list-white {
    width: 80%;
    padding-bottom: 0;
    padding-left: 0;
  }

  .button-div {
    flex-direction: column;
    width: 90%;
    padding-top: 20px;
  }

  .button-left {
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
  }

  .button-right {
    width: 100%;
    font-size: 16px;
  }

  .h4.subtext {
    line-height: 22px;
  }

  .list-item {
    text-align: left;
  }

  .area-list {
    flex-direction: column;
    align-items: center;
  }

  .contact-div {
    width: 100%;
  }

  .b-master-menu-div-tablet {
    z-index: 2;
    position: relative;
  }

  .mask {
    height: 400px;
  }

  .image {
    max-width: 260px;
    height: auto;
  }

  .contact-map-html {
    display: none;
  }

  .services-toggle-link {
    width: 80%;
  }

  .list {
    padding-top: 0;
  }

  .list._4 {
    justify-content: flex-start;
    align-items: flex-start;
    width: 90%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    line-height: 18px;
  }

  .list._4.big {
    width: 90%;
    padding-top: 0;
    padding-left: 0;
  }

  .list._4._0 {
    margin-right: 0;
  }

  .list-group.left {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .double-image-div._2._50.a {
    margin-bottom: 0;
  }

  .image-2 {
    max-width: 260px;
  }

  .link-white.header {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    font-size: 16px;
  }

  .link-white.header-2 {
    text-align: center;
    margin-right: 0;
    font-size: 17px;
  }

  .slide-3, .slide-4, .slide-2 {
    height: 400px;
  }

  .previous-work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-map-html-mobile {
    display: block;
  }

  .mobiles-div {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  ._50pc-img._1 {
    width: 100%;
    min-height: 250px;
  }

  ._50pc-img._2 {
    width: 100%;
    height: 250px;
    margin-top: 20px;
  }

  ._2-img-div {
    flex-direction: column;
  }

  .image-51 {
    max-width: 250px;
    height: auto;
  }

  .white-link {
    font-size: 14px;
  }

  .top-tel-link {
    padding-bottom: 5px;
    font-size: 20px;
    line-height: 21px;
  }

  .logo-div-2 {
    align-items: center;
    width: 90%;
    padding-left: 0;
  }

  .tel-div {
    justify-content: center;
    width: 100%;
  }

  .need-help {
    margin-top: 5px;
  }

  .top-contact-div {
    align-items: center;
    width: 100%;
  }

  .master-header-section-2 {
    border-bottom-style: none;
    padding-top: 10px;
  }

  .slider-heading {
    text-align: center;
    font-size: 22px;
    line-height: 24px;
  }

  .slider-text-div {
    justify-content: center;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 30px 20px;
  }

  .button-link {
    display: none;
  }

  .slider-overlay-div {
    height: 100%;
  }

  .slider-small-text {
    text-align: center;
    width: 100%;
  }

  .overlay-div {
    padding-bottom: 30px;
  }

  ._3-box-grid {
    grid-row-gap: 20px;
    grid-template-rows: auto auto auto;
    padding-top: 20px;
  }

  .box-1, .box-2, .box-4 {
    width: 100%;
    height: 400px;
  }

  ._4-boxes-section {
    margin-top: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  ._4-boxes-section.no-bottom-padding {
    padding-top: 0;
  }

  .div-container {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
  }

  .box-3 {
    width: 100%;
    height: 400px;
  }

  .contact-right-div {
    width: 100%;
    margin-top: 30px;
  }

  .h2-white {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 40px;
  }

  .bottom-content-div {
    flex-direction: column;
  }

  .bottom-text {
    text-align: center;
    margin-right: 0;
  }

  .contact-left-div {
    align-items: center;
    width: 100%;
    margin-bottom: 0;
  }

  .bottom-section {
    padding-top: 30px;
    padding-bottom: 120px;
  }

  .heading-2, .heading-2.b {
    text-align: center;
  }

  .fs-cc-prefs_component {
    padding: 24px;
  }

  .fs-cc-banner_button {
    width: 100%;
    margin-bottom: 10px;
  }

  .fs-cc-manager_component {
    display: none;
  }

  .fs-cc-banner_close {
    position: absolute;
    inset: -22px 10px auto auto;
  }

  .fs-cc-prefs_button {
    margin-bottom: 8px;
  }

  .fs-cc-banner_buttons-wrapper {
    text-align: center;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
  }

  .fs-cc-banner_text {
    margin-right: 0;
  }

  .fs-cc-prefs_content {
    padding: 24px;
  }

  .whatsapp-block {
    margin-bottom: 40px;
    margin-right: 10px;
    inset: auto 0% 0% auto;
  }

  .live-icon {
    width: 12px;
    height: 13px;
  }

  .whatsapp-container {
    width: 65px;
    height: 65px;
    bottom: 10px;
    right: 0;
  }

  .whatsapp-chat {
    width: 280px;
    max-width: 280px;
    height: 40vh;
    position: relative;
  }

  .livechat-button {
    width: 90%;
  }

  .div-block-3 {
    flex-flow: row;
    inset: auto 0% 0% auto;
  }

  .slide-nav {
    background-color: var(--black);
    display: none;
  }

  .heading-3, .heading-4, .heading-5 {
    text-align: center;
  }
}

#w-node-a259830f-224d-a868-1e7f-9d3e7cd7c272-c7d2a3e5 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: center;
}

#w-node-_41f46379-8ef0-19de-b239-02447c092ecf-7c092ecd {
  justify-self: start;
}

#w-node-_41f46379-8ef0-19de-b239-02447c092ef0-7c092ecd {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_413b9200-bc7f-5388-0818-76af333aaba0-76d2a3f1, #w-node-_95c8f12e-4211-92c0-b863-835b3e608384-76d2a3f1, #w-node-fb4603f9-3c0a-31f6-00d6-54794dedff44-76d2a3f1, #w-node-eb7fc113-a7af-834c-3fa4-6b85accd9a88-76d2a3f1, #w-node-ca69c584-4686-7578-14d4-ac1f236d211c-76d2a3f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ea10842a-97ab-ce18-c7a0-318cd499d57f-4fb55147 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 991px) {
  #w-node-_41f46379-8ef0-19de-b239-02447c092ef0-7c092ecd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_10dfe26b-d22f-057f-69c1-25fe1af3d5dc-4fb55147, #w-node-_67c7d239-4eaa-0ee1-59e5-37a7dba408d5-4fb55147 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_41f46379-8ef0-19de-b239-02447c092ecf-7c092ecd {
    grid-area: span 2 / span 2 / span 2 / span 2;
    justify-self: start;
  }

  #w-node-_41f46379-8ef0-19de-b239-02447c092eec-7c092ecd, #w-node-_41f46379-8ef0-19de-b239-02447c092ef0-7c092ecd {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_41f46379-8ef0-19de-b239-02447c092ecf-7c092ecd {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }
}


@font-face {
  font-family: 'Brands 400';
  src: url('../fonts/Brands-Regular-400.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sharp Solid 900';
  src: url('../fonts/Sharp-Solid-900.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}