@import url("https://fonts.googleapis.com/css2?family=Montserrat&family=Playfair+Display:wght@400;700&display=swap");
:root {
  --primary-color: #a9633a;
  --bg-color: #0d0d0d;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif !important;
  background-color: #0d0d0d;
  font-family: "Manrope", sans-serif;
  /* font-size: 14px; */
  font-size: 16px;
  color: #fff;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}

img {
  max-width: 100%;
}
.btn {
  font-size: 14px;
}
button.btn.btn-primary,
.btn.btn-primary {
  border-radius: 0;
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.form-control {
  border-radius: 0;
  font-size: 14px;
  text-transform: uppercase;
}

/* header styles */
.top-header {
  text-align: right;
  background: #0d0d0d;
  padding: 10px;
}
.top-header ul.call-email {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.top-header ul.call-email li {
  font-size: 14px;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #fff;
  padding-right: 10px;
  margin-right: 10px;
  color: #fff !important;
}

.top-header ul.call-email li a, .ct-number a {
    color: #fff;
    text-decoration: none;
}

.top-header li i.bi {
  font-size: 16px;
  margin-right: 6px;
  display: inline;
  line-height: 0;
}
.tp-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
ul.social-header {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  margin-bottom: 0;
  padding: 0;
}

ul.social-header li a i {
  color: #fff;
}

.navbar {
  padding: 10px;
  position: sticky;
  top: 0;
  z-index: 10;
}
.navbar.bg-dark {
  background-color: #191919 !important;
}
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 5s;
}
.navbar-nav {
  gap: 10px;
}
.navbar .collapse.navbar-collapse {
  justify-content: end;
}
.navbar-brand {
  width: 150px;
}
.nav-lin, .nav-link-mob, .nav-link.dropdown-toggle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

section {
  scroll-margin-top: 100px;
}

section.hero-video {
  height: calc(100vh - 100px);
  overflow: hidden;
}
.hero-video video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

section.hero-banner {
  height: calc(100vh - 100px);
  overflow: hidden;
}
.hero- .hero-banner .owl-carousel,
.hero-banner .owl-stage-outer,
.hero-banner .owl-stage,
.hero-banner .owl-item,
.hero-banner .item {
  height: 100%;
}
.hero-banner .owl-item .item {
  background-size: cover;
  background-position: bottom center;
}
.hero-banner .owl-item .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner button.owl-next {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  right: 1%;
}
.hero-banner button.owl-prev {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  left: 1%;
}
.hero-banner .owl-nav .bi {
  font-size: 50px;
}

.hero-banner .banner-content {
  z-index: 1;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 50px;
}
.hero-banner .banner-content h1 {
  background-color: rgb(0 0 0 / 60%);
  font-size: 48px;
  text-transform: capitalize;
  padding: 30px;
  text-align: center;
}

/* End of header styles */

.border-golden {
  position: relative;
}
.border-golden::after {
  content: " ";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid var(--primary-color);
  z-index: 1;
  transition: 0.2s;
}
.border-golden:hover:after {
  transform: scale(1.05);
  transition: 0.2s;
}

.in-section {
  padding: 100px 0;
}
h1.main-title {
  font-family: "Playfair Display", serif;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.divider {
  display: block;
  width: 20%;
  height: 3px;
  background-color: #a9633a;
  margin-bottom: 30px;
}
.about-content {
  padding-right: 50px;
  margin-top: -8px;
}
/* .about-content h1 {
    font-size: 60px;
} */
.about-content p {
  font-size: 16px;
  font-weight: lighter;
}
.bg-black-light {
  background-color: #232323;
}

#service-carousel {
  margin-top: 30px;
}
/* #service-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
} */
#service-carousel .owl-next,
#service-carousel .owl-prev {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--primary-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);
}

#service-carousel .owl-next {
  right: 0;
  left: auto;
}

#service-carousel .owl-prev:hover,
#service-carousel .owl-next:hover {
  background-color: var(--bg-color);
}

.service-block {
  text-align: center;
  /* background-color: #1e1a18; */
  padding: 20px 15px;
  /* box-shadow: 0px; */
  border-radius: 20px;
  transition: background-color .5s ease-in-out;
}

