* {
  padding: 0;
  margin: 0;
  outline: 0;
  scrollbar-width: auto;
  scrollbar-color: #a0a1ca #dedede;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #ebebeb;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #a0a1ca;
}

body {
  min-width: 320px;
  color: #000;
  font-family: "Frank Ruhl Libre", serif;
  overflow-x: hidden;
  background: #fff;
}

a {
  text-decoration: none;
  color: #111;
  transition: 0.4s ease-in-out;
}

a:hover {
  text-decoration: none;
  color: #978484;
}

p {
  font-size: 18px;
  line-height: 30px;
  color: #555;
  margin: 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
  height: auto;
}

article {
  margin: 0 0 30px 0;
  overflow: hidden;
}

figure {
  margin: 0;
}

.img-wrap {
  position: relative;
}

.img-wrap figure {
  position: relative;
  width: 100%;
  padding-top: 75%;
  margin: 0;
}

.img-wrap figure img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.imgp-wrap {
  background: #fff;
  transition: all 0.5s ease;
  display: block;
  width: 100%;
  position: relative;
  height: 0;
  padding-top: 100%;
  overflow: hidden;
}

.imgp-wrap img {
  position: absolute;
  display: block;
  max-width: 100%;
  max-height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

@keyframes shape-zoom {
  0% {
    transform: scale(1) rotate(0deg);
  }
  20% {
    transform: scale(1) rotate(45deg);
  }
  40% {
    transform: scale(1.5) rotate(60deg);
  }
  60% {
    transform: scale(1.5) rotate(45deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
@keyframes float-bob {
  0% {
    transform: translateY(-50px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(-50px);
  }
}
header {
  padding: 5px 0;
}
header .logo-wrap img {
  max-width: 280px;
}
header .slogan h1 {
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}
header .slogan strong {
  font-size: 20px;
  text-transform: capitalize;
  color: #333333;
}
header .top-b .social-bar {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}
header .top-b .social-bar li {
  display: inline-block;
}
header .top-b .social-bar li a i {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  background: #282828;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: 0.4s ease-in-out;
}
header .top-b .social-bar li a:hover i {
  background-color: #d7ab79;
}
header .t-contact {
  margin: 0;
  text-align: right;
}
header .t-contact .tc-wrap {
  list-style: none;
  padding: 0;
  margin: 0;
}
header .t-contact .tc-wrap a {
  font-weight: 500;
  font-size: 20px;
}
header .t-contact .tc-wrap a:hover {
  color: #d7ab79;
}
header .t-contact .tc-wrap a i {
  font-size: 14px;
  color: #fff;
  background: #282828;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: 0.4s ease-in-out;
  margin: 0 10px 0 0;
}
header .g-quote a {
    font-size:15px;
  background-color: #d7ab79;
  padding: 10px 20px;
  border-radius: 4px;
  color: #000000;
  text-transform: capitalize;
  transition: 0.4s ease-in-out;
  border: 1px solid #ffffff;
  border-radius: 50px;
  font-weight: 500;
}
header .g-quote a i {
  margin: 0 0 0 5px;
}
header .g-quote a:hover {
  background-color: #000000;
  color: #fff;
}

.nav-sec .main-navigation {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  position: relative;
  z-index: 5;
  justify-content: center;
  background-color: #000000;
  border-radius: 4px;
}
.nav-sec .main-navigation .menu-item {
  position: relative;
}
.nav-sec .main-navigation .menu-item:before {
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #d7ab79;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.nav-sec .main-navigation .menu-item:last-of-type:before {
  display: none;
}
.nav-sec .main-navigation .menu-item.active a {
  color: #d7ab79;
  transition: 0.4s ease-in-out;
}
.nav-sec .main-navigation .menu-item a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 17px;
  padding: 10px 20px;
  display: inline-block;
  position: relative;
  top: 0;
  color: #fff;
  border-radius: 4px;
  letter-spacing: 2px;
}
.nav-sec .main-navigation .menu-item a:hover {
  color: #d7ab79;
  transition: 0.4s ease-in-out;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children {
  position: relative;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .sub-menu {
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 10rem;
  font-size: 1rem;
  color: #111;
  text-align: left;
  list-style: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: none;
  position: absolute;
  margin: 0;
  background: #111;
  border-radius: 0;
  padding: 0;
  width: 310px;
  animation-duration: 0.3s;
  opacity: 0;
  transition: 0.8s ease-in-out;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .sub-menu .menu-item::before {
  display: none;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .sub-menu .menu-item a {
  padding: 10px;
  color: #fff;
  font-size: 14px;
  transition: 0.4s ease-in-out;
  text-align: left;
  line-height: 30px;
  border-radius: 0;
  display: block;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .sub-menu .menu-item a:hover {
  background-color: #d7ab79;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children:hover .sub-menu {
  display: block !important;
  opacity: 1;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children > a::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

/*slider section*/
.slider-wrap .slider-bg {
  position: relative;
}
.slider-wrap .slider-bg .homestar-logos {
  position: absolute;
  bottom: 200px;
  right: 5%;
  z-index: 2;
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.slider-wrap .slider-bg .homestar-logos a img {
  width: 80px;
  transition: 0.4s ease-in-out;
}
.slider-wrap .slider-bg .homestar-logos a:hover img {
  transform: scale(1.2);
}
.slider-wrap .slider-bg .homestar-logos .home-star img {
  width: 180px;
}
.slider-wrap .slider-bg .homestar-logos .insta-gram img {
  width: 90px;
}
.slider-wrap .slider-bg .slide-sec {
  position: relative;
}
.slider-wrap .slider-bg .slide-sec:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.slider-wrap .slider-bg .slide-sec .slide-img {
  position: relative;
  width: 100%;
  padding-top: 100vh;
  margin: 0;
}
.slider-wrap .slider-bg .slide-sec .slide-img img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-wrap .slider-bg .slide-sec .s-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5%;
  z-index: 1;
  padding: 50px 40px;
}
.slider-wrap .slider-bg .slide-sec .s-caption:before {
  content: "";
  top: 0;
  left: 0;
  right: 50%;
  bottom: 0;
  border: 2px solid #d7ab79;
  position: absolute;
  z-index: -1;
  opacity: 0.7;
  border-radius: 4px;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}
.slider-wrap .slider-bg .slide-sec .s-caption small {
  font-size: 20px;
  display: block;
  color: #eee;
  letter-spacing: 5px;
  font-weight: 500;
}
.slider-wrap .slider-bg .slide-sec .s-caption strong {
  font-size: 56px;
  color: #ffffff;
  letter-spacing: 10px;
}
.slider-wrap .slider-bg .slide-sec .s-caption .btn-wrap a {
  color: #d7ab79;
  display: inline-block;
  padding: 10px 50px 10px 10px;
  position: relative;
}
.slider-wrap .slider-bg .slide-sec .s-caption .btn-wrap a:before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #d7ab79;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translatey(-50%);
}
.slider-wrap .slider-bg .slide-sec .s-caption .btn-wrap a:after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #d7ab79;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translatey(-50%);
  transition: 0.4s ease-in-out;
}
.slider-wrap .slider-bg .slide-sec .s-caption .btn-wrap a:hover:after {
  right: -7px;
}
.slider-wrap .slider-bg .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translatex(-50%);
}
.slider-wrap .slider-bg .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  background: #000000;
}
.slider-wrap .slider-bg .owl-dots .owl-dot.active span {
  background: #d7ab79;
}

/*welcome section*/
.welcome-sec {
  padding: 100px 0;
  background-color: #000000;
}
.welcome-sec .welcome-wrap h2 {
  color: #d7ab79;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 40px;
}
.welcome-sec .welcome-wrap ul {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}
.welcome-sec .welcome-wrap ul li {
  display: inline-block;
  padding: 10px;
  background-color: #212121;
  color: #d7ab79;
  padding: 10px 10px 10px 40px;
  text-transform: capitalize;
  position: relative;
  margin: 0 10px 20px 0;
}
.welcome-sec .welcome-wrap ul li:after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #212121;
  position: absolute;
  left: 0;
  bottom: -10px;
}
.welcome-sec .welcome-wrap ul li:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 20px;
  left: 10px;
  top: 50%;
  transform: translatey(-50%);
  background: #d7ab79;
}
.welcome-sec .welcome-wrap p {
  color: #ffffff;
  margin: 0 0 20px 0;
}
.welcome-sec .welcome-wrap .btn-primary a {
  color: #d7ab79;
  display: inline-block;
  padding: 10px 50px 10px 10px;
  position: relative;
}
.welcome-sec .welcome-wrap .btn-primary a:before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #d7ab79;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translatey(-50%);
}
.welcome-sec .welcome-wrap .btn-primary a:after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #d7ab79;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translatey(-50%);
  transition: 0.4s ease-in-out;
}
.welcome-sec .welcome-wrap .btn-primary a:hover:after {
  right: -7px;
}

/*services section*/
.headings {
  text-align: center;
  margin: 0 0 50px 0;
}
.headings h3 {
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #eceff3;
  margin: 0;
}
.headings .heading-line span {
  height: 5px;
  width: 5px;
  border-radius: 10px;
  background-color: #d7ab79;
  display: inline-block;
  position: relative;
}
.headings .heading-line span:before {
  content: "";
  position: absolute;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  top: 50%;
  transform: traqnslatey(-50%);
  width: 300px;
  right: 100%;
  margin-right: 15px;
}
.headings .heading-line span:after {
  content: "";
  position: absolute;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  top: 50%;
  transform: traqnslatey(-50%);
  width: 300px;
  left: 100%;
  margin-left: 15px;
}

.services {
  padding: 100px 0 70px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.services:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
}
.services .container {
  position: relative;
}
.services .container .serv-card {
  margin: 0 0 30px 0;
}
.services .container .serv-card .img-wrap {
  padding: 20px;
  position: relative;
  transition: 0.4s ease-in-out;
}
.services .container .serv-card .img-wrap:before {
  content: "";
  height: 100px;
  width: 1px;
  background-color: #d7ab79;
  left: 0;
  top: 0;
  position: absolute;
}
.services .container .serv-card .img-wrap:after {
  content: "";
  height: 1px;
  width: 100px;
  background-color: #d7ab79;
  left: 0;
  top: 0;
  position: absolute;
}
.services .container .serv-card:hover .img-wrap {
  padding: 0;
}
.services .container .serv-card .serv-dtl {
  position: relative;
  padding: 10px 20px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.services .container .serv-card .serv-dtl:before {
  content: "";
  height: 1px;
  width: 150px;
  background-color: #d7ab79;
  right: 0;
  top: 0;
  position: absolute;
}
.services .container .serv-card .serv-dtl h4 a {
  color: #d7ab79;
}
.services .container .serv-card .serv-dtl h4 a:hover {
  color: #fff;
}

/*for why choose us section*/
.why-us {
  padding: 100px 0;
  background: #000000;
  overflow: hidden;
}
.why-us .headings {
  text-align: left;
}
.why-us .headings h3 {
  color: #d7ab79;
}
.why-us .headings .heading-line span:before {
  display: none;
}
.why-us .why-card p {
  color: #ffffff;
  margin: 0 0 30px 0;
}
.why-us .why-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.why-us .why-card ul li {
  color: #eee;
  margin: 0 0 20px 0;
  font-size:18px;
}
.why-us .why-card ul li span {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #d7ab79;
  margin: 0 10px 0 0;
}
.why-us .why-img {
  position: relative;
}
.why-us .why-img:before {
  content: "";
  position: absolute;
  left: 0;
  right: 100px;
  bottom: 0;
  top: 0;
  border: 2px solid #d7ab79;
  transform: rotate(45deg);
  z-index: 0;
  opacity: 0.3;
  transition: 0.4s ease-in-out;
  animation-name: shape-zoom;
  animation-duration: 6s;
  animation-iteration-count: infinite;
}
.why-us .why-img img {
  position: relative;
}

/*for highlights*/
.highlights {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.highlights .high-card {
  text-align: center;
  padding: 20px;
  position: relative;
}
.highlights .high-card:before {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  left: 0;
  bottom: 0;
  border: 1px solid #d7ab79;
  opacity: 0.1;
}
.highlights .high-card .icon-wrap {
  border-bottom: 2px solid #d7ab79;
  display: inline-block;
  margin: 0 0 20px 0;
  position: relative;
}
.highlights .high-card .icon-wrap i {
  font-size: 40px;
  background-color: #d7ab79;
  width: 70px;
  height: 70px;
  line-height: 70px;
  color: #fff;
  margin: 0 0 5px 0;
}
.highlights .high-card a {
  display: block;
  color: #ffffff;
  text-transform: capitalize;
  position: relative;
  font-size: 20px;
  font-weight: 700;
}

/*testimonials section*/
.testimonials {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-size: cover;
}
.testimonials .testi-main {
  background-color: #000000;
  padding: 100px 20px 100px 30px;
}
.testimonials .testi-main .headings {
  text-align: left;
}
.testimonials .testi-main .headings .heading-line span:before {
  display: none;
}
.testimonials .testi-main .testi-card {
  background: #1e1e1e;
  padding: 30px 40px 50px;
  margin: 10px;
  position: relative;
  transition: 0.4s ease-in-out;
}
.testimonials .testi-main .testi-card:before {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  top: -5px;
  bottom: -5px;
  border: 1px solid #1d1d1d;
  transition: 0.4s ease-in-out;
}
.testimonials .testi-main .testi-card:hover:before {
  border-color: #d7ab79;
}
.testimonials .testi-main .testi-card q {
  color: #ffffff;
  margin: 0 0 20px 0;
  display: block;
}
.testimonials .testi-main .testi-card .testi-profile {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.testimonials .testi-main .testi-card .testi-profile .testi-dtl {
  padding: 70px 0 0 0;
  position: relative;
}
.testimonials .testi-main .testi-card .testi-profile .testi-dtl:before {
  content: "";
  height: 60px;
  width: 1px;
  background-color: #d7ab79;
  position: absolute;
  top: 0;
  left: 0;
}
.testimonials .testi-main .testi-card .testi-profile .testi-dtl strong {
  color: #d7ab79;
  font-size: 18px;
}
.testimonials .testi-main .testi-card .testi-profile .testi-dtl small {
  color: #eee;
  display: block;
  text-transform: uppercase;
  font-size: 12px;
}
.testimonials .testi-main .testi-card .testi-profile .icon-wrap i {
  font-size: 100px;
  color: #d7ab79;
  opacity: 0.2;
}
.testimonials .testi-main .owl-dots {
  text-align: left;
}
.testimonials .testi-main .owl-dots .owl-dot span {
  border-radius: 0;
  margin: 0 10px 0 0;
  opacity: 0.3;
}
.testimonials .testi-main .owl-dots .owl-dot.active span {
  background: #d7ab79;
  opacity: 1;
}

/*blog section*/
.blogs {
  padding: 100px 0 70px 0;
  background: #000000;
  position: relative;
}
.blogs .float-shape {
  position: absolute;
  top: 15%;
  left: 7%;
  animation-name: float-bob;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.blogs .float-shape1 {
  position: absolute;
  top: 15%;
  right: 7%;
  animation-name: float-bob;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.blogs .blog-card {
  margin: 0 0 30px 0;
}
.blogs .blog-card .b-date {
  color: #777777;
  padding: 10px 0;
}
.blogs .blog-card .blog-dtl {
  border: 1px solid #333;
  padding: 10px;
}
.blogs .blog-card .blog-dtl h4 a {
  color: #d7ab79;
}
.blogs .blog-card .blog-dtl h4 a:hover {
  color: #ffffff;
}
.blogs .blog-card .blog-dtl p {
  color: #ffffff;
}
.blogs .blog-card .blog-dtl .r-more a {
  color: #d7ab79;
  display: inline-block;
  padding: 10px 50px 10px 0;
  position: relative;
  text-transform: capitalize;
  font-size: 14px;
}
.blogs .blog-card .blog-dtl .r-more a:before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #d7ab79;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translatey(-50%);
}
.blogs .blog-card .blog-dtl .r-more a:after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #d7ab79;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translatey(-50%);
  transition: 0.4s ease-in-out;
}
.blogs .blog-card .blog-dtl .r-more a:hover:after {
  right: -7px;
}

/*for footer*/
footer {
  background-color: #101010;
  padding: 30px 0 0 0;
}
footer .foot-wrap {
  position: relative;
  padding: 20px;
}
footer .foot-wrap:before {
  content: "";
  position: absolute;
  left: 0;
  right: 70%;
  bottom: 0;
  top: 0;
  border: 1px solid #d7ab79;
  border-right: 0;
  border-bottom: 0;
  opacity: 0.1;
  z-index: 0;
}
footer .foot-wrap h4 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 2px;
  margin: 0 0 20px 0;
  position: relative;
}
footer .foot-wrap .foot-list {
  list-style: none;
  padding: 0;
  position: relative;
}
footer .foot-wrap .foot-list li {
  margin: 0 0 10px 0;
}
footer .foot-wrap .foot-list li a {
  color: #ffffff;
  text-transform: capitalize;
}
footer .foot-wrap .foot-list li a:hover {
  color: #d7ab79;
}
footer .foot-wrap .foot-contact {
  list-style: none;
  padding: 0;
}
footer .foot-wrap .foot-contact li {
  margin: 0 0 10px 0;
}
footer .foot-wrap .foot-contact li a {
  color: #ffffff;
  display: flex;
}
footer .foot-wrap .foot-contact li a:hover {
  color: #d7ab79;
}
footer .foot-wrap .foot-contact li a i {
  font-size: 20px;
  width: 30px;
  text-align: center;
  margin: 0 5px 0 0;
  color: #d7ab79;
}
footer .copy-r {
  border-top: 1px solid rgba(215, 171, 121, 0.2);
  padding: 20px 0;
  margin: 20px 0 0 0;
}
footer .copy-r .copy-contn {
  justify-content: space-between;
  display: flex;
  color: #fff;
}
footer .copy-r .copy-contn a {
  color: #d7ab79;
}

.scrollTop {
  position: fixed;
  right: 4%;
  bottom: 40px;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
  z-index: 9;
  color: #fff;
}
.scrollTop:hover {
  bottom: 45px;
}
.scrollTop i {
  color: #000;
  background-color: #d7ab79;
  height: 40px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  border-radius: 4px;
  transition: 0.4s ease-in-out;
  font-size: 20px;
}

/*inner page page-banner*/
.page-banner {
  padding: 100px 0;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.page-banner:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.page-banner .container {
  position: relative;
}
.page-banner .container .banr-wrap h2 {
  color: #d7ab79;
  display: inline-block;
  position: relative;
  padding: 0 100px 0 0;
}
.page-banner .container .banr-wrap h2:before {
  content: "";
  width: 70px;
  height: 1px;
  background-color: #d7ab79;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translatey(-50%);
}
.page-banner .container .banr-wrap h2:after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #d7ab79;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translatey(-50%);
  transition: 0.4s ease-in-out;
}

/*service single page*/
.service-inq {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.form-wrap h3 {
  color: #d7ab79;
  position: relative;
  display: inline-block;
  padding: 0 100px 0 0;
  text-transform: capitalize;
  margin: 0 0 20px 0;
}
.form-wrap h3:before {
  content: "";
  width: 80px;
  height: 1px;
  background: #d7ab79;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  right: 0;
}
.form-wrap form h4 {
  color: #ffffff;
  font-size: 14px;
  text-transform: capitalize;
}
.form-wrap form .form-control,
.form-wrap form .form-select {
  margin: 0 0 20px 0;
  border-radius: 4px;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #777;
}
.form-wrap form .form-control::-moz-placeholder, .form-wrap form .form-select::-moz-placeholder {
  color: #777;
}
.form-wrap form .form-control::placeholder,
.form-wrap form .form-select::placeholder {
  color: #777;
}
.form-wrap form .form-control:focus,
.form-wrap form .form-select:focus {
  border-color: #d7ab79;
  box-shadow: none;
}
.form-wrap form .btn {
  color: #d7ab79;
  display: inline-block;
  padding: 10px 50px 10px 10px;
  position: relative;
  text-transform: capitalize;
  background: none;
  border: none;
  font-weight: 500;
}
.form-wrap form .btn:hover {
  background-color: none !important;
}
.form-wrap form .btn:before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #d7ab79;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translatey(-50%);
}
.form-wrap form .btn:after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #d7ab79;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translatey(-50%);
  transition: 0.4s ease-in-out;
}
.form-wrap form .btn:hover:after {
  right: -7px;
}

/*gallery page*/
.pictures-wrap {
  padding: 100px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.pictures-wrap:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
}
.pictures-wrap .picture-card {
  position: relative;
  overflow: hidden;
  margin: 0 0 20px 0;
}
.pictures-wrap .picture-card .img-wrap {
  border: 1px solid rgba(215, 171, 121, 0.4);
  border-radius: 5px;
}
.pictures-wrap .picture-card .img-wrap figure {
  padding-top: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.pictures-wrap .picture-card .img-wrap figure:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
  opacity: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.7);
}
.pictures-wrap .picture-card .img-wrap figure img {
  transform: scale(1);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}
.pictures-wrap .picture-card .img-wrap .pic-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgba(215, 171, 121, 0.7);
  padding: 10px 20px 10px 10px;
  color: #000;
  text-align: left;
  text-transform: capitalize;
  border-radius: 0 0 5px 5px;
  text-align: center;
}
.pictures-wrap .picture-card:hover figure:before {
  opacity: 1;
}
.pictures-wrap .picture-card:hover figure img {
  transform: scale(1.2) rotate(-5deg);
}
.pictures-wrap .picture-card .pic-dtls {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  transition: 0.6s ease-in-out;
  opacity: 0;
}
.pictures-wrap .picture-card .pic-dtls a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  text-align: center;
  margin: 0;
  display: inline-block;
  letter-spacing: initial;
  border-radius: 60px;
  background: rgba(215, 171, 121, 0.5);
}
.pictures-wrap .picture-card .pic-dtls a:hover {
  background: rgb(215, 171, 121);
  color: #fff;
}
.pictures-wrap .picture-card:hover .pic-dtls {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.pgnation .pagination {
  justify-content: center;
}
.pgnation .pagination .page-item .page-link {
  margin: 5px;
  border-color: #d7ab79;
  color: #fff;
  background-color: transparent;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 38px;
  padding: 0;
  text-align: center;
}
.pgnation .pagination .page-item .page-link:hover {
  background: #d7ab79;
  border-color: #d7ab79;
}
.pgnation .pagination .page-item.active .page-link {
  background: #d7ab79;
  border-color: #d7ab79;
}
.pgnation .pagination .page-item:first-child .page-link, .pgnation .pagination .page-item:last-child .page-link {
  border-radius: 50%;
}

/*FAQs page*/
.faq-body {
  padding: 50px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.faq-body:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
}
.faq-body .container {
  position: relative;
}
.faq-body .container .card {
  border: none;
  margin: 0 0 20px 0;
  background: none;
}
.faq-body .container .card .card-header {
  background: #d7ab79;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 15px;
  color: #000;
  border-radius: 4px;
}
.faq-body .container .card .card-header .mb-0 > a {
  display: block;
  position: relative;
  font-size: 18px;
  color: #000;
}
.faq-body .container .card .card-header .mb-0 > a:after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  right: 0;
  font-weight: 600;
  color: #fff;
}
.faq-body .container .card .card-header .mb-0 > a[aria-expanded=true]:after {
  content: "\f068";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
}
.faq-body .container .card .card-body {
  background: #000000;
  color: #ffffff;
  font-size: 18px;
  line-height: 26px;
  padding: 10px 10px 20px 10px;
}

