/********** Template CSS **********/

@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@600&family=Open+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
:root {
  /* --primary: #00B98E;
    --secondary: #FF6922;
    --light: #EFFDF5;
    --dark: #0E2E50; */
  --primary: #4e79a7; /* A deep blue */
  --secondary: #f28e2b; /* An orange shade */
  --light: #f0f0f0; /* Light gray */
  --dark: #333333; /* Dark gray */
}

body {
  overflow-x: clip;
  /* width: 100vw; */
}

::selection {
  background-color: #0e2e50;
  color: var(--light);
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
  border-radius: 10px;
}

body::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(122, 153, 217)),
    color-stop(0.72, rgb(73, 125, 189)),
    color-stop(0.86, rgb(28, 58, 148))
  );
}

/*** Top Loading Bar***/
.top-loading-bar {
  position: fixed;
  top: 0;
  /* left: 0; */
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  z-index: 9999;
  scale: 0 1;
  transform-origin: left;
  animation: loading-bar linear;
  animation-timeline: scroll();
}
@keyframes loading-bar {
  to {
    scale: 1 1;
  }
}

.services-info-img .img-2 {
  position: relative;
  z-index: 2;
  left: 40px;
  bottom: 30px;
  box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.45),
    -25px 0 20px -20px rgba(0, 0, 0, 0.45);
}

.services-info-img img {
  position: relative;
  z-index: 2;
  right: 40px;
  bottom: 40px;
  box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.45),
    25px 0 20px -20px rgba(0, 0, 0, 0.45);
}

.services-info-img {
  border: 10px solid var(--primary);
  width: 60%;
}

.third-head {
  padding-top: 170px;
  text-align: justify;
}

.third-head h1 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5em;
  padding-bottom: 15px;
  position: relative;
}
.third-head h1:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #111;
}
.third-head h1:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 95%;
  max-width: 255px;
  background-color: #333;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50px;
}

/*** Navbar ***/
.nav-bar {
  position: relative;
  /* margin-top: 45px; */
  /* padding: 0 3rem; */
  transition: 0.5s;
  z-index: 9999;
}

.nav-bar.sticky-top {
  position: sticky;
  padding: 0;
  z-index: 9999;
}

.navbar {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 5px;
  transition: 0.5s;
}

.navbar .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 13px 15px;
  color: #ffffff;
  font-size: 15px;
  font-weight: bolder !important;
  text-transform: uppercase;
  outline: none;
  /* border-radius: 10px; */
  transition: all 0.6s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset; */
  /* box-shadow: 0px 9px 30px rgba(255, 149, 5, 0.3); */
  /* box-shadow: 0px 9px 30px rgb(212, 235, 255); */
  /* box-shadow: 0 0 0 2px var(--primary), 8px 8px 0 0 var(--primary); */
}

.navbar .dropdown-menu .dropdown-item:hover {
  border-left: 4px solid var(--primary);
}
.quick-links .dropdown-menu .dropdown-item:hover {
  border-left: 4px solid var(--secondary);
}