.service-block:hover {
 background-color: var(--primary-color);
 /* box-shadow: 0px 0px 4px 0px rgba(0,0,0.2); */
}
.sr-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px;
  margin-bottom: 20px;
  background-color: var(--primary-color);
  transition: background-color 0.2s ease-in-out;
}
.service-block:hover .sr-icon {
    background-color: #fff;
}
.sr-title {
  font-size: 18px;
}

.team-block {
  background: transparent;
  border: 2px solid var(--primary-color);
  padding: 20px;
  border-radius: 0;
}
.team-block .card-body {
  padding-bottom: 0;
}
.team-block img {
  border-radius: 0;
  transition: 0.3s;
}
.team-block:hover img {
  transform: scale(1.08);
  transition: 0.3s;
}
.team-block span:before {
  content: "";
  position: absolute;
  width: 20px;
  background: var(--primary-color);
  height: 2px;
  display: block;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.team-block span {
  position: relative;
  padding-left: 30px;
}

ul.team-social {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  list-style: none;
}
ul.team-social li a i {
  color: #fff;
  font-size: 20px;
  width: 20px;
  height: 10px;
}
.prj-block {
  margin-bottom: 30px;
  cursor: pointer;
  text-decoration: none;
}
.prj-block.no-margin {
  margin: 0;
}

.prj-title {
  background: #0d0d0d;
  padding: 10px 30px 30px;
  color: #fff;
}
.prj-title {
  transition: 0.3s;
}
.prj-title h4 {
  font-size: 20px;
}
.prj-title p {
  margin: 0;
  font-size: 14px;
}
.prj-block:hover .prj-title {
  background-color: #fff;
  color: #000;
  transition: 0.3s;
}
.overlay-section {
  position: relative;
  background-attachment: fixed;
}
.overlay-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(0 0 0 / 80%);
  z-index: 0;
}
.overlay-section .container {
  z-index: 1;
  position: relative;
}
.tst-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  margin-bottom: 10px;
  border-radius: 500px;
  overflow: hidden;
}
.tst-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tst-item {
  text-align: center;
  border: 1px solid var(--primary-color);
  padding: 30px;
}

.tst-slider .owl-nav {
  position: initial;
}
.tst-slider button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -10%;
}
.tst-slider button.owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -10%;
}
.tst-slider .owl-nav i.bi {
  font-size: 40px;
}

.copyright-ft {
  background-color: var(--primary-color);
}
.ip-block {
  width: 100%;
  margin-bottom: 14px;
}
.ip-block input,
.ip-block textarea {
    color: #fff;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  background: transparent;
  border: 1px solid var(--primary-color);
}

.call-ct-text ul {
  list-style-type: none;
  padding: 0;
  margin: 30px 0;
}
.call-ct-text ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
span.call-icon {
  width: 30px;
  height: 30px;
  background: #a9633a;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  margin-right: 10px;
}
.ct-number h5 {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
}
span.call-icon .bi {
  font-size: 14px;
}
.ct-left {
  background: #2b211c;
  padding: 35px;
}
.ct-right {
  padding-left: 40px;
}
.gallery-section .prj-title h4 {
  text-align: center;
  margin: 0;
}
.bg-copper {
  /* background-color: #63412e; */
  background-color: #2b211c;
}
.highlight-section .col-md-3 {
  position: relative;
}
.hg-block {
  padding: 20px 10px;
  height: 100%;
  background-color: var(--primary-color);
  /* border: 2px solid var(--primary-color); */
  transition: 0.3s;
  cursor: pointer;
  text-align: center;
}
.hg-block h1 {
  font-size: 60px;
  opacity: 0.3;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  margin-bottom: 10px;
  transition: 0.3s;
}
.hg-block h4 {
  margin-bottom: 10px;
  font-size: 20px;
}
.hg-block p {
  margin: 0;
}
/* .hg-block:hover {
  border-color: #fff;
  transition: 0.3s;
}
.hg-block.bg-copper:hover {
  background-color: #63412e;
}
.hg-block:hover h1 {
  opacity: 1;
  margin-bottom: 20px;
  transition: 0.3s;
} */

.hg-block.bg-black h1 {
  color: var(--primary-color);
}

.hg-block.bg-black:hover h1 {
  color: var(--primary-color);
}