/*contact page*/
.contact-body {
  padding: 100px 0 0 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-position: center;
}
.contact-body .ft-card {
  text-align: center;
  margin: 0 0 30px 0;
}
.contact-body .ft-card .icon-wrap {
  display: inline-block;
  border-bottom: 3px solid #d7ab79;
  margin: 0 0 20px 0;
}
.contact-body .ft-card .icon-wrap span {
  background: #d7ab79;
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin: 0 0 5px 0;
}
.contact-body .ft-card .ft-dtl strong {
  display: block;
  text-transform: capitalize;
  color: #ffffff;
}
.contact-body .ft-card .ft-dtl small {
  font-weight: 500;
  color: #eee;
}
.contact-body .ft-card .ft-dtl small a {
  font-weight: 500;
  color: #eee;
}
.contact-body .ft-card .ft-dtl small a:hover {
  color: #d7ab79;
}
.contact-body .form-wrap {
  margin: 0 0 30px 0;
}

/*for quick quote*/
#quoteModal .modal-header {
  background-color: #d7ab79;
}
#quoteModal .modal-body {
  background-color: #000000;
  border: 1px solid #d7ab79;
}/*# sourceMappingURL=custom.css.map */

.welcome-wrap a, .welcome-wrap a:visited{
    color: #d7ab79;
}

.why-card a, .why-card a:visited{
    color: #d7ab79;
}