@media (max-width: 991.98px) {
  .nav-bar {
    margin: 0;
    padding: 0;
  }

  .navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar-light .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

.navbar-light .navbar-brand {
  height: 75px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
}


@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    top: 100%;
    margin-top: 0;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
@media (min-width: 992px) {
  .header {
    /* margin-top: -120px; */
  }
}

.header-link:hover {
  border-bottom: 1px solid #fff;
}

.header-carousel .img-fluid {
  height: 700px;
  filter: brightness(0.9);
  /* filter: contrast(1.2); */
}

.owl-dots {
  display: flex;
  justify-content: center;
  position: relative;
  bottom: 45px;
}

.owl-dot {
  display: inline-block;
  width: 15px;
  height: 5px;
  margin: 0 5px;
  background-color: #97a6a5; /* Change to your desired color */
  /* border-radius: 50%; */
  border-radius: 20px;
}

.owl-dot.active {
  background-color: #fff; /* Change to your desired color for the active dot */
}

.header-carousel .owl-nav {
  /* position: absolute;
    top: 50%; */
  /* left: -25px; */
  /* transform: translateY(-50%);
    display: flex; */
  /* flex-direction: column; */
  /* justify-content: space-between; */
  position: absolute;
  width: 100%;
  height: 40px;
  top: calc(50% - 20px);
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}
.owl-prev,
.owl-next {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.owl-prev {
  right: 30px;
}
.owl-next {
  left: 30px;
}
/* Show the navigation arrows on hover */
.owl-carousel:hover .owl-prev,
.owl-carousel:hover .owl-next {
  opacity: 1;
}

.owl-carousel:hover .owl-prev {
  right: -25px;
}

.owl-carousel:hover .owl-next {
  left: -25px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  margin: 7px 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  /* background: var(--primary); */
  border-radius: 40px;
  font-size: 25px;
  position: relative;
  transition: 0.5s;
  font-weight: bolder;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: var(--dark);
}

@media (max-width: 768px) {
  /* .header-carousel .owl-nav {
		left: 25px;
	} */
}
@media (max-width: 500px) {
  .header-carousel .img-fluid {
    height: 200px !important;
  }
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #dddddd;
}

/*** Icon ***/
.icon {
  padding: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff !important;
  border-radius: 50px;
  border: 1px dashed var(--primary) !important;
}

/*** About ***/
.about-img img {
  position: relative;
  z-index: 2;
  width: 80%;
  box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.45),
    -25px 0 20px -20px rgba(0, 0, 0, 0.45);
  /* margin: 12px; */
  /* height: 88%; */
}

.about-img::before {
  position: absolute;
  content: "";
  top: 0;
  /* left: -50%; */
  left: 50%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transform: skew(20deg);
  z-index: 1;
}

.nine h1 {
  position: relative;
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #080808;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  text-align: center;
  font-size: 30px;
  text-transform: uppercase;
  color: #222;
  letter-spacing: 1px;
  /* font-family:"Playfair Display", serif; font-weight:400; */
}

.nine h1 span {
  display: block;
  font-size: 0.5em;
  line-height: 1.3;
  margin-top: 5px;
  font-size: 10px;
  color: #444;
  word-spacing: 1px;
  font-weight: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  font-weight: 500;

  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  grid-template-rows: 27px 0;
  grid-gap: 20px;
  align-items: center;
}

.nine h1 span:after,
.nine h1 span:before {
  content: " ";
  display: block;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  height: 5px;
  background-color: #f8f8f8;
}

.ones h1 {
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 5px;
}

/* .ones h1:before {
	width: 28px;
	height: 5px;
	display: block;
	content: "";
	position: absolute;
	bottom: 3px;
	left: 50%;
	margin-left: -14px;
	background-color: #b80000;
} */

.ones h1:after {
  width: 100px;
  height: 1px;
  display: block;
  content: "";
  position: relative;
  margin-top: 25px;
  left: 50%;
  margin-left: -50px;
  background-color: #b80000;
}

.hover-btn {
  padding: 0.8em 1.8em;
  border: 2px solid var(--primary);
  position: relative;
  overflow: hidden;
  background-color: transparent;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  transition: all 0.4s;
  z-index: 1;
  font-family: inherit;
  color: var(--primary) !important;
}

.hover-btn::before {
  content: "";
  width: 0;
  height: 300%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--primary);
  transition: 0.5s ease;
  display: block;
  z-index: -1;
}

.hover-btn:hover::before {
  width: 100%;
}

.hover-btn:hover {
  color: #fff !important;
}

.about-card-item {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  border-radius: 50%;
  overflow: hidden;
  width: 230px;
  height: 230px;
  margin: 3px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* padding: 5px; */
}

.about-card-item h6 {
  font-size: 14px;
}

.about-card-item p {
  font-size: 11px;
  text-align: justify;
  padding: 20px;
}

.one {
  background: url("../img/one.png") no-repeat center center/cover;
  background-size: 70px auto;
  background-position: 77px 160px;
}
.two {
  background: url("../img/two.png") no-repeat center center/cover;
  background-size: 70px auto;
  background-position: 77px 160px;
}
.three {
  background: url("../img/three.png") no-repeat center center/cover;
  background-size: 70px auto;
  background-position: 77px 160px;
}

@media only screen and (max-width: 500px) {
  .about-cards {
    flex-direction: column !important;
  }
}

.about-header {
  position: relative;
  background: url("../img/about-header.png") no-repeat center center/cover;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: 100% 100%;
}

.about-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Adjust the transparency as needed */
}

.about-content {
  z-index: 9999;
}

.mission-img img {
  box-shadow: -10px 10px 0px rgba(33, 33, 33, 1),
    -20px 20px 0px rgba(33, 33, 33, 0.7), -30px 30px 0px rgba(33, 33, 33, 0.4),
    -40px 40px 0px rgba(33, 33, 33, 0.1);
}