.ft-logo {
  max-width: 180px;
  margin-bottom: 20px;
}
.ft-about ul {
  padding-left: 0;
  margin: 0;
}
.ft-social {
  gap: 15px;
}
.ft-social li {
  font-size: 20px;
}
.icon-details {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.icon-details:last-of-type {
  margin-bottom: 0;
}
.icon-details p {
  margin: 0;
}
.icon-details a {
  color: #fff;
  text-decoration: none;
}
.ft-link li a {
  color: #fff;
}

/*newly added*/
.internal-page-banner {
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-banner {
  /* background-image: url("https://dummyimage.com/1920x650/595959/c29a4a"); */
  background-size: cover;
  background-position: center;
  position: relative;
}
.internal-page-banner:after {
  content: "";
  position: absolute;
  background: #000;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.banner-content {
  z-index: 1;
}
ul.list-no {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0px;
  flex-wrap: wrap;
}
ul.list-no li {
  list-style: none;
  margin-right: 25px;
}
.contactform {
  margin-top: 50px;
  background: #191919;
  padding: 50px;
}
a.map-btn {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  padding: 8px 10px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
}
.mapimg {
  position: relative;
}
.contact-info-item {
  display: flex;
  margin-bottom: 15px;
  background: #191919;
  padding: 20px;
  align-items: center;
}
.contact-info-item p {
  margin-bottom: 0px;
}
/*gallery page*/
.gallery-banner {
  background-image: url("https://dummyimage.com/1920x650/595959/c29a4a");
  background-size: cover;
  background-position: center;
  position: relative;
}
.gallery-block {
  margin-bottom: 20px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.galleryTile {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: var(--primary-color);
  padding: 10px 15px;
  pointer-events: none;
  border-radius: 0 6px 6px 6px;
}
.galleryTile:before {
  content: "";
  width: 30%;
  height: 18px;
  border-radius: 0 20px 0 0;
  background-color: var(--primary-color);
  position: absolute;
  top: -17px;
  left: 0px;
}
.galleryTile p {
  margin: 0;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 500;
}

.nav-link:hover,
.nav-link:focus {
  color: #a9633a;
}

.navbar-nav .dropdown-menu {
    background-color: #191919 !important;
    padding-bottom: 0;
    overflow: hidden;
}

.sr-block-list {
  background-color: var(--primary-color);
  padding: 60px 0;
}
.sr-block {
  border-right: 1px solid #bd8a6c;
  text-align: center;
  padding: 0 10px;
  width: 20%;
}
.sr-block-list .sr-block:last-of-type {
  border-right: none;
}
.sr-block .sr-block-icon {
  width: 56px;
  margin: 0 auto 20px;
}
.sr-block-list h3 {
  font-size: 18px;
  line-height: 26px;
}

.isp-text h1 {
  font-size: 36px;
  margin-bottom: 10px;
}
.isp-text h4 {
  font-size: 20px;
  margin-bottom: 30px;
}

.video-about {
  text-align: right;
}
.video-about video {
  height: 400px;
  /* width: 500px; */
}
section.highlight {
  position: relative;
}
section.in-section.highlight video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hg-text {
  background: rgb(0 0 0 / 70%);
  color: #fff;
  padding: 50px;
  position: relative;
  text-align: center;
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
.hg-text h1 {
  font-size: 36px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}
.hg-text .btn-primary {
  /* font-size: 20px; */
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 10px 30px;
}
.bg-img-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.why-choose-title {
  margin-bottom: 6rem !important;
}

.hg-content {
  white-space: initial;
}
.gallery-banner {
    display: none;
}

.hg-icon img {
  width: 35%;
}
.highlight {
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}
span.font-initial {
  font-family: 'Montserrat';
}


.grid-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.grid-wrapper {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
	grid-auto-rows: 245px;
	grid-auto-flow: dense;
}
.grid-wrapper .wide {
	grid-column: span 2;
}
.grid-wrapper .tall {
	grid-row: span 2;
}
.grid-wrapper .big {
	grid-column: span 2;
	grid-row: span 2;
}

.grid-wrapper .gallery-block {
    margin: 0;
}
.configTitle {
    margin: 30px 0 15px;
}
.configTitle h3 {
    color: var(--primary-color);
    display: inline-block;
    text-decoration-line: underline;
    text-underline-offset: 8px;
    
}
.configTitle h3 span {
    font-family: "Montserrat", sans-serif !important;
}
.project-page hr {
    margin: 3rem 0;
}