/* $font-heading: 'Noto Sans', sans-serif; */
html, body {
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
}

h1, h2, h3, h4 {
  font-family: Roboto;
  color: #01266c;
  line-height: 1rem;
}

h1 {
  font-size: 40px;
  font-weight: 700;
}

h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5rem;
}

p {
  margin-bottom: 30px;
  font-weight: 400;
}

@media (max-width: 998px) {
  p {
    font-size: 20px;
  }
}
.margin-tb {
  margin-top: 60px;
  margin-bottom: 60px;
}

.bg-grey {
  background: #f0f0f0;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

@media (1981px < width <= 10000px) {
  .container {
    max-width: 1500px;
  }
}
@media (1500px < width < 1980px) {
  .container {
    max-width: 80%;
  }
}
section.breadcrumbs {
  padding: 0;
  background: #f9f9f9;
  border-bottom: 1px solid #ddd;
}

ul.category-breadcrumbs {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: left;
}
ul.category-breadcrumbs li {
  display: inline-block;
}
ul.category-breadcrumbs li a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.03rem;
}
ul.category-breadcrumbs li:not(:last-child) {
  position: relative;
}
ul.category-breadcrumbs li:not(:last-child):before {
  content: ">";
  position: absolute;
  right: -18px;
  top: 3px;
  color: orange;
  font-size: 13px;
  font-weight: 300;
}

ul.ticklist li {
  position: relative;
  padding-left: 25px;
  display: block;
  margin-bottom: 10px;
  line-height: 1.3rem;
  text-align: left;
}
ul.ticklist li:before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 3px;
  background: #ccc;
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 1;
}
ul.ticklist li:after {
  content: "";
  width: 10px;
  height: 20px;
  border: 3px solid #01266c;
  border-width: 0 4px 4px 0;
  transform: rotate(35deg);
  position: absolute;
  top: 2px;
  left: 5px;
  z-index: 2;
}

ul.col-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  row-gap: 20px;
}

.header-sticky {
  position: fixed;
  width: 100%;
  background: #01266c;
  text-align: right;
  left: 0;
  top: -100px;
  z-index: 1000;
  transition: all 0.3s;
  transition-delay: 0.1s;
  display: none;
}
.header-sticky img {
  height: 30px;
  width: auto;
  padding: 3px 15px 8px 0;
}

.header-sticky.visible {
  top: 0;
}

.nav, div.body, .nav-toggle {
  transition: all 0.3s;
  transition-timing-function: ease-in-out;
}

.nav-toggle {
  transition-delay: 0.1s;
}

.nav {
  transition-delay: 0.2s;
}

div.body {
  transition-delay: 0.2s;
}

.nav-toggle {
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  background: #01266c;
  color: #fff;
  position: fixed;
  top: 5px;
  left: 0px;
  font-size: 14px;
  cursor: pointer;
  padding-top: 5px;
  z-index: 1;
}
.nav-toggle i {
  display: block;
  font-size: 20px;
  transition: all 0.3s;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
}
.nav-toggle span {
  transition: all 0.3s;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  font-size: 12px;
}

.nav-toggle.sticky {
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  background: #01266c;
  color: #fff;
  position: fixed;
  top: 20px;
  left: -60px;
  font-size: 12px;
  cursor: pointer;
  padding-top: 5px;
}
.nav-toggle.sticky i {
  display: block;
  font-size: 20px;
}
.nav-toggle.sticky span {
  position: relative;
  top: -2px;
}

.cf-red {
  color: #01266c;
}

.b {
  font-weight: bold;
}

.i {
  font-style: italic;
}

a {
  color: orange;
  text-decoration: none;
  font-weight: bold;
}

.link-alt {
  color: #fff;
  text-decoration: none;
  font-weight: normal;
}

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

.m-t-30 {
  margin-top: 30px;
}

section {
  padding: 60px 0px;
}

.reduced-top-padding-mob {
  padding-top: 40px;
}

@media (max-width: 1200px) {
  section {
    padding-left: 0;
    padding-right: 0;
  }
}
.section-no-padding {
  padding: 0;
}

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

section h2:first-child, h1:first-child {
  padding-top: 0;
  margin-top: 0;
}

.grey {
  background: #f9f9f9;
}

.bg-red {
  background: #01266c;
}

.bg-black {
  background: #379dac;
}

.bg-orange {
  background: orange;
}

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

@media (min-width: 1150px) {
  .mob-only {
    display: none;
  }
  .desk-only {
    display: block;
  }
}
.button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  background: #01266c;
  color: #fff;
  line-height: 20px;
  font-weight: 400;
  text-decoration: none;
}

.button-round {
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  background: #01266c;
  color: #fff;
  line-height: 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 15px;
}

.button-small {
  transform: scale(0.8);
}

.button-orange {
  color: #fff;
  background: orange;
}

