@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Start Global Settings */
body {
  font-size: 15px;
  color: #7f8a99;
  line-height: 1.6em;
  font-weight: 400;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #d5ae82;
}

a:hover,
a:focus,
a:visited,
a:active,
button:active {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-weight: normal;
  margin: 0px 0px 15px;
  background: none;
  line-height: 1.25em;
  font-family: "Playfair Display", cursive;
}

h1 {
  font-size: 90px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 14px;
}
/* End Global Settings */
/* Start Header Styles */
header {
  /* position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 5; */
}
.top-header {
  background-color: #061138;
  display: none;
}
@media screen and (min-width: 992px) {
  .top-header {
    display: block;
  }
}
.top-header ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  height: 52px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.top-header ul li {
  position: relative;
  margin-right: 61px;
}
.top-header ul li:not(:last-of-type):after {
  content: "";
  position: absolute;
  right: -30px;
  top: 0;
  height: 100%;
  width: 1px;
  transform: translateX(50%);
  background: rgba(255, 255, 255, 0.2);
}
.top-header ul li a {
  color: #fff;
}
.desktop-nav .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.desktop-nav .brand img {
  height: 50px;
  display: block;
}
.top-header ul li a:hover {
  color: #d5ae82;
  text-decoration: underline;
}

.desktop-nav {
  background-color: #fff;
  padding-top: 12px;
  padding-bottom: 12px;
}

.desktop-nav nav {
  display: none;
}

@media screen and (min-width: 992px) {
  .desktop-nav {
    padding-top: 0;
    padding-bottom: 0;
  }
  .desktop-nav nav {
    display: block;
  }
}
.desktop-nav nav ul {
  list-style: none;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.desktop-nav nav ul li {
  margin-right: 40px;
}
.desktop-nav nav ul li a {
  display: block;
  font-size: 14px;
  line-height: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #25283a;
  padding: 20px 0px;
  opacity: 1;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.desktop-nav nav ul li a:hover {
  color: #d5ae82;
}

.mobile-menu-toggle {
  cursor: pointer;
  width: 30px;
  height: 20px;
  display: block;
  position: relative;
}
@media screen and (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu-toggle span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-toggle span,
.mobile-menu-toggle::before,
.mobile-menu-toggle::after {
  width: 30px;
  height: 2px;
  background-color: #000;
  display: block;
}

.mobile-menu-toggle::before,
.mobile-menu-toggle::after {
  content: "";
  position: absolute;
}

.mobile-menu-toggle::before {
  top: 0;
}
.mobile-menu-toggle::after {
  bottom: 0;
}
.mobile-nav {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: #202020e0;
  min-width: 50vw;
  transform: translateX(100%);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.mobile-nav.show {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav nav {
  margin-top: 80px;
}
.mobile-nav nav ul {
  list-style: none;
  padding: 0;
}
.mobile-nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav ul li a {
  display: block;
  line-height: 24px;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
}
.mobile-nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #d5ae82;
  display: block;
  opacity: 0;
  visibility: hidden;
}
.mobile-nav ul li a:hover {
  color: #d5ae82;
}
.mobile-nav ul li a:hover::before {
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  color: #fff;
  font-size: 28px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
/* End Header Styles */
/* Start Hero Section */
.hero {
  /* padding-top: 50px; */
}
.hero .heroCarousel-item {
  position: relative;
}
.hero .heroCarousel-item:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0) 24%,
    rgba(6, 17, 56, 1) 100%
  );
}

.hero .heroCarousel-item .heroCarousel-caption {
  width: 100%;
  height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero .heroCarousel-item .heroCarousel-caption h2 {
  display: block;
  font-size: 40px;
  line-height: 1.1em;
  color: #ffffff;
  font-weight: 800;
  opacity: 0;
  margin-bottom: 25px;
  text-transform: capitalize;
  letter-spacing: 0;
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -o-transform: translateY(80px);
  transform: translateY(80px);
  text-transform: capitalize;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .hero .heroCarousel-item .heroCarousel-caption h2 {
    font-size: 90px;
    text-align: left;
  }
}
.hero .swiper-slide-active .heroCarousel-caption h2 {
  opacity: 1;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  transform: translate(0);
  -webkit-transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}
.hero .heroCarousel-item .heroCarousel-caption .text {
  display: block;
  font-size: 16px;
  line-height: 1.7em;
  color: #ffffff;
  font-weight: 400;
  opacity: 0;
  margin-bottom: 42px;
  max-width: 520px;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  text-align: center;
}
@media screen and (min-width: 992px) {
  .hero .heroCarousel-item .heroCarousel-caption .text {
    text-align: left;
  }
}
.hero .swiper-slide-active .heroCarousel-caption .text {
  opacity: 1;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  transform: translate(0);
  -webkit-transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
  -webkit-transition-delay: 1100ms;
  -moz-transition-delay: 1100ms;
  -ms-transition-delay: 1100ms;
  -o-transition-delay: 1100ms;
  transition-delay: 1100ms;
}

.hero .heroCarousel-item img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.hero .swiper-slide-active img {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
  -webkit-transition: all 7000ms linear;
  -moz-transition: all 7000ms linear;
  -ms-transition: all 7000ms linear;
  -o-transition: all 7000ms linear;
  transition: all 7000ms linear;
}
.hero .heroCarousel-item .heroCarousel-caption .actions {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .hero .heroCarousel-item .heroCarousel-caption .actions {
    text-align: left;
  }
}

.hero .heroCarousel-item .heroCarousel-caption .cta-button {
  position: relative;
  display: inline-block;
  font-size: 13px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 600;
  padding: 10px 45px;
  background: none;
  border: 2px solid #ffffff;
  border-radius: 0px;
  z-index: 1;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.hero .heroCarousel-item .heroCarousel-caption .cta-button:hover {
  background: #d5ae82;
  border-color: #d5ae82;
  color: #ffffff;
}
.hero .heroCarousel-item .heroCarousel-caption .actions {
  position: relative;
  opacity: 0;
  z-index: 5;
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -o-transform: translateY(80px);
  transform: translateY(80px);
}

.hero .swiper-slide-active .heroCarousel-caption .actions {
  opacity: 1;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  transform: translate(0);
  -webkit-transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transition-delay: 1100ms;
  -moz-transition-delay: 1100ms;
  -ms-transition-delay: 1100ms;
  -o-transition-delay: 1100ms;
  transition-delay: 1100ms;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.heroCarousel-next,
.heroCarousel-prev {
  background: #ffffff;
  height: 70px;
  width: 70px;
  border: none;
  text-align: center;
  line-height: 70px;
  color: #d5ae82;
  font-size: 24px;
  border-radius: 0;
  opacity: 1;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.heroCarousel-next {
  right: 40px;
}

.heroCarousel-prev {
  left: 40px;
}
.hero .swiper-pagination-bullet {
  height: 5px;
  width: 30px;
  border-radius: 2px;
}
.hero .swiper-pagination-bullet-active {
  background-color: #d5ae82;
}

/* End Hero Section */
/* Start Features Section */
.features {
  background: #061138;
}
.feature-block {
  padding: 70px 0 70px 0;
  min-height: 80px;
  height: 100%;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}



@media screen and (min-width: 992px) {
  .feature-block {
    border-bottom: none;
    padding-left: 30px;
  }
  .features .feature:not(:first-of-type) .feature-block:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
  }
}
.feature-block h3 {
  color: #fff;
  font-size: 24px;
  line-height: 1.3em;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.feature-block .text {
  font-size: 15px;
  line-height: 1.6em;
  font-weight: 400;
  color: #868da5;
  margin-bottom: 30px;
}

.feature-block .text p {
  margin: 0;
}
/* End Features Section */
/* Start Services Section */
.services {
  padding: 100px 0px;
}
.service-block {
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.service-block:not(:last-of-type) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-block .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-block .content h3 {
  line-height: 1.35em;
  color: #061138;
  margin-bottom: 25px;
  text-transform: capitalize;
}
.service-block .content .text {
  position: relative;
  font-size: 15px;
  color: #7f8a99;
  padding-top: 26px;
}

.service-block .content .text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 70px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 992px) {
  .service-block:not(.reverse) .image {
  margin-left: 45px;
}
.service-block.reverse .image {
  margin-right: 45px;
}
}

/* End Services Section */
/* START Footer */
footer {
  background: #061138;
  color: #868da5;
}

.footer-wrapper {
  padding: 90px 0px 50px;
}

footer .footer-brand {
  display: block;
  margin-bottom: 30px;
}
footer .footer-brand img {
  height: 50px;
}

footer .footer-links {
  list-style: none;
  padding: 0;
}

footer .footer-links,
footer .footer-services {
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  footer .footer-links,
  footer .footer-services {
    margin-bottom: 0;
  }
}
footer .footer-links li {
  position: relative;
  line-height: 24px;
  color: #868da5;
  font-size: 14px;
  padding-left: 25px;
  margin-bottom: 7px;
}

footer .footer-links li i {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(5px);
  color: #d5ae82;
}

footer .footer-links li a {
  color: #868da5;
  display: block;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

footer .footer-links li a:hover {
  color: #d5ae82;
  text-decoration: underline;
}

footer h4 {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 15px;
  position: relative;
  display: block;
  line-height: 1.3em;
  font-size: 24px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 400;
}

footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

footer .footer-services {
  list-style: none;
  padding: 0;
}

footer .footer-services li a {
  position: relative;
  display: block;
  color: #868da5;
  font-size: 15px;
  padding-left: 20px;
  margin-bottom: 12px;
  line-height: 24px;
  text-transform: capitalize;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

footer .footer-services li a:hover,
footer .footer-services li a:hover:before {
  color: #d5ae82;
}

footer .footer-services li a:before {
  content: "+";
  font-family: "Playfair Display", serif;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 22px;
  font-size: 20px;
  font-weight: 400;
}

footer .footer-address a {
  display: block;
  color: #868da5;
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 24px;
  text-transform: capitalize;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
footer .footer-address a {
  color: #d5ae82;
}

footer .footer-address a {
  position: relative;
  line-height: 24px;
  color: #868da5;
  display: block;
  font-size: 14px;
  padding-left: 25px;
  font-size: 15px;
  margin-bottom: 30px;
  line-height: 24px;
  text-transform: capitalize;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

footer .footer-address a i {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(5px);
  color: #d5ae82;
}

footer .footer-address a:hover {
  color: #d5ae82;
}

footer .embed-map iframe {
  width: 100%;
  max-height: 300px;
}
.footer-bottom {
  position: relative;
  line-height: 24px;
  padding: 12px 0px;
  text-transform: capitalize;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom .copyright {
  text-align: center;
}
/* End Footer */

.banner {
  position: relative;
  background-position: bottom;
  background-size: cover;
}

.banner .banner-inner {
  padding: 130px 0px;
  text-align: center;
}

.banner h1 {
  position: relative;
  font-size: 48px;
  color: #ffffff;
  line-height: 1.2em;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.banner .breadcrumb {
  padding-bottom: 15px;
  margin-bottom: 0;
  --bs-breadcrumb-divider-color: #fff;
}
.banner .breadcrumb-item {
  color: #ffffff;
  font-weight: 500;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.banner .breadcrumb-item:hover {
  color: #d5ae82;
}

.banner .breadcrumb-item.active {
  color: #ffffff;
  font-weight: 500;
}
.contact {
  padding: 90px 0px 60px;
}
.contact iframe {
  width: 100%;
}
.contact h3 {
  text-transform: uppercase;
  color: #061138;
  font-size: 20px;
  line-height: 1.2em;
  margin: 0 0 5px;
}
.contact .text {
  position: relative;
  display: block;
  color: #868da5;
  font-size: 15px;
  background: #ffffff;
  line-height: 1.7em;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.contact .text p {
  margin: 0;
}
.contact .contact-box {
  position: relative;
  padding-left: 31px;
  margin: 40px 0;
}
.contact .contact-box:not(:last-of-type):after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.contact .contact-box i {
  position: absolute;
  top: 3px;
  left: 0;
  color: #d5ae82;
  font-size: 20px;
}
.our-services {
  padding: 90px 0px 60px;
}

.our-services img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-services h3 {
  line-height: 1.35em;
  color: #061138;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.our-services .text {
  position: relative;
  font-size: 15px;
  color: #7f8a99;
  padding-top: 26px;
}
.our-services .text p {
  margin: 0;
}

.our-services .our-services-box img {
  margin-bottom: 30px;
}

@media screen and (min-width: 992px) {
   .our-services .our-services-box img {
  margin-bottom: 0;
} 
}

.our-services .our-services-box:not(:last-of-type) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.gallery .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery .gallery-item:hover .overlay {
  opacity: 1;
}

.gallery .overlay i {
  font-size: 2rem;
  color: #fff;
}

.gallery .filter-btns {
  margin-bottom: 1rem;
  text-align: center;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery .filter-btns button {
  position: relative;
  display: block;
  font-size: 13px;
  line-height: 22px;
  color: #061138;
  font-weight: 600;
  padding: 10px 38px;
  min-height: 42px;
  background: #fff;
  border-radius: 0px;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.gallery .filter-btns button:hover,
.gallery .filter-btns button.active {
  background-color: #d5ae82;
  color: #fff;
  border-color: #d5ae82;
}

.gallery .d-none {
  display: none !important;
}