.card-container .card {
  /* max-width: 250px; */
  /* min-height: 200px; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  /* max-width: 500px; */
  height: 490px;
  padding: 35px;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);

  backdrop-filter: blur(10px);
  overflow: auto;
}

.card-container .card .card-header {
  background: none;
  border-bottom: none;
}

.card-container .card .card-header img {
  filter: invert(1);
}

.card-container .card .card-header h4 {
  color: #fff;
  letter-spacing: 1px;
}

.card-container .card .card-body {
  text-align: center;
  font-weight: 400;
}

.card::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.6);
  background-color: rgba(255, 255, 255, 0.45);
}

.card::-webkit-scrollbar {
  width: 10px;
  background-color: rgba(255, 255, 255, 0.45);
}

.card::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.45);
  background-image: -webkit-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.45) 25%,
    transparent 100%,
    rgba(255, 255, 255, 0.45) 75%,
    transparent
  );
}

.accordion-container section:target p::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.6);
  background-color: rgba(255, 255, 255, 0.45);
}

.accordion-container section:target p::-webkit-scrollbar {
  width: 10px;
  background-color: rgba(255, 255, 255, 0.45);
}

.accordion-container section:target p::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.45);
  background-image: -webkit-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.45) 25%,
    transparent 100%,
    rgba(255, 255, 255, 0.45) 75%,
    transparent
  );
}

.accordion-container section a {
  background-color: #effdf5;
  color: #000;
  text-decoration: none;
  text-align: center;
  padding: 10px;
  display: block;
  font-size: 1.3em;
  letter-spacing: 1px;
  overflow: hidden;
  border-bottom: 3px solid #0e2e50;
  border-radius: 5px;
  font-weight: bolder;
  text-transform: uppercase;
  box-shadow: 0px 9px 30px rgba(255, 149, 5, 0.1);
}

.accordion-container section p {
  padding: 10px;
  overflow: hidden;
  height: 0;
  opacity: 0;
  background: radial-gradient(
    circle at -8.9% 51.2%,
    rgb(255, 124, 0) 0%,
    rgb(255, 124, 0) 15.9%,
    rgb(255, 163, 77) 15.9%,
    rgb(255, 163, 77) 24.4%,
    rgb(19, 30, 37) 24.5%,
    rgb(19, 30, 37) 66%
  );
  color: #fff;
  overflow: hidden;
  letter-spacing: 2px;
  transition: 2s;
  font-weight: 500;
}

.accordion-container section:target p {
  height: 11em;
  opacity: 1;
  padding: 16px;
  overflow: auto;
}

.accordion-container section a.active ~ .accordion-container section p {
  height: 11em;
  opacity: 1;
  padding: 16px;
  overflow: auto;
}

/*** Services ***/
.services-head {
  background-color: #f5f5f5;
}