.table {
  display: table;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

div.body {
  margin-left: 300px;
  overflow-y: hidden;
  padding-top: 1px;
  margin-top: -1px;
  margin-right: 0;
}

.topline {
  height: 3px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  background: #01266c;
  overflow-y: visible;
}

.top-location-tree {
  position: absolute;
  z-index: 999;
  top: 0;
  right: -20px;
  margin: 0;
  display: inline-block;
  text-align: right;
  background: #01266c;
  transform: skew(20deg);
  padding: 0 50px 0 50px;
}
.top-location-tree a, .top-location-tree img {
  transform: skew(-20deg);
}
.top-location-tree li {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  padding: 0;
  margin: 0 20px;
  font-weight: 500;
  transform: skew(-20deg);
}
.top-location-tree li a {
  color: #fff;
  text-decoration: none;
  font-weight: normal;
}

.skewed-bg {
  transform: skew(-10deg);
  transition: all 0.3s;
}
.skewed-bg span {
  transform: skew(10deg);
  display: inline-block;
}

.skewed-bg:hover {
  transform: skew(0deg);
}
.skewed-bg:hover span {
  transform: skew(0deg);
}

.strap {
  position: relative;
}
.strap img {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translatex(-320px);
}

.mob-nav {
  background: #01266c;
  height: 85px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  transform: translateY(-100px);
  opacity: 0;
  transition: all 0.2s;
}
.mob-nav a.nav-logo {
  display: block;
  position: absolute;
  left: 90px;
  padding-right: 15px;
  padding-top: 7px;
}
.mob-nav a.nav-logo img {
  height: 35px;
  width: auto;
}
.mob-nav a.mob-call {
  display: block;
  position: absolute;
  right: 25px;
  top: 13px;
  color: #fff;
}
.mob-nav .mob-nav-strap h2 {
  padding: 0 0 0 0px;
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  position: absolute;
  width: 100%;
  bottom: 5px;
  left: 0;
  text-align: center;
}

.mob-nav.homepage {
  height: 50px;
}
.mob-nav.homepage .mob-nav-strap {
  display: none;
}

.mob-nav.sticky {
  height: 50px;
}

/*
.mob-nav-strap {
		background: $cf-black;
		height: 30px;
		position: fixed;
		top:50px;
		left:0;

		width: 90%;
		z-index: 999998;

		transform: translateY(0);
		opacity: 1;
		transition: all 0.2s;
		transition-delay: 0.3s;
		clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);

		h2 {
			padding:0 0 0 20px;
			margin:0;
			color: #fff;
			font-size: 16px;
		}
}
*/
.mob-nav-strap h2 {
  padding: 0 0 0 20px;
  margin: 0;
  color: #fff;
  font-size: 16px;
}

.mob-nav-strap.hidden {
  transform: translateY(-100px);
}

@media (max-width: 1149px) {
  body.nav-closed .mob-nav {
    display: block;
    opacity: 1;
    transform: translateY(0px);
  }
  body.nav-closed .mob-nav-strap {
    display: block;
  }
}
@media (min-width: 1150px) {
  .mob-nav {
    display: none;
  }
  .mob-nav-strap {
    display: none !important;
  }
}
.nav {
  display: block;
  background: #379dac;
  width: 300px;
  position: fixed;
  z-index: 1000;
  left: 0;
  transform: translateX(0);
  top: 0;
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  /* width */
  border-bottom: 3px solid #379dac;
  padding-top: 60px;
  transition: all 0.2s ease-in-out;
  transition-delay: 0s;
  /* Track */
  /* Handle */
}
.nav ::-webkit-scrollbar {
  width: 8px;
}
.nav ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 8px;
}
.nav ::-webkit-scrollbar-thumb {
  background: #01266c;
  border-radius: 8px;
}
.nav .menu-close {
  color: #fff;
  font-size: 12px;
  padding: 3px 5px 3px 5px;
  display: inline-block;
  margin: 10px 0 0 20px;
  background: #01266c;
  position: fixed;
  cursor: pointer;
  top: 15px;
}
.nav .menu-close i {
  color: #fff;
}
.nav .nav-logo {
  position: absolute;
  right: 20px;
  top: 15px;
}
.nav .nav-logo img {
  width: 100px;
  transition: all 0.2s;
}
.nav ul {
  padding: 20px 0 0 40px;
}
.nav ul li a {
  color: #fff;
  text-decoration: none;
}
.nav ul.location-tree li {
  line-height: 1.1rem;
}
.nav ul.location-tree li a i {
  font-size: 12px;
  padding: 6px;
  background: #01266c;
  margin-right: 10px;
  margin-bottom: 3px;
}
.nav ul.location-tree li a {
  font-size: 14px;
}
.nav ul.ul-nav {
  max-height: none;
  overflow-y: auto;
  margin-top: 0;
  /* width */
  /* Track */
  /* Handle */
}
.nav ul.ul-nav li, .nav ul.ul-nav li a {
  transition: all 0.2s;
  font-size: 18px;
}
.nav ul.ul-nav li ul.subnav {
  padding: 0px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.1);
  margin-left: 15px;
  margin-right: 15px;
  height: 0;
  max-height: 0;
  overflow-Y: hidden;
}
.nav ul.ul-nav li ul.subnav li a {
  font-size: 16px;
}
.nav ul.ul-nav li.has-dropdown.active > ul.subnav {
  height: auto;
  max-height: none;
  padding: 10px;
}
.nav ul.ul-nav li.nav-contact {
  margin-top: 20px;
}
.nav ul.ul-nav ::-webkit-scrollbar {
  width: 20px;
}
.nav ul.ul-nav ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}
.nav ul.ul-nav ::-webkit-scrollbar-thumb {
  background: red;
  border-radius: 10px;
}

.nav-shade {
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.1s;
  transition-delay: 0.1s;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  z-index: -1000;
}

.nav:before {
  content: "";
  color: #fff;
  width: 40px;
  height: 40px;
  display: block;
  background: #01266c;
  position: absolute;
  transform: rotate(-45deg);
  top: -20px;
  right: -20px;
  z-index: 10;
}

body.nav-closed .nav {
  transform: translatex(-300px);
  transition-delay: 0.2s;
}

body.nav-closed div.body {
  transition-delay: 0.1s;
}

body.nav-closed div.body {
  margin-left: 0;
  margin-right: 0;
}

body.nav-closed .nav-toggle {
  left: 15px;
  transition-delay: 0.1s;
}

body.nav-closed .nav-toggle.sticky {
  left: 0px;
  transition-delay: 0.1s;
}

body.nav-closed .header-sticky {
  transition-delay: 0.1s;
}

body:not(.nav-closed) div.body {
  margin-right: -300px;
}

body:not(.nav-closed) .header-sticky {
  left: 300px;
}

body:not(.nav-closed) .nav-shade {
  z-index: 999;
  opacity: 1;
}

@media (min-width: 1200px) {
  body {
    margin-top: 80px;
  }
  .nav {
    background: #01266c;
    width: 100%;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    height: 80px;
    overflow: visible;
    padding-top: 0;
  }
  .nav .container {
    position: relative;
  }
  .nav .nav-inner {
    max-width: 80%;
    margin: 0 auto;
    overflow: visible;
    padding: 0 15px;
  }
  .nav .menu-close {
    display: none;
  }
  .nav .nav-logo {
    display: inline-block;
    float: left;
    position: static;
    margin: 15px 0 0 0px;
  }
  .nav .nav-logo img {
    height: 50px;
    width: auto;
  }
  .nav ul.ul-nav {
    float: right;
    padding: 0;
    margin: 0;
    overflow: visible;
    max-height: none;
  }
  .nav ul.ul-nav li {
    display: inline-block;
    margin: 0 10px;
    height: 80px;
    overflow: visible;
  }
  .nav ul.ul-nav li a:not(.button-round) {
    color: #fff;
    display: inline-block;
    line-height: 80px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 0px 10px;
  }
  .nav ul.ul-nav li ul {
    background: #379dac;
  }
  .nav ul.ul-nav li:not(.nav-contact):hover {
    background: #379dac;
  }
  .nav ul.location-tree {
    display: none;
  }
  .nav ul.subnav {
    column-count: 4;
    position: absolute;
    top: 78px;
    z-index: 999999;
    left: -20000px;
    padding: 40px 0 50px 20px !important;
    background: #379dac !important;
    width: 100%;
    border-radius: 0 0 15px 15px !important;
    opacity: 0;
    transition: opacity 0.3s;
    transition: display 1s;
    transition-behavior: allow-discrete;
  }
  .nav ul.subnav li {
    margin: 0 0 10px 0;
    display: block;
    height: auto;
  }
  .nav ul.subnav li a {
    margin-top: 0;
    line-height: 1rem !important;
  }
  .nav-shade {
    display: none;
  }
  .nav:before {
    display: none;
  }
  body.nav-closed .nav {
    transform: translateX(0);
  }
  body.nav-closed div.body {
    transition-delay: 0.1s;
  }
  body.nav-closed div.body {
    margin-left: 0;
    margin-right: 0;
  }
  body.nav-closed .nav-toggle {
    display: none;
  }
  body.nav-closed .nav-toggle.sticky {
    display: none;
  }
  body.nav-closed .header-sticky {
    transition-delay: 0.1s;
  }
  body:not(.nav-closed) div.body {
    margin-right: 0;
  }
  body:not(.nav-closed) .header-sticky {
    left: 0;
  }
  body:not(.nav-closed) .nav-shade {
    opacity: 0;
  }
  .topline {
    background: #379dac;
  }
  .top-location-tree {
    background: #379dac;
  }
  .nav.sticky {
    height: 50px;
  }
  .nav.sticky .nav-logo {
    display: inline-block;
    float: left;
    margin: 10px 0 0 0px;
  }
  .nav.sticky .nav-logo img {
    height: 30px;
    width: auto;
  }
  .nav.sticky ul.ul-nav li {
    display: inline-block;
    margin: 0 10px;
    height: 50px;
    overflow: visible;
  }
  .nav.sticky ul.ul-nav li a:not(.button-round) {
    color: #fff;
    display: inline-block;
    line-height: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 0px 10px;
  }
  .nav.sticky ul.ul-nav li ul.subnav {
    top: 50px;
  }
  .nav.sticky ul.ul-nav li ul.subnav li {
    display: block;
    height: auto;
    margin: 0;
  }
  .nav.sticky ul.location-tree {
    display: none;
  }
  .nav ul.ul-nav li:has(ul.subnav) {
    cursor: pointer;
  }
  .nav ul.ul-nav li.has-dropdown.active > ul.subnav {
    left: -28px;
    opacity: 1;
  }
  mob-nav {
    display: none;
  }
}
.welcome {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow-y: hidden;
  padding: 50px 20px 60px 40px;
  height: 100vh;
  position: relative;
}
.welcome .container {
  position: relative;
  z-index: 1;
}
.welcome .welcome-text {
  color: #fff;
  width: 100%;
  padding: 30px;
  text-align: center;
}
.welcome .welcome-text .top-logo {
  background: rgba(255, 255, 255, 0.5);
  padding: 15px;
  display: inline-block;
}
.welcome .welcome-text p:nth-child(2) {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 500;
}
.welcome .welcome-text p:nth-child(2) span {
  font-family: "Roboto", sans-serif;
  display: inline-block;
  color: #01266c;
}
.welcome .welcome-text h1 {
  display: table;
  width: 900px;
  background: rgba(0, 0, 0, 0.1);
  background: #01266c;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2.5rem;
  font-family: "Roboto", sans-serif;
  padding: 15px;
  margin-top: 150px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}
.welcome .welcome-text h2 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3rem;
  font-family: "Roboto", sans-serif;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  display: table;
  padding: 15px;
  margin-left: auto;
  margin-right: auto;
}
.welcome .welcome-text span {
  display: block;
}
.welcome .welcome-text .button {
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .welcome {
    background-repeat: no-repeat;
    background-size: cover;
    overflow-y: hidden;
    padding: 50px 20px 60px 40px;
    height: 100vh;
    position: relative;
  }
  .welcome .container {
    position: relative;
    z-index: 1;
  }
  .welcome .welcome-text {
    color: #fff;
    width: 900px;
    padding: 30px;
    text-align: center;
    margin: 0 auto;
    position: relative;
  }
  .welcome .welcome-text img {
    left: 580px;
  }
  .welcome .welcome-text .top-logo {
    background: rgba(255, 255, 255, 0.5);
    padding: 15px;
    display: inline-block;
  }
  .welcome .welcome-text p:nth-child(2) {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 500;
  }
  .welcome .welcome-text p:nth-child(2) span {
    font-family: "Roboto", sans-serif;
    display: inline-block;
    color: #01266c;
  }
  .welcome .welcome-text h1 {
    display: table;
    width: auto;
    background: rgba(0, 0, 0, 0.1);
    background: #01266c;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 2.5rem;
    font-family: "Roboto", sans-serif;
    padding: 15px;
    margin-top: 150px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
  }
  .welcome .welcome-text h2 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.3rem;
    font-family: "Roboto", sans-serif;
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    display: table;
    padding: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  .welcome .welcome-text span {
    display: block;
  }
  .welcome .welcome-text .button {
    margin-bottom: 10px;
  }
}
@media (max-width: 990px) {
  .welcome {
    padding: 50px 20px 60px 40px;
  }
  .welcome .welcome-text {
    color: #fff;
    width: 600px;
    padding: 30px;
    text-align: center;
    margin: 0 auto;
    position: relative;
  }
  .welcome .welcome-text img {
    left: 440px;
  }
  .welcome .welcome-text h1 {
    display: table;
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .welcome-thanks {
    display: none;
  }
  .welcome .welcome-text {
    color: #fff;
    width: 100%;
    padding: 30px;
    text-align: center;
    margin: 0 auto;
    position: relative;
  }
  .welcome .welcome-text img {
    left: 440px;
    width: 200px;
  }
  .welcome .welcome-text h1 {
    display: table;
    font-size: 1.5rem;
  }
  .welcome .contact-buttons {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 480px) {
  .top-location-tree {
    display: none;
  }
  section {
    padding-left: 0;
    padding-right: 0;
  }
  section.welcome {
    padding-left: 15px;
    padding-right: 15px;
  }
  body.nav-closed .nav-toggle {
    left: 15px;
  }
  .header-sticky {
    display: block;
  }
  section.welcome .welcome-text h1 {
    font-size: 45px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.5);
    color: #01266c;
    line-height: 55px;
    margin-top: 90px;
  }
  section.welcome .welcome-text .top-logo {
    display: none;
  }
  section.welcome .welcome-text img.logo-strap {
    width: 150px;
    top: -30px;
    left: 50%;
    transform: translatex(-50%);
  }
  .top-logo {
    width: 150px;
    height: auto;
  }
  body.nav-closed {
    margin-top: 0;
  }
  body.nav-closed .nav-toggle.sticky {
    margin-top: 0;
    display: block;
    width: 100px;
    height: auto;
    text-align: left;
    background: none;
    top: -3px;
    left: 15px !important;
    font-size: 14px;
    cursor: pointer;
    padding-top: 5px;
    z-index: 1001;
    transition: all 0.3s;
  }
  body.nav-closed .nav-toggle.sticky i {
    display: inline-block;
    font-size: 20px;
    padding-top: 3px;
    transition: all 0.3s;
  }
  body.nav-closed .nav-toggle.sticky span {
    position: relative;
    top: -2px;
    transition: all 0.3s;
  }
  .nav-toggle {
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    background: #01266c;
    color: #fff;
    position: fixed;
    left: -60px;
    font-size: 10px;
    cursor: pointer;
    padding-top: 5px;
    z-index: 10;
  }
  .nav-toggle i {
    display: block;
    font-size: 20px;
    transition: all 0.3s;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
  }
  .nav-toggle span {
    transition: all 0.3s;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
  }
}
section.quote {
  padding: 60px 20px;
  text-align: center;
}
section.quote p {
  color: #fff;
  text-align: center;
  font-style: italic;
  font-size: 30px;
  display: inline-block;
  margin: 0 auto;
  position: relative;
}
section.quote p:before {
  content: '"';
  font-size: 100px;
  position: absolute;
  left: -55px;
  top: 0px;
}
section.quote p:after {
  content: '"';
  font-size: 100px;
  position: absolute;
  right: -30px;
  bottom: 0px;
}
section.quote p span {
  display: block;
  text-align: right;
  font-size: 20px;
  font-weight: bold;
  margin-right: 50px;
}

section.footer {
  text-align: center;
  font-size: 18px;
  color: #fff;
  overflow-x: hidden;
  background: #379dac;
  padding: 30px 0 0 0;
}
section.footer a {
  color: #01266c;
  text-decoration: none;
  font-weight: normal;
  text-decoration: none;
}
section.footer .inner {
  position: relative;
  padding: 60px 15px;
  font-size: 14px;
}
section.footer .inner img {
  width: 150px;
  margin-bottom: 0px;
}
section.footer .inner p {
  font-size: 18px;
}
section.footer .inner p.copyright {
  margin-top: 50px;
}
section.footer .inner a {
  color: #fff;
}

.section-split {
  display: grid;
}

.section-split-70-30 {
  grid-template-columns: [left] 70% [right] 30%;
}
.section-split-70-30 .split-left {
  padding: 0 20px 0 0;
}
.section-split-70-30 .split-right {
  padding: 0 0 0 20px;
}

.section-split-50-50 {
  grid-template-columns: [left] 50% [right] 50%;
}
.section-split-50-50 .split-left {
  padding: 0 20px 0 0;
}
.section-split-50-50 .split-right {
  padding: 0 0 0 20px;
}

.section-split-30-70 {
  grid-template-columns: [left] 30% [right] 70%;
}
.section-split-30-70 .split-left {
  padding: 0 20px 0 0;
}
.section-split-30-70 .split-right {
  padding: 0 0 0 20px;
}

@media (max-width: 998px) {
  .section-split {
    display: block;
    text-align: center;
  }
  .split-left, .split-right {
    padding: 0;
  }
}
.card {
  padding: 40px 0 40px 20px;
  position: relative;
}
.card h2 {
  font-size: 30px;
  line-height: 40px;
  margin-top: 20px;
  font-weight: 500;
}
.card p {
  font-size: 18px;
}
.card .card-inner {
  background: #fff;
  padding: 60px 20px 60px 40px;
}
.card .card-inner h1, .card .card-inner h2, .card .card-inner h3, .card .card-inner h4, .card .card-inner h5, .card .card-inner h6, .card .card-inner p {
  color: #379dac;
}
.card .card-inner a {
  color: #379dac;
}

.card-poly {
  padding: 40px 0 40px 20px;
  position: relative;
  clip-path: polygon(0 9%, 100% 0, 100% 100%, 0 91%);
}
.card-poly h2 {
  font-size: 30px;
  line-height: 40px;
  margin-top: 20px;
  font-weight: 500;
}
.card-poly p {
  font-size: 18px;
}
.card-poly .card-inner {
  background: #fff;
  padding: 60px 20px 60px 40px;
  clip-path: polygon(0 9%, 100% 0, 100% 100%, 0 91%);
}
.card-poly .card-inner h1, .card-poly .card-inner h2, .card-poly .card-inner h3, .card-poly .card-inner h4, .card-poly .card-inner h5, .card-poly .card-inner h6, .card-poly .card-inner p {
  color: #379dac;
}
.card-poly .card-inner a {
  color: #379dac;
}

.card-red {
  background: #01266c;
}

.card-black .card-inner {
  background: #379dac;
  color: #fff;
}
.card-black .card-inner h1, .card-black .card-inner h2, .card-black .card-inner h3, .card-black .card-inner h4, .card-black .card-inner h5, .card-black .card-inner h6, .card-black .card-inner p {
  color: #fff;
}

.card-grey .card-inner {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-width: 1px 1px 1px 0;
  position: relative;
  padding-left: 30px;
  color: #000;
}
.card-grey .card-inner h1, .card-grey .card-inner h2, .card-grey .card-inner h3, .card-grey .card-inner h4, .card-grey .card-inner h5, .card-grey .card-inner h6, .card-grey .card-inner p {
  color: #000 !important;
}
.card-grey .card-inner p {
  line-height: 1.5em;
}

.card-tertiary {
  background: #9b9a7c;
}
.card-tertiary h1, .card-tertiary h2, .card-tertiary h3, .card-tertiary h4, .card-tertiary h5, .card-tertiary h6, .card-tertiary p {
  color: #fff;
}

.section-negative {
  background: #379dac;
  color: #fff;
}
.section-negative h1, .section-negative h2, .section-negative h3, .section-negative h4, .section-negative h5, .section-negative h6 {
  color: #fff;
}
.section-negative p {
  color: #ddd;
}

.float-box {
  float: right;
  width: 350px;
  height: auto;
  margin: 0 0 50px 50px;
  background: #379dac;
  color: #fff;
  padding: 30px;
}
.float-box h2 {
  font-size: 30px;
  line-height: 1.2em;
}
.float-box h3 {
  font-size: 23px;
  line-height: 1.2em;
  margin-top: 0;
  font-weight: bold;
}
.float-box p {
  font-size: 0.9em;
  line-height: 1.5em;
}

section.home-about {
  text-align: center;
}
section.home-about h3 {
  margin-bottom: 1.5rem;
}
section.home-about p {
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 30px;
}
section.home-about .col-layout {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  flex-wrap: wrap;
}
section.home-about .work-group {
  margin: 30px 0;
  width: 30%;
  background: #f9f9f9;
  padding: 0 15px 30px 15px;
  position: relative;
  overflow: hidden;
}
section.home-about .work-group span {
  display: block;
  padding: 15px;
  position: relative;
  margin-bottom: 20px;
}
section.home-about .work-group span h2 {
  color: #379dac;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5em;
}
section.home-about .work-group span h2 a {
  color: #379dac;
  text-decoration: none;
}
section.home-about .work-group span h2 a i {
  color: #01266c;
  font-size: 20px;
}

section.home-intro h2 {
  font-size: 40px;
  font-weight: 800;
  color: #01266c;
  line-height: 2.5rem;
  font-family: roboto;
  padding-top: 20px;
  margin-top: 0;
  margin-bottom: 40px;
}
section.home-intro div.thanks {
  font-size: 18px;
  margin: 0;
}
section.home-intro h3 {
  color: #01266c;
  font-size: 30px;
  font-weight: 600;
}

section.home-why .split-left img {
  display: none;
}
section.home-why img {
  border-radius: 10px;
}

@media (max-width: 998px) {
  section.home-why .section-split {
    display: block;
    text-align: center;
  }
  section.home-why .split-left img {
    display: block;
    margin: 20px auto 0 auto;
  }
  section.home-why .split-left {
    display: block;
  }
  section.home-why .split-right {
    display: none;
  }
  section.home-why ul li {
    text-align: left;
    line-height: 1.2rem;
    margin-bottom: 15px;
  }
  section.home-why ul li a {
    line-height: 1.2rem;
  }
}
.area-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
  margin: 0 auto;
  padding: 60px 0 30px 0;
}
.area-list .area-list-item {
  text-align: center;
  width: 180px;
}
.area-list .area-list-item span {
  display: block;
}
.area-list .area-list-item img {
  border-radius: 10px;
  width: 100%;
}

.service-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  row-gap: 30px;
  margin: 0 auto;
  padding: 60px 0 30px 0;
}
.service-list .service-list-item {
  width: 90%;
  -webkit-box-shadow: 0px 3px 7px 0px rgba(92, 92, 92, 0.52);
  box-shadow: 0px 3px 7px 0px rgba(92, 92, 92, 0.52);
  border-radius: 0 0 15px 15px;
  transition: all 0.3s;
  border-radius: 15px;
}
.service-list .service-list-item a .image-container {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center center;
  border-radius: 15px 15px 0 0;
}
.service-list .service-list-item a span {
  display: flex;
  align-items: center;
  color: #01266c;
  font-size: 18px;
  background: #fff;
  color: #01266c;
  display: block;
  padding: 15px 5px 15px 5px;
  position: relative;
  border-radius: 0 0 15px 15px;
  text-align: center;
}
.service-list .service-list-item a span h3 {
  color: #01266c;
  font-size: 18px;
  padding: 0;
  margin: 0;
}

@media (min-width: 500px) {
  .service-list {
    justify-content: space-between;
    gap: 20px;
    row-gap: 30px;
  }
  .service-list .service-list-item {
    width: 45%;
  }
}
@media (min-width: 1000px) {
  .service-list {
    justify-content: space-between;
    gap: 50px;
    margin: 0 auto;
    padding: 60px 0 30px 0;
  }
  .service-list .service-list-item {
    width: 20%;
    -webkit-box-shadow: 0px 3px 7px 0px rgba(92, 92, 92, 0.52);
    box-shadow: 0px 3px 7px 0px rgba(92, 92, 92, 0.52);
    border-radius: 0 0 15px 15px;
    transition: all 0.3s;
    border-radius: 15px;
  }
  .service-list .service-list-item a .image-container {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center center;
    border-radius: 15px 15px 0 0;
  }
  .service-list .service-list-item a span {
    display: flex;
    align-items: center;
    color: #01266c;
    font-size: 18px;
    background: #fff;
    color: #01266c;
    display: block;
    padding: 15px 5px 15px 5px;
    position: relative;
    border-radius: 0 0 15px 15px;
    text-align: center;
  }
  .service-list .service-list-item a span h3 {
    color: #01266c;
    font-size: 18px;
    padding: 0;
    margin: 0;
  }
}
.service-box {
  width: 45%;
  display: flex;
}
.service-box .img {
  width: 60%;
  padding-right: 30px;
}
.service-box .img img {
  border-radius: 10px;
}
.service-box .text {
  width: 40%;
}
.service-box .text h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-bottom: 0;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3rem;
}
.service-box .text .services-home {
  margin-top: 0;
}
.service-box .text .services-home a {
  text-decoration: none;
}
.service-box .text .services-home li {
  line-height: 1rem;
  padding: 7px 0;
}
.service-box .text .services-home li a {
  line-height: 1.2rem !important;
}
.service-box .text .services-home li.more {
  padding-top: 15px;
}
.image-caption, .area-image-outer {
  position: relative;
}
.image-caption div.caption, .area-image-outer div.caption {
  font-size: 14px;
  text-align: center;
}

.area-description {
  display: block;
}
.area-description .text {
  width: 100%;
}
.area-description .image {
  width: 100%;
}
.area-description .image .area-image-outer {
  position: relative;
}
.area-description .image .area-image-outer div.caption {
  font-size: 14px;
  text-align: center;
}

@media (min-width: 600px) {
  .area-description .image {
    text-align: center;
  }
  .area-description .image .area-image-outer {
    width: 70%;
    margin: 0 auto;
  }
}
@media (min-width: 900px) {
  .area-description {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .area-description .text {
    width: 70%;
  }
  .area-description .image {
    width: 25%;
  }
  .area-description .image .area-image-outer {
    position: relative;
    width: 100%;
  }
  .area-description .image .area-image-outer div.caption {
    font-size: 14px;
    text-align: center;
  }
}
.area-services {
  background: #f9f9f9;
}
.area-services .service-display h2 {
  margin-bottom: 40px;
}
.area-services .service-box {
  width: 100%;
  display: flex;
}
.area-services .service-box:first-child {
  margin-top: 40px;
}
.area-services .service-box .img {
  width: 150px;
  padding-right: 30px;
}
.area-services .service-box .img img {
  border-radius: 10px;
}
.area-services .service-box .text {
  width: calc(100% - 150px);
}

.card-related-services ul, .card-other-areas ul {
  columns: 2;
}

@media (max-width: 999px) {
  .services-home {
    padding-left: 0;
    padding-right: 0;
  }
  .service-list {
    max-width: none;
    width: 100%;
  }
  .service-box {
    width: 60%;
    justify-content: center;
  }
  .service-box .img {
    padding-right: 15px;
    width: 50%;
  }
  .service-box .text {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .services-home {
    padding-left: 0;
    padding-right: 0;
  }
  .service-list {
    max-width: none;
    width: 100%;
  }
  .service-box {
    width: 100%;
    justify-content: center;
  }
  .service-box .img {
    padding-right: 15px;
    width: 30%;
  }
  .service-box .text {
    width: 70%;
  }
  .service-box .text h3 {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .service-box .text a {
    font-weight: 400;
    font-size: 20px;
  }
  .service-box .text .services-home li {
    line-height: 20px;
    padding: 0;
  }
}
.contact-page-icons {
  margin-bottom: 30px;
}
.contact-page-icons i {
  color: #666;
  padding-right: 15px;
  padding-bottom: 10px;
}

.mob-contact-form-link {
  display: none;
}

@media (max-width: 768px) {
  .contact-page-icons {
    display: none;
  }
  .mob-contact-form-link {
    display: block;
    margin-top: 10px;
    display: block;
    width: 280px;
  }
  .mob-contact-form-link i {
    color: #fff;
  }
}
.operating-hours li {
  font-size: 0.8rem;
}
.operating-hours li span {
  font-weight: 700;
}
.operating-hours li span.weekend {
  color: crimson;
}

section.top-cta {
  background: #01266c;
  paddng: 0 60px;
}
section.top-cta .container {
  text-align: center;
}
section.top-cta .container h2 {
  color: #fff;
}
section.top-cta .container p {
  color: #fff;
}

section.home-areas {
  background: #f9f9f9;
}
section.home-areas img {
  border-radius: 10px;
}

.link-list li a {
  text-decoration: none;
}

.area-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.split-img {
  margin: 0 auto;
  display: block;
  max-width: 700px;
  width: 100%;
}

@media (max-width: 768px) {
  section.home-areas .split-left {
    display: none;
  }
  section.home-areas .split-right {
    padding-left: 0;
  }
  section.home-areas .split-right .area-list {
    padding: 0;
  }
  section.home-areas .section-split {
    display: block;
  }
}
.list-checkbox {
  position: relative;
  display: inline-block;
}
.list-checkbox i {
  font-weight: 900;
  padding-right: 10px;
  z-index: 10;
  color: #01266c;
  font-size: 25px;
}
.list-checkbox:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border: 4px solid orange;
  position: absolute !important;
  left: 0;
  top: 6px;
  z-index: -1;
}

.work-examples {
  background: #f9f9f9;
}
.work-examples img {
  border-radius: 10px;
}
.work-examples .work-examples-container button {
  display: none;
}
.work-examples .work-examples-container .inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.work-examples .work-examples-container .work-example {
  width: 30%;
}
.work-examples .work-examples-container .work-example h3 {
  font-size: 25px;
  font-weight: 600;
}
.work-examples .work-examples-container .work-example p span {
  display: block;
  font-size: 13px;
  line-height: 13px;
  color: #01266c;
  font-weight: 400;
}
.work-examples .work-examples-container .work-example p.ex--location {
  color: #01266c;
  font-size: 18px;
  font-weight: 600;
}
.work-examples .work-examples-container .work-example p.ex--description {
  font-size: 0.9rem;
  line-height: 1.4rem;
}
.work-examples .container .scroll-btn {
  display: none;
}

.work-examples.work-examples-page {
  background: #fff;
  padding-top: 40px;
}

@media (max-width: 1280px) {
  .work-examples-container {
    justify-content: space-between;
  }
}
@media (max-width: 998px) {
  .work-examples .container {
    position: relative;
  }
  .work-examples .container .scroll-btn {
    display: block;
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  .work-examples .container .scroll-btn i {
    color: #01266c;
  }
  .work-examples .container .left-btn {
    left: 10px;
  }
  .work-examples .container .right-btn {
    right: 10px;
  }
  .work-examples .work-examples-container {
    display: block;
    overflow-x: scroll;
    webkit-overflow-scrolling: touch;
    width: 100%;
  }
  .work-examples .work-examples-container .inner {
    white-space: nowrap;
    display: block;
  }
  .work-examples .work-examples-container .work-example {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding-bottom: 60px;
    white-space: wrap;
    margin-right: 40px;
  }
  .work-examples .work-examples-container .work-example h3 {
    font-size: 25px;
    font-weight: 600;
  }
  .work-examples .work-examples-container .work-example p span {
    display: block;
    font-size: 13px;
    line-height: 13px;
    color: #01266c;
  }
}
.home-faq, .service-faq {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.home-faq .cover, .service-faq .cover {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 0;
  left: 0;
  top: 0;
}
.home-faq .container, .service-faq .container {
  position: relative;
  z-index: 1;
}

.faq-container {
  text-align: left;
}
.faq-container ul li.question, .faq-container ul li.answer {
  line-height: 1.3rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.faq-container ul li.question b, .faq-container ul li.answer b {
  background: #01266c;
  color: #fff;
  border-radius: 5px;
  font-weight: 700;
  padding: 3px;
  margin-right: 10px;
}
.faq-container ul li.question h3, .faq-container ul li.answer h3 {
  font-size: 18px;
  font-weight: 800;
  margin-top: 5px;
}
.faq-container ul li.question {
  margin-bottom: 5px;
}
.faq-container ul li.answer {
  margin-bottom: 40px;
}
.faq-container ul li.answer b {
  background: orange;
}
.faq-container ul li.answer span {
  line-height: 1.3rem;
  font-size: 18px;
  padding-top: 5px;
}

.service-faq .container .border {
  border: 5px solid #01266c;
  display: block;
  border-radius: 15px;
  text-align: center;
  padding: 30px;
}

.home-contact {
  background: #01266c;
}
.home-contact h2, .home-contact p {
  color: #fff;
}

.contact-buttons {
  text-align: center;
}
.contact-buttons a {
  display: inline-block;
  margin: 0 10px 10px 10px;
  padding: 0px 10px;
  height: 45px;
  line-height: 45px;
  color: #fff;
  border-radius: 15px;
  text-decoration: none;
  vertical-align: top;
}
.contact-buttons a i {
  color: #fff;
}
.contact-buttons a.whatsapp {
  padding: 0;
  border-radius: 0;
}
.contact-buttons a.whatsapp img {
  height: 45px;
  width: auto;
}
.contact-buttons a.email {
  background: orange;
}
.contact-buttons a.call {
  background: purple;
}
.contact-buttons a.sms {
  background: #000;
}
.contact-buttons a.contact-form {
  background: skyblue;
}

.contact-buttons.contact-page-buttons a {
  margin: 0 auto 10px auto;
  display: block;
  width: 200px;
  text-align: center;
}

.google-map {
  padding-top: 60px;
}
.google-map iframe {
  width: 100% !important;
  height: 500px;
}

@media (min-width: 1000px) {
  .contact-buttons.contact-page-buttons {
    text-align: left;
  }
  .contact-buttons.contact-page-buttons a {
    margin: 0 0 10px 0;
    display: block;
    width: 200px;
    text-align: center;
  }
}
.home-reviews {
  background: #25d366;
}
.home-reviews h2, .home-reviews h3, .home-reviews p, .home-reviews div {
  color: #fff;
}

.reviews-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.reviews-container .review {
  width: 23%;
  padding: 30px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.2);
}
.reviews-container .review div.comment {
  font-weight: 300;
  font-style: italic;
  position: relative;
  padding-left: 10px;
}
.reviews-container .review div.comment:before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 200px;
  position: absolute;
  top: -50px;
  left: -25px;
  opacity: 0.3;
}
.reviews-container .review div.author {
  font-size: 0.8rem;
  font-weight: 700;
  padding-top: 15px;
}

@media (max-width: 1280px) {
  .reviews-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-around;
  }
  .reviews-container .review {
    width: 45%;
  }
}
@media (max-width: 600px) {
  .reviews-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-around;
  }
  .reviews-container .review {
    width: 100%;
  }
}
section.page-title {
  background: #f0f0f0;
  padding: 0;
  border-bottom: 3px solid #ddd;
}
section.page-title .container {
  text-align: center;
  position: relative;
}
section.page-title .container div.h1-outer {
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  bottom: 0;
  padding: 30px 50px;
  position: absolute;
  transform: translateX(-50%);
}

section.gen-header-img {
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-attachment: local;
  position: relative;
  padding: 170px 0 100px 0;
  border-bottom: 1px solid #ddd;
}
section.gen-header-img h1 {
  font-size: 55px;
  padding-bottom: 20px;
}
section.gen-header-img .strap {
  font-size: 20px;
}
section.gen-header-img:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  background: rgba(255, 255, 255, 0.5);
}
section.gen-header-img span {
  position: relative;
  z-index: 10;
}

@media (min-width: 1200px) {
  section.gen-header-img {
    padding: 100px 0;
  }
}
@media (max-width: 500px) {
  section.gen-header-img h1 {
    font-size: 40px;
    line-height: 1.6rem;
  }
}
div.two-col {
  display: flex;
  flex-direction: col-reverse;
  gap: 30px;
  flex-wrap: wrap;
}
div.two-col .left, div.two-col .right {
  width: 100%;
}

@media (max-width: 998px) {
  div.two-col.mob-reverse .left {
    order: 2;
  }
  div.two-col.mob-reverse .right {
    order: 1;
  }
}
@media (min-width: 999px) {
  div.two-col {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
  }
  div.two-col .left, div.two-col .right {
    width: 45%;
  }
  div.two-col.desk-reverse .left {
    order: 2;
  }
  div.two-col.desk-reverse .right {
    order: 1;
  }
}
.work-example-back-link {
  font-size: 18px;
  padding: 0;
  margin: 0;
  display: inline-block;
  padding-top: 25px;
}

.work-example {
  padding-top: 40px;
}
.work-example .work-example-strap {
  font-size: 18px;
  padding-bottom: 10px;
  font-style: italic;
}
.work-example h1 {
  margin-top: 10px;
}
.work-example h3 {
  font-size: 24px;
  font-weight: 600;
}
.work-example h3 span {
  font-weight: 400;
}
.work-example h3.job-details-title {
  margin-top: 0;
}