/*** Comparison ***/
.comp-head {
  background-color: #fee66c;
}
.wrapper {
  position: relative;
  height: 380px;
  width: 550px;
  overflow: hidden;
  background: #fff;
  border: 7px solid #fff;
  /* box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15); */
  box-shadow: 0px -25px 20px -20px rgba(0, 0, 0, 0.45),
    25px 0 20px -20px rgba(0, 0, 0, 0.45),
    0px 25px 20px -20px rgba(0, 0, 0, 0.45),
    -25px 0 20px -20px rgba(0, 0, 0, 0.45);
}
.wrapper .images {
  height: 100%;
  width: 100%;
  display: flex;
}
.wrapper .images .img-1 {
  height: 100%;
  width: 100%;
  background: url("../img/comparison-img-2.jpg") no-repeat;
  /* background: url("images/car.jpg") no-repeat; */
}
.wrapper .images .img-2 {
  position: absolute;
  height: 100%;
  width: 50%;
  /* filter: blur(5px); */
  background: url("../img/comparison-img-1.jpg") no-repeat;
  /* background: url("images/car.png") no-repeat; */
}
.wrapper .slider {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 99;
}
.wrapper .slider input {
  width: 100%;
  outline: none;
  background: none;
  -webkit-appearance: none;
  appearance: none;
}
.slider input::-webkit-slider-thumb {
  height: 486px;
  width: 3px;
  background: none;
  -webkit-appearance: none;
  cursor: col-resize;
}
.slider .drag-line {
  width: 3px;
  height: 380px;
  position: absolute;
  left: 49.85%;
  pointer-events: none;
}
.slider .drag-line::before,
.slider .drag-line::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 222px;
  background: #fff;
}
.slider .drag-line::before {
  top: 0;
}
.slider .drag-line::after {
  bottom: 0;
}
.slider .drag-line span {
  height: 42px;
  width: 42px;
  border: 3px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.slider .drag-line span::before,
.slider .drag-line span::after {
  position: absolute;
  content: "";
  top: 50%;
  border: 10px solid transparent;
  border-bottom-width: 0px;
  border-right-width: 0px;
  transform: translate(-50%, -50%) rotate(45deg);
}
.slider .drag-line span::before {
  left: 40%;
  border-left-color: #fff;
}
.slider .drag-line span::after {
  left: 60%;
  border-top-color: #fff;
}
.table {
  text-align: center;
  width: 100%;
  height: 100%;
}

.table thead {
  background-color: #fee66c;
}

.table tr:nth-child(even) {
  background-color: #fee66c;
}

.table tr td {
  padding: 25px 2px;
  font-style: italic;
}

.table tr th {
  padding: 25px 2px;
}

@media only screen and (max-width: 650px) {
  .wrapper {
    height: 300px;
    width: 450px;
  }

  .slider .drag-line {
    height: 305px;
  }

}

@media only screen and (max-width: 500px) {
  .wrapper {
    height: 240px;
    width: 310px;
  }

  .slider .drag-line {
    height: 230px;
  }
}

/*** Experience ***/
.exp-container {
  position: relative;
  z-index: 1;
}
.exp-container::before {
  /* background: url('../img/exp-img-1.jpg') no-repeat center center/cover;
	filter: brightness(0.8); */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/exp-img-1.jpg"); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  filter: brightness(0.8); /* Adjust the brightness level for the background */
  z-index: -1; /* Send the pseudo-element to the background */
}
.exp-container .ones h1:after {
  height: 3px !important;
  background-color: #e5f10b !important;
}

.exp-items img {
  background-color: #e5f10b;
  padding: 10px;
  border-radius: 10%;
}
/*** Category ***/
.cat-item div {
  background: #ffffff;
  border: 1px dashed rgba(0, 185, 142, 0.3);
  transition: 0.5s;
}

.cat-item:hover div {
  background: var(--primary);
  border-color: transparent;
}

.cat-item div * {
  transition: 0.5s;
}

.cat-item:hover div * {
  color: #ffffff !important;
}

/*** Property List ***/
.nav-pills .nav-item .btn {
  color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
  color: #ffffff;
}

.property-item {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.property-item img {
  transition: 0.5s;
}

.property-item:hover img {
  transform: scale(1.1);
}

.property-item .border-top {
  border-top: 1px dashed rgba(0, 185, 142, 0.3) !important;
}

.property-item .border-end {
  border-right: 1px dashed rgba(0, 185, 142, 0.3) !important;
}

/*** Team ***/
.team-item {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
}

.team-item .btn {
  color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.team-item .btn:hover {
  color: #ffffff;
  background: var(--primary);
}

.team-item:hover {
  border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
  background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
  color: var(--secondary) !important;
}

/*** Contact-info ***/
.contact-info img {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08), 0 2px 2px rgba(0, 0, 0, 0.12),
    0 4px 4px rgba(0, 0, 0, 0.16), 0 8px 8px rgba(0, 0, 0, 0.2);
}

/*** Testimonial ***/
.testimonial-carousel {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 576px) {
  .testimonial-carousel {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.testimonial-carousel .testimonial-item .border {
  border: 1px dashed rgba(0, 185, 142, 0.3) !important;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 40px;
  top: calc(50% - 20px);
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 40px;
  font-size: 20px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--dark);
}

/*** gallery ***/
.trans {
  transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transition: all 1s ease;
}

.top {
  display: flex;
  width: 90vw;
  height: 90vh;
  /* margin-top: 10vh;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10vh; */
  box-shadow: 0px -25px 20px -20px rgba(0, 0, 0, 0.45),
    25px 0 20px -20px rgba(0, 0, 0, 0.45),
    0px 25px 20px -20px rgba(0, 0, 0, 0.45),
    -25px 0 20px -20px rgba(0, 0, 0, 0.45);
}

.top ul {
  list-style: none;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
  padding-left: 0rem !important;
}

.top ul li {
  position: relative;
  float: left;
  width: 25%;
  height: 25%;
  overflow: hidden;
}

.top ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  content: "";
  color: white;
  opacity: 0.4;
  text-align: center;
  box-sizing: border-box;
  pointer-events: none;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.top ul li:hover::before {
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.9);
}

.top ul li img {
  width: 100%;
  /* height: auto; */
  height: 100%;
  overflow: hidden;
}

.lightbox {
  position: fixed;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  position: relative;
  top: -100%;
  /* Transition */
  transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transition: all 1s ease;
}

.lightbox:target {
  outline: none;
  top: 0;
  opacity: 1;
  pointer-events: auto;
  transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  -webkit-transition: all 1.2s ease;
}

.lightbox:target img {
  top: 0;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

/*** Property Facilitation ***/
.property-header {
  position: relative;
  background: url("../img/property-img-1.jpg") no-repeat center center/cover;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: 100% 100%;
}

.property-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); 
}

.seven h1 {
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  color: #222;
  letter-spacing: 1px;
  text-transform: uppercase;

  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  grid-template-rows: 27px 0;
  grid-gap: 20px;
  align-items: center;
}

.seven h1:after,
.seven h1:before {
  content: " ";
  display: block;
  border-bottom: 1px solid #c50000;
  border-top: 1px solid #c50000;
  height: 5px;
  background-color: #f8f8f8;
}

#img-one {
	width: 50%;
	background: url('../img/property-img-3.jpg') no-repeat center center/cover;
	box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.45), 25px 0 20px -20px rgba(0, 0, 0, 0.45);
}

#img-one img {
	position: relative;
	z-index: 2;
	right: 200px;
	bottom: 60px;
	box-shadow: 0px -25px 20px -20px rgba(0, 0, 0, 0.45), -25px 0 20px -20px rgba(0, 0, 0, 0.45);
}

@media only screen and (max-width: 600px) {
	#img-one {
		background: none;
	}

	#img-one img {
		position: relative;
		z-index: 2;
		right: 0;
		bottom: 0;
		box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.45),
			25px 0 20px -20px rgba(0, 0, 0, 0.45);
		transform: scale(1.5); 
	}
}


/*** Waterproofing Solutions ***/
.waterproofing-header {
  position: relative;
  background: url("../img/waterproofing-img-1.webp") no-repeat center center/cover;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: 100% 100%;
}

.waterproofing-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); 
}


/*** Epoxy Flooring ***/
.epoxy-header {
  position: relative;
  background: url("../img/epoxy-img-1.webp") no-repeat center center/cover;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: 100% 100%;
}

.epoxy-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); 
}


/*** Contact ***/
.contact-header {
  position: relative;
  background: url("../img/contact-img-1.jpg") no-repeat center center/cover;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: 100% 100%;
}

.contact-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); 
}

@media only screen and (max-width: 600px){
  .contact-header{
    height: 300px !important;
  }

  .error-header{
    height: 500px !important;
  }
}

/*** Error 404 ***/
.error-header {
  position: relative;
  background: url("../img/error-img-1.jpg") no-repeat center center/cover;
  height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: 100% 100%;
}

.error-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); 
}



/*** Gift Deed ***/
.gift-header {
  position: relative;
  background: url("../img/gift-deed-img-1.jpg") no-repeat center center/cover;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: 100% 100%;
}

.gift-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); 
}


/*** Relinquishment Deed ***/

.relinquishment-header {
  position: relative;
  background: url("../img/relinquishment-img-1.jpg") no-repeat center center/cover;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: 100% 100%;
}

.relinquishment-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); 
}


/*** Sales Agreement ***/
.sales-header {
  position: relative;
  background: url("../img/sales-img-1.jpg") no-repeat center center/cover;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: 100% 100%;
}

.sales-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); 
}

/*** Stamp Duty ***/

.stamp-header {
  position: relative;
  background: url("../img/stamp-img-1.jpeg") no-repeat center center/cover;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: 100% 100%;
}

.stamp-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); 
}

/*** Title Deed ***/

.title-header {
  position: relative;
  background: url("../img/title-deed-img-1.jpg") no-repeat center center/cover;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: 100% 100%;
}

.title-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); 
}


/*** Will ***/

.will-header {
  position: relative;
  background: url("../img/will-img-1.webp") no-repeat center center/cover;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: 100% 100%;
}

.will-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); 
}

/*** FAQ'S ***/

.faq-header {
  position: relative;
  background: url("../img/faq-img-1.jpg") no-repeat center center/cover;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: 100% 100%;
}

.faq-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); 
}

/*** Footer ***/
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
  border-color: var(--light);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .form-control {
  border-color: rgba(255, 255, 255, 0.5);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