.work-gallery {
  display: flex;
  justify-content: space-between;
  align-items: middle;
  flex-wrap: wrap;
  row-gap: 20px;
}

.work-gallery a:not(:first-child) {
  max-height: 150px;
}

.work-gallery a {
  display: block;
  width: 30%;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.work-gallery a img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.work-gallery a i {
  position: absolute;
  transition: all 0.3s;
  top: 0;
  right: -40px;
  color: #fff;
  font-size: 20px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 0 0 0 5px;
}

.work-gallery a:first-child {
  width: 100%;
  height: auto;
}

.work-gallery a:first-child img {
  max-height: unset;
}

.work-gallery a:first-child i {
  font-size: 30px;
  right: -50px;
}

.work-gallery a:hover > i {
  right: 0;
}

.work-gallery a:first-child:hover > i {
  right: 0;
}

.work-gallery.no-first-large-image a:first-child {
  width: 30%;
  height: auto;
}

.work-gallery.no-first-large-image a:first-child img {
  max-height: auto;
}

.work-categories {
  display: flex;
  gap: 30px;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}
.work-categories div.work-cat {
  width: 90%;
  -webkit-box-shadow: 0px 3px 7px 0px rgba(92, 92, 92, 0.52);
  box-shadow: 0px 3px 7px 0px rgba(92, 92, 92, 0.52);
  border-radius: 0 0 15px 15px;
  transition: all 0.3s;
}
.work-categories div.work-cat a {
  text-decoration: none;
}
.work-categories div.work-cat a span {
  background: #fff;
  color: #01266c;
  display: block;
  padding: 20px 0 20px 0;
  position: relative;
  top: -10px;
  border-radius: 0 0 15px 15px;
  text-align: center;
}

@media (min-width: 769px) {
  .work-categories div.work-cat {
    width: 45%;
  }
}
@media (min-width: 769px) {
  .work-categories div.work-cat {
    width: 45%;
  }
}
@media (min-width: 1000px) {
  .work-categories {
    display: flex;
    gap: 30px;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .work-categories div.work-cat {
    width: 25%;
    -webkit-box-shadow: 0px 3px 7px 0px rgba(92, 92, 92, 0.52);
    box-shadow: 0px 3px 7px 0px rgba(92, 92, 92, 0.52);
    border-radius: 0 0 15px 15px;
    transition: all 0.3s;
  }
  .work-categories div.work-cat a {
    text-decoration: none;
  }
  .work-categories div.work-cat a span {
    background: #fff;
    color: #01266c;
    display: block;
    padding: 20px 0 20px 0px;
    position: relative;
    top: -10px;
    border-radius: 0 0 15px 15px;
    text-align: center;
  }
  .work-categories div.work-cat:hover {
    transform: scale(101%);
  }
}
div.contact-form input {
  display: block;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 100%;
  font-size: 18px;
  padding: 10px 5px 10px 15px;
  margin-bottom: 20px;
}
div.contact-form textarea {
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 20px;
  height: 150px;
  font-size: 18px;
  padding: 10px 5px 10px 15px;
}
div.contact-form #form-response {
  font-size: 16px;
  border-radius: 5px;
}
div.contact-form #form-response.sending {
  padding: 10px;
  background: #f0f0f0;
  margin-bottom: 10px;
}
div.contact-form #form-response.success {
  padding: 10px;
  background: green;
  color: #fff;
  margin-bottom: 10px;
}
div.contact-form #form-response.error {
  padding: 10px;
  background: crimson;
  color: #fff;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .small-padding-top {
    padding-top: 40px;
  }
}
section .container img {
  border-radius: 10px;
}

.section-services-alt {
  background: #f9f9f9;
}

.card-related-services .service-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0;
}
.card-related-services ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0;
  row-gap: 25px;
}
.card-related-services ul li {
  width: 30%;
  line-height: 1.1rem !important;
}
.card-related-services ul li .img {
  width: 100%;
  padding-right: 0px;
}
.card-related-services ul li .img img {
  border-radius: 10px;
}
.card-related-services ul li .text {
  width: 100%;
}

@media (max-width: 500px) {
  .card-related-services .service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
  }
  .card-related-services ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
    row-gap: 25px;
  }
  .card-related-services ul li {
    width: 45%;
    line-height: 20px !important;
  }
  .card-related-services ul li a {
    font-size: 18px;
    line-height: 20px !important;
  }
}

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