/* Fonts */
:root {
  --default-font: "Manrope", sans-serif, "Roboto", system-ui, -apple-system,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans",
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    "Noto Color Emoji";
  --heading-font: "marquezregular";
  --nav-font: "marquezregular";
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #eeece6;
  /* Background color for the entire website, including individual sections */
  --default-color: #101010;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #101010;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ccb162;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;
  /* The default color of the main navmenu links */
  --nav-hover-color: #ccb162;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #101010;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #101010;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #fff;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ccb162;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f7f7f7;
  --surface-color: #ffffff;
}
/*101010*/
.dark-background {
  --background-color: #101010;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

.g-color{ color: #ccb162}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font); 
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: normal;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: normal;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.header {
  --background-color: rgba(16,16, 16, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: normal;
  color: var(--heading-color);
  border-left: 4px solid var(--accent-color);
  padding-left: 8px;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(16,16, 16, 0.1);
}

@media (min-width: 992px) {
  .logo-xl {
    max-width: 80px;
  }

  .logo-sm {
    display: none;
  }
}

@media (max-width: 991px) {
  .logo-xl {
    display: none;
  }

  .logo-sm {
    display: block;
    max-width: 50px;
  }
}

.top-block {
  padding: 0 20px 0 0px !important;
}







/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(16,16, 16, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 13px;
    font-family: var(--nav-font);
    font-weight: normal;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(16,16, 16, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(16,16, 16, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: url("../img/foot-bg.jpg") 0 0 no-repeat;
  font-size: 16px;
  position: relative;
  padding: 32% 0 0 0;
}

.footer::after {
  position: absolute;
  background: #101010;
  background: -webkit-linear-gradient(
    0deg,
    rgba(4, 14, 39, 1) 0%,
    rgba(4, 14, 39, 0) 73%
  );
  background: -moz-linear-gradient(
    0deg,
    rgba(4, 14, 39, 1) 0%,
    rgba(4, 14, 39, 0) 73%
  );
  background: linear-gradient(
    0deg,
    rgba(4, 14, 39, 1) 0%,
    rgba(4, 14, 39, 0) 73%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#101010",
			endColorstr="#101010",
			GradientType=0);
  left: 0;
  right: 0;
  bottom: 0;
  height: 70%;
  content: "";
}

.footer .footer-top {
  padding-top: 50px;
  position: relative;
  z-index: 1;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: normal;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 13px;

  position: relative;
  font-family: "midland_luxuryregular";
  padding-bottom: 12px;
  color: #ccb162;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #fff;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

p.copy {
  font-family: "Manrope", sans-serif !important;
  margin-top: 40px; color: #fff;
}

@media (min-width: 1100px) {
  .main {
    background: #f5f5f5;
    position: relative;
    z-index: 3;
    margin-bottom: 46%;
  }

  /*
.footer	{
  padding: 32% 0 0 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  
 }	*/
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 50%
  );
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: normal;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: normal;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 85px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    /*scroll-margin-top: 66px;*/
  }
}

section {
  height: 100%;
  scroll-snap-align: start;
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 62px;
  font-weight: normal;
  margin-bottom: 10px;
  padding-bottom: 0px;
  position: relative;
  line-height: 70px;
}

.section-title h6 {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  line-height: 34px;
  margin-bottom: 30px;
}

/*
.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
*/
.section-title p {
  margin-bottom: 0;
  font-size: 18px;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.5px;
  line-height: 34px;
}

.swiper-pagination {
  left: 25px !important;
  right: auto !important;
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 16px 0;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #ccb162;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/



#section-one .main-slider .slider-item::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  content: "";
  background: rgba(0,0, 0, 0);
  z-index: 3;
  width: 100%;
  height: 100%;
}
.hero_intro_content{
  text-align: center;
  z-index: 99;
  width: 735px;
  max-width: 100%;
}
.hero_intro_heading {
  text-align: center;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: .75rem;
  text-transform: uppercase;
  font-family: OptimaLTPro Roman, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.05em;
  color: #fff;
}
.hero_intro_text.text-size-large {
  text-align: center;
  max-width: 600px;
  margin-bottom: 3rem;
  font-family: Graphik Regular, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75em;
  margin-left: auto;
  margin-right: auto;
}

.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 30%
  );
  position: absolute;
  inset: 0;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: normal;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {
  .hero h2,
  .hero p {
    max-width: 60%;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: normal;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  padding: 40px 0 10px 0;
}

.featured-services .service-item {
  position: relative;
  height: 100%;
  margin-bottom: 30px;
}

.featured-services .service-item .icon {
  margin-right: 20px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 40px;
  line-height: 0;
  transition: 0.3s;
}

.featured-services .service-item:hover .icon i {
  color: var(--accent-color);
}

.featured-services .service-item .title {
  color: var(--heading-color);
  font-weight: normal;
  margin-bottom: 10px;
  font-size: 20px;
  transition: 0.3s;
}

.featured-services .service-item .description {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 10px;
}

.featured-services .service-item .readmore {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: 0.3s;
  font-weight: normal;
  font-size: 14px;
}

.featured-services .service-item .readmore i {
  margin-left: 8px;
}

.featured-services .service-item:hover .title,
.featured-services .service-item:hover .readmore,
.featured-services .service-item:hover .icon i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content h3 {
  font-size: 2rem;
  font-weight: normal;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .about-images img {
  border-radius: 10px;
}

.about h2,
.about h6,
.about p {
  color: #fff;
}
.about h2 {
  font-size: 66px;
  font-weight: normal;
}
#section-two {
  background: url("../img/about-bg.webp") center center no-repeat;
  background-size: cover;
  display: flex;
  justify-content: start;
  align-items: end;
  color: #fff;
  padding: 15px;
}

.about p {
  color: #fff;
  font-size: 20px;
}

.about h6 {
  font-size: 24px;
  line-height: 30px;
  text-transform: uppercase;
  font-family: "Manrope", sans-serif;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--accent-color);
  font-weight: normal;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: normal;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

.services .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services .service-item .title {
  font-weight: normal;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover .title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: normal;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 16px;
  font-weight: normal;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: normal;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: normal;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

.testimonial-item img {
  width: 100px !important;
  border-radius: 120px;
  margin: 0 20px 0 0;
}

.section-title.scritp-title h2 {
  font-family: "linda_handwritingregular";
  color: #ccb162;
  font-size: 100px;
}

.testi-wrap {
  padding: 60px;
}

.testimonial-item p {
  font-size: 20px;
  line-height: 34px;
}

.testimonial-item p i {
  color: #ccb162;
  font-size: 38px;
}

.testimonial-author {
  margin: 70px 0 0 0;
}

.testimonial-author h3 {
  font-family: "midland_luxuryregular";
  font-size: 16px;
}

.testimonial-author h4 {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
  --default-color: #ffffff;
}

.team .member {
  text-align: center;
  position: relative;
  height: 100%;
}

.team .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}

.team .member:hover .member-info {
  background: rgba(16,16, 16, 0.6);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

.team .member h4 {
  color: var(--contrast-color);
  font-weight: normal;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  transition: 0.3s;
  color: var(--default-color);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding: 60px 0 120px 0;
}

.pricing .section-title {
  margin-bottom: 40px;
}

.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(16,16, 16, 0.1);
  padding: 60px 40px;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: normal;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: var(--background-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: normal;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: normal;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: none;
  font-size: 16px;
  font-weight: normal;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
  border: 3px solid var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact-wrap {
  background: #101010 url("../img/checkbox.png") 0 0;
  color: #fff;
  text-align: center;
  padding: 20px 30px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact-wrap h2 {
  color: #fff;
}

.info-item h6 {
  margin: 0;
  font-size: 12px;
  color: #fff;
}

.info-item i {
  font-size: 29px !important;
  margin: -8px 15px 0 0;
}

.contact .info-item h3 {
  font-size: 24px;
  font-weight: normal;
  margin: 20px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

@media (min-width: 992px) {
  .contact .info-item.info-item-borders {
    border-left: 1px solid
      color-mix(in srgb, var(--default-color), transparent 85%);
    border-right: 1px solid
      color-mix(in srgb, var(--default-color), transparent 85%);
  }
}

.contact .php-email-form {
  padding: 30px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form select,
.contact .php-email-form textarea {
  font-size: 16px;
  padding: 16px 0px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 50%
  );
  border-width: 0 0 1px 0;
  background: transparent;
  color: #fff;
  font-family: "albertus_mt_stdregular";
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form select:focus,
.contact .php-email-form textarea:focus,
.contact .form-check-input:focus {
  border-color: 0px;
  box-shadow: none;
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form select::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.9);
  font-family: "albertus_mt_stdregular";
}

.contact .php-email-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.contact .form-check-input:checked {
  background-color: #ead169;
  border-color: #ead169;
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/


.main-wrap {
  position: relative;
  z-index: 1;
}
.blog-ani {
  position: fixed;
}


.main-wrap .page-title.dark-background, .main-wrap .page-title::before {
  
}


.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(16,16, 16, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 20px;
  font-weight: normal;
  padding: 0;
  margin: 20px 0 0 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li + li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .read-more a {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  /*background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(16,16, 16, 0.1);*/
}

.blog-details .post-img {
  /*margin: -30px -30px 20px -30px;
  overflow: hidden;*/
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: normal;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: normal;
}
.blog-details p {
  line-height: 28px;
  font-size: 16px;
}

.back-link a {
  background: #101010;
  border-radius: 5px;
  padding: 10px 20px;
  margin-top: 40px;
  display: inline-flex;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.3px; transition:1s;
}

.back-link a:hover {
  background: #ccb162; margin-left:7px;  
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.3px;
}


.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: normal;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li + li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li + li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: normal;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: normal;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(16,16, 16, 0.1);
}

.comment-form form h4 {
  font-weight: normal;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(16,16, 16, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: normal;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid
    color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: normal;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: normal;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
/*
.sidebar .widgets-container .widget-title,
.sidebar .widgets-container a,
.sidebar .widgets-container h4,
.sidebar .widgets-container h4 a,
.sidebar .widgets-container time
{ color: #fff}*/

.widgets-container {  
  padding: 30px;
  margin: 60px 0 30px 0;
  
}

.blog-social-links {
 margin-top: 70px;
  margin-bottom: 70px;
  border-top: 1px dashed #101010;
  padding-top: 30px;
}

.blog-social-links .social-links a{ border-color: #ccb162 }

.blog-social-links .social-links a i {
  color:#ccb162;
}

.widget-title {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: normal;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type="text"] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type="text"]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: #fff;
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 25px;
  height: 85px;
  overflow: hidden;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 110px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 5px;
  line-height: 26px; letter-spacing:0.5px;
}

.recent-posts-widget .post-item h4 a {
  color: #101010;
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: #101010;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/******
	
	
	animation button
	
	********/

.buttons {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  height: 60px;
}

.blob-btn {
  z-index: 1;
  position: relative;
  padding: 10px 25px;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #ccb162;
  font-size: 14px;
  font-weight: bold;
  background-color: transparent;
  outline: none;
  border: none;
  transition: color 0.5s;
  cursor: pointer;
  border-radius: 8px;
}

.blob-btn:before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #ccb162;
  border-radius: 8px;
}

.blob-btn:after {
  content: "";
  z-index: -2;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 100%;
  height: 100%;
  transition: all 0.3s 0.2s;
  border-radius: 8px;
}

.blob-btn:hover {
  color: #ffffff;
  border-radius: 8px;
}

.blob-btn:hover:after {
  transition: all 0.3s;
  left: 0;
  top: 0;
  border-radius: 8px;
}

.blob-btn__inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: transparent;
}

.blob-btn__blobs {
  position: relative;
  display: block;
  height: 100%;
  filter: url("#goo");
}

.blob-btn__blob {
  position: absolute;
  top: 2px;
  width: 25%;
  height: 100%;
  background: #ccb162;
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.7);
  transition: transform 0.45s;
}

@supports (filter: url("#goo")) {
  .blob-btn__blob {
    transform: translate3d(0, 150%, 0) scale(1.4);
  }
}

.blob-btn__blob:nth-child(1) {
  left: 0%;
  transition-delay: 0s;
}

.blob-btn__blob:nth-child(2) {
  left: 30%;
  transition-delay: 0.08s;
}

.blob-btn__blob:nth-child(3) {
  left: 60%;
  transition-delay: 0.16s;
}

.blob-btn__blob:nth-child(4) {
  left: 90%;
  transition-delay: 0.24s;
}

.blob-btn:hover .blob-btn__blob {
  transform: translateZ(0) scale(1.7);
}

@supports (filter: url("#goo")) {
  .blob-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(1.4);
  }
}

/***
	Project Block
	
	****/

.pro-block {
}

.pro-block h4 {
  font-family: "midland_luxuryregular";
  font-size: 14px;
  text-align: center;
  margin: 32px 0 0 0;
  letter-spacing: 1px;
}

.pro-inner {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.pro-block:hover .pro-desc {
  transform: translateY(0px);
}

.pro-inner img {
  border-radius: 20px;
}

.pro-desc {
  background: #101010;
  position: absolute;
  bottom: 60px;
  left: 20px;
  right: 20px;
  padding: 40px;
  transition: 0.8s;
  border-radius: 20px;
  transform: translateY(460px);
}

.pro-desc h6 {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pro-desc h2 {
  color: var(--accent-color);
  font-size: 18px;
  line-height: 48px;
  margin-bottom: 30px;
}

.pro-desc p {
  font-family: "albertus_mt_stdregular";
  color: #fff;
  font-size: 18px;
}

/****

map area

*/

.map-area1:hover {
  background: red;
  width: 100px;
  height: 100px;
}

.state-wrap .icon-box .purecounter {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
  text-align: left;
  font-family: "albertus_mt_stdregular";
}

.state-wrap .icon-box h3 {
  font-size: 15px;
  text-align: left;
}

.state-wrap .icon-box {
  min-width: 49.5%;
  padding: 15px;
}

.icon-box-wrap {
  background: #101010;
  outline: 6px solid #f5f5f5;
  outline-offset: -6px;
}

.icon-box-wrap .icon-box {
  background: #f5f5f5;
  margin: 1px;
}

.aa-services .ser-desc h3 {
  font-size: 12px;
  margin: 30px 0 0 0;
}

.aa-services .swiper-navBtn {
  width: 56px;
  height: 50px;
  padding: 15px;
  border-radius: 5px;
  background: transparent;
}

.aa-services .swiper-button-lock {
  display: none;
}

.aa-services .swiper-button-next::after,
.aa-services .swiper-button-prev::after {
  display: none;
}

.aa-services .swiper-navBtn {
  background: #ead169;
}

.aa-services .swiper-navBtn.swiper-button-prev {
  transform: rotate(180deg);
}

.newsletter-form input[type="email"] {
  background: #fff;
  border-radius: 60px;
  border: 0;
  padding: 17px 100px 17px 25px;
  min-width: 350px;
}

.newsletter-form input[type="submit"] {
  background: #ead169;
  font-family: "midland_luxuryregular";
}

.newsletter-form input[type="submit"] {
  background: #ead169;
  font-family: "midland_luxuryregular";
  border-radius: 80px;
  border: 0;
  font-size: 11px;
  padding: 18px 26px 10px;
  margin-left: -90px;
  letter-spacing: 0.8px;
}

.loti-icon {
  position: absolute;
  right: 230px;
  top: 60px;
  width: 140px;
  transform: rotate(-50deg);
}

.top-block {
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 80px;
  box-sizing: border-box;
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  background: rgba(16,16,16,0.2);
  height: 75px;
}

.intro {
  z-index: 99;
  position: relative;
}

.btn-wrap a {
  color: #fff;
  position: relative;
  transition: 1s;
  display: inline-block;
  background: rgba(16,16, 16, 0.5);
  padding: 10px 30px;
  border-radius: 10px;
  transition: 1s;
}

.btn-wrap a i {
  margin-left: 10px;
  display: none;
  transition: 1s;
}

.btn-wrap a:hover {
  padding-left: 20px;
  transition: 1s;
}

.btn-wrap a:hover i {
  display: inline-block;
  transition: 1s;
}


.map-hover {
  position: relative;
}

.map-hover .map-span.left {
  position: absolute;
  background: #fff;
  width: 50px;
  height: 50px;
  left: 20%;
  top: 63%;
  border-radius: 50px;
  outline: 2px solid #ddd;
  outline-offset: 10px;
  transition: 1s;
}

.map-hover .map-span.left .map-info {
  position: absolute;
  width: 240px;
  background: #fff;
  top: -335%;
  left: 115%;
  outline: 2px solid #ddd;
  outline-offset: 10px;
  transition: 1s;
  transform: translateY(-30px);
  display: none;
}

.map-hover .map-span.left:hover .map-info,
.map-hover .map-span.right:hover .map-info {
  display: block;
  transform: translateY(0px);
}

.map-hover .map-span.right {
  position: absolute;
  background: #fff;
  width: 50px;
  height: 50px;
  right: 17%;
  top: 37%;
  border-radius: 50px;
  outline: 2px solid #ddd;
  outline-offset: 10px;
}

.map-hover .map-span.right .map-info {
  position: absolute;
  width: 240px;
  background: #fff;
  top: -335%;
  right: 115%;
  outline: 2px solid #ddd;
  outline-offset: 10px;
  transition: 1s;
  transform: translateY(-30px);
  display: none;
}

.map-hover .map-span .map-info h4 {
  font-size: 12px;
  margin: 10px 0;
}

.map-hover .map-span .map-info p {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
}

.map-hover .map-span .map-info .map-desc {
  padding: 20px;
}

.map-hover .map-span .map-info img {
}

/*****************************************************************************************************************************************************************************************************************
Smooth scroll css
*/

html,
body,
.container-wrap,
.content,
section {
  height: 100%;
  margin: 0;
  padding: 0;
}

.content > nav {
  position: fixed;
  z-index: 9999;
  right: 100px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.content > nav a {
  display: block;
  position: relative;
  height: 30px;
  margin: 20px 0;
}

.content > nav a::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 30px;
  border-radius: 5px;
  background-color: #fff;
}

.content > nav a:hover:after {
  background: rgba(255, 255, 244, 0.6);
}

.content > nav a.current:after {
  background: #ccb162;
  height: 30px;
}

.content section {
  position: relative;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

#section-one {
  background-color: #fff;
  position: relative;
}

#section-three {
  background: #101010;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: row;
  position: relative; padding-top: 60px;
}



#section-four {
  background: #fff;
}/*
.carousel-btn-wrap {
  position: absolute;
  width: 150px;
  left: 0;
  bottom: 0;
  height: 300px;
  right: 0;
  margin: auto; z-index:2
}
#section-four .carousel-control-prev {
  background: #101010;
  height: 61px;
  width: 70px;
  text-align: center;
  border-radius: 6px;
  opacity: 1;
  padding: 28px 7px 20px 14px;
  position: absolute;
  top: 0;
}
#section-four .carousel-control-next {
  background: #101010;
  opacity: 1;
  height: 61px;
  width: 70px;
  text-align: center;
  border-radius: 6px;
  padding: 28px 7px 20px 14px;
}*/

#section-one,
#section-two,
#section-three,
#section-four,
#section-five,
#section-siz,
#section-seven {
  position: relative;
}

h6.ami-name {
  font-size: 18px;
  letter-spacing: 0.5px;
  transition: 1s;
  text-align: left;
  padding-left: 40px;margin-bottom: 20px;
  position: relative; font-family: "Manrope", sans-serif;
}

h6.ami-name::before {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  width: 13px;
  height: 3px;
  content: "";
  background: #ccb162;
  border-radius: 4px;
}

h6.ami-name:hover {
  margin-left: 10px;
}

#section-three .container {
  position: relative;
  z-index: 9;
}
/*
#section-three::after {
	background: rgba(23, 46, 89, 0.97);
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}*/

.carouselproject .carousel-caption {
  position: absolute;
  left: 5%;
  color: #fff;
  text-align: left;
  width: 40%;
  padding: 20px;
  z-index: 4;
  top: 15%;
  height: 90px;
}

.carouselproject h6 {
  line-height: 58px;
  font-size: 12px;
  letter-spacing: 1.6px;
}

.carouselproject h5 {
  line-height: 42px;
  font-size: 44px;
  margin-bottom: 20px;
}

.carouselproject p {
  line-height: 30px;
  font-size: 18px;
}

.carouselproject::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";

  width: 100%;
  height: 100%;
  z-index: 1;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#101010+0,101010+100&1+0,0+100 */
  background: linear-gradient(
    60deg,
    rgba(16,16, 16, 0.7) 0%,
    rgba(16,16, 16, 0) 60%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.absolute-text-bottom {
  position: absolute;
  top: 180px;
  left: 80px;
}

.carousel-control-next, .carousel-control-prev{ z-index:3 }


/***Common css for carasoul arrow**/
/*
.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 90px;
  height: 24px;
}

.carousel-control-next-icon {
  background: url("../img/car-arrow-right.svg") 0 0 no-repeat;
  background-size: 40px;
}

.carousel-control-prev-icon {
  background: url("../img/car-arrow-left.svg") 0 0 no-repeat;
  background-size: 40px;
}

.horizon-wrap .carousel-control-next-icon,
.horizon-wrap .carousel-control-prev-icon {
  width: 40px;
  height: 24px;
}
/*
/***Common css for carasoul arrow**/

/*
.carouselproject .carousel-control-prev {
	position: absolute;
	top: 11%;
	height: 57px;
	width: 50px;
	left: 6%;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
}


.carouselproject .carousel-control-next {
	position: absolute;
	top: 11%;
	height: 57px;
	width: 50px;
	left: 10%;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
}*/
.gallery-slider::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60%;
  content: "";
 
  z-index: 2;
  background: #000000;
background: -webkit-linear-gradient(360deg,rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0) 100%);
background: -moz-linear-gradient(360deg,rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0) 100%);
background: linear-gradient(360deg,rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(
  startColorstr="#000000",
  endColorstr="#000000",
  GradientType=0
);
}
.ami-gallery {
  position: absolute;
  bottom: 13%;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 2;
  text-align: center;
  opacity: 1;
}

.ami-gallery h2 {
  
  font-size: 56px;
  color: #fff;
}

.title-space {
  position: relative;
}
/*
.title-space::after {
	position: absolute;

	left: 0;

	right: 0;

	top: 42%;

	content: "";

	height: 1px;

	background: #fff;

}*/

.title-space h2 {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0px 25px 0 !important;
  line-height: 50px;
  font-size: 44px;
  letter-spacing: 1px;
}

.title-space h5 {
  font-size: 11px;
  background: #101010;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 20px 40px;
  line-height: 40px;
  top: -7px;
}

#section-six {
  background: #fff;
}

#section-six::before {
  background: rgba(16,16, 16, 0.6);
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: auto;
  height: 60%;
  z-index: 1;
}

#section-six .container {
  z-index: 1;
}

/*
#section-six video {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}*/

#section-seven {
  background-image: url("../img/bg3.webp"); padding-top:60px;
}

#section-seven::before {
  background: rgba(23, 46, 89, 0.5);
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.foot-h2 {
  font-size: 56px;
  line-height: 74px;
  text-align: left;
}

.foot-contact {
  background: #fff;
  border-radius: 6px;
  position: relative;
  padding: 30px;
}

.foot-contact::after {
  background: rgba(255, 255, 255, 0.7);
  content: "";
  left: 0;
  right: 0;
  bottom: -17px;
  height: 33px;
  width: 100%;
  position: absolute;
  border-radius: 0 0 6px 6px;
}

.foot-contact::before {
  background: rgba(255, 255, 255, 0.6);
  content: "";
  left: 0;
  right: 0;
  bottom: -31px;
  height: 33px;
  width: 100%;
  position: absolute;
  border-radius: 0 0 6px 6px;
}

.info-block {
  display: block;
  margin: 10px 0;
}

.info-block i {
  color: #101010;
  font-size: 23px;
  margin-right: 20px;
}

.info-block a {
  color: #101010;
}

.foot-contact h5 {
 color: #101010;
  font-size: 26px;
  padding: 0;
}

.foot-logo img {
}

#section-seven .foot-logo {
  z-index: 9;
  position: relative;
}

.social-links {
  z-index: 2;
  position: relative;
}

.social-links a {
  border: 2px solid #fff;
  border-radius: 40px;
  width: 40px;
  height: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: 1s;
}

.social-links a i {
  color: #fff;
}

.social-links a:hover {
  background: #101010;
}

.social-links a:hover i {
  color: #fff;
}

.copy {
  position: relative;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 15px;
}

.horizon-wrap {
  position: relative;
}

.horizon-wrap::before {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  bottom: 0;
  top: 0;
  content: "";
  background: #101010;
  background: -webkit-linear-gradient(
    0deg,
    rgba(16,16, 16, 0.94) 0%,
    rgba(16,16, 16, 0) 100%
  );
  background: -moz-linear-gradient(
    0deg,
    rgba(16,16, 16, 0.94) 0%,
    rgba(16,16, 16, 0) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(16,16, 16, 0.94) 0%,
    rgba(16,16, 16, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#101010",
			endColorstr="#101010",
			GradientType=0);
}

.pro-descfull {
  position: absolute;
  bottom: 0;
  z-index: 3;
  padding: 16px;
  width: 100%;
}
.pro-descfull h6 {
  font-size: 18px;
  line-height: 24px;
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pro-descfull h2 {
  font-size: 22px;
  font-weight: Normal;
  line-height: 38px;
  z-index: 1;
  position: relative;
}

.horizon-wrap .carousel-control-prev,
.horizon-wrap .carousel-control-next {
  position: absolute;
  z-index: 6;
  top: 0;
  height: 80px;
}

#preloaders {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(16,16, 16, 0.7);
  z-index: 99999;
  -webkit-backdrop-filter: blur(80px) saturate(1);
  backdrop-filter: blur(80px) saturate(1);
}

#preloaderContent {
  /*    background-color: red;*/

  width: 800px;
  text-align: center;
  position: absolute;
  font-family: "Poiret One", cursive;
  top: 0 !important;
  bottom: 0;
  left: 0 !important;
  right: 0;
  margin: auto;
  height: 230px;
}

#preloaders img {
  max-width: 150px;
  margin-bottom: 0px;
}

#preloaders h3 {
  font-size: 54px;
  text-transform: uppercase;
}

.aminiti-left {
  background: rgba(16,16, 16, 0.8);
  padding: 50px;
  border-radius: 8px;
  outline: 0px solid #ccb162;
  outline-offset: -18px;
  max-width: 95%; margin-left:10px; margin-right: 10px;

}

/* Base styles for the text container */
.loading-text {
  font-size: 3rem;
  font-weight: normal;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-text span {
  display: inline-block; /* So each letter can be animated individually */
  opacity: 0;
  margin: 0 10px; /* Start hidden */
  animation: jump 1s ease-in-out infinite;
}

/* Keyframes for the jumping effect */
@keyframes jump {
  0%,
  100% {
    transform: translateY(0); /* Normal position */
    opacity: 0.5;
  }
  50% {
    transform: translateY(-5px); /* Jump up */
    opacity: 1;
  }
}

/* Apply different animation delay to each letter to make them jump one by one */
.loading-text span:nth-child(1) {
  animation-delay: 0s;
}
.loading-text span:nth-child(2) {
  animation-delay: 0.1s;
}
.loading-text span:nth-child(3) {
  animation-delay: 0.2s;
}
.loading-text span:nth-child(4) {
  animation-delay: 0.3s;
}
.loading-text span:nth-child(5) {
  animation-delay: 0.4s;
}
.loading-text span:nth-child(6) {
  animation-delay: 0.5s;
}
.loading-text span:nth-child(7) {
  animation-delay: 0.6s;
}
.loading-text span:nth-child(8) {
  animation-delay: 0.7s;
}

.parallax-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#bg-video , .bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;

  /* Parallax effect */
  will-change: transform;
}


/**
Project list page*/

.project-list-title {
  padding-top: 16%;
  padding-bottom: 16px;
}

/**about page**/
/*
#about {
  position: absolute;
  z-index: 1;
  left: 40px;
  bottom: 60px;
}*/

.about-desc h2 {
  font-size: 56px;
  color: #fff;
  line-height: 100px;
}
.about-desc h6 {
  color: #fff;
  line-height: 100px;
}
.about-desc p {
  color: #fff;
  font-size: 22px;
}

.about-hero .carousel .carousel-item::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  content: "";
  background: rgba(16,16, 16, 0.5);
  z-index: 2;
}
.about-hero .carousel .carousel-item {
  position: relative;
}
/*
#carouselpro-list .carousel-control-next-icon,
#carouselpro-list .carousel-control-prev-icon {
  width: 4rem;
  height: 4rem;
}*/

#carouselpro-list .carousel-item::before {
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: hsla(0, 0%, 0%, 1);

  background: radial-gradient(
    circle,
    hsla(0, 0%, 0%, 0.1) 0%,
    hsla(0, 0%, 0%, 0.4) 100%
  );

  background: -moz-radial-gradient(
    circle,
    hsla(0, 0%, 0%, 0.1) 0%,
    hsla(0, 0%, 0%, 0.4) 100%
  );

  background: -webkit-radial-gradient(
    circle,
    hsla(0, 0%, 0%, 0.1) 0%,
    hsla(0, 0%, 0%, 0.4) 100%
  );

  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#000000", endColorstr="#000000", GradientType=1 );
}

#carouselpro-list .carousel-item .carousel-caption {
  position: absolute;
  z-index: 2; text-align: left;
}

#carouselpro-list .carousel-caption {
  top: 0;
  border: 0;
  margin: auto;
  height: 80vh;
}

#carouselpro-list .carousel-caption .desc-between {
  display: flex; align-items: start;
  
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}

#carouselpro-list .carousel-caption .desc-between h6 {
  line-height: 67px;
  font-size: 12px;
  letter-spacing: 2.3px;text-align: left;
}

#carouselpro-list .carousel-caption .desc-between h5 {
line-height: 60px;
  font-size: 54px;
 
  letter-spacing: 2.3px;
  text-align: left;
}

.btn-wrap a {
  text-transform: uppercase;color: #fff;
}

/* ==== Smooth Zoom-Out for Slider Images ==== */
#carouselpro-list .carousel-item img,
#carouselproject .carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform-origin: center center;
  animation: zoomOut 4s ease-in-out forwards;
}



@keyframes zoomOut {
  from {
    transform: scale(1.2); /* start slightly zoomed in */
  }
  to {
    transform: scale(1); /* smoothly zoom out to normal */
  }
}

/* Optional: loop if you want the effect to repeat */
#carouselpro-list .carousel-item.active img.loop,
#carouselproject .carousel-item.active img {
  animation: zoomOut 4s ease-in-out alternate;
}

/*Project detail page*/

#section-project-detail-hero {
  background-size: cover;
  object-fit: cover;
  background: #101010 url("../img/project/p2.jpg") 0 0 no-repeat;
  background-attachment: fixed;
}

#section-project-detail-hero .detail-hero h1 {
  text-shadow: 5px 5px 20px #000;
}

.detail-hero {
  padding: 5%;
}

/***Project list row second veriation of project list page*/

.project-list-row {
  position: relative;
}

.project-list-row img, .map-project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  opacity: 0.7;
}

.project-list-row .project-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 80%;
  height: 400px; z-index:2;
}

.desc-between h4 {
  font-size: 40px;
  text-align: center;
}


.desc-between {
  height: 100%;
}

.desc-between h6 {
  line-height: 30px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.5px;font-family: "Manrope", sans-serif;
}
.desc-between h5 {
  line-height: 70px;
}
.project-list-row {
}

.project-list-row {
}

/****/

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  
  font-size: 18px;
  background: #101010;
  display: flex;
  justify-content: center;
  overflow: hidden;
  align-items: center;
  margin-bottom: 0 !important;
}

.swiper-slide section {
  width: 100%;
}

.message-sec {
  background: #101010;
}

.massage-info h4 {
  color: #fff;
  font-size: 11px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.massage-info h2 {
 color: #ccb162;
  line-height: 76px;
  text-align: left;
  font-size: 58px;
}

.massage-info p {
  color: #fff;
}

.massage-info p {
  color: #fff;
  text-align: left;
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.sub-title-p{ letter-spacing:1px; font-size:16px;}

.timebox h2 {
  font-family: "linda_handwritingregular";
  font-size: 16rem;
}

.timebox h3 {
  color: #fff;
  font-size: 70px;
  text-align: right;
}

.message-block {
  outline: 0px solid #ccb162;  
  border-radius: 0px;
}

/* Default state */
.vision-bg {
  transform: scale(1.1); /* Start zoomed-in */
  transition: transform 1.5s ease-in-out;
}

/* When active slide */
.swiper-slide-active .vision-bg, .vision-sec:hover .vision-bg {
  animation: zoomOut 5s forwards; /* Adjust duration as needed */
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  
}

/* Keyframes for zoom out */
@keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}



.vision-wrap {
  width: 100%;
  height: 100vh;
}

.vision-sec:hover img.vision-bg, .project-list-row:hover img.loop {
  transform: scale(1.1);
  }
.vision-sec img.vision-bg, .project-list-row img.loop {
  width: 100%;
  height: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  transition: transform .7s;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
}



.vision-sec{ position: relative}

.v-blocks.container {
  position: absolute;
  z-index: 8;
  left: 5%;
  bottom: 5%;
}
.vision-sec::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  content: "";

  z-index: 2;
  width: 50%;
  background: #000000;
  background: -webkit-linear-gradient(
    90deg,
    rgba(16,16, 16, 0.84) 0%,
    rgba(16,16, 16, 0) 100%
  );
  background: -moz-linear-gradient(
    90deg,
    rgba(16,16, 16, 0.84) 0%,
    rgba(16,16, 16, 0) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(16,16, 16, 0.84) 0%,
    rgba(16,16, 16, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(
  startColorstr="#000000",
  endColorstr="#000000",
  GradientType=1
);
}

.vision-sec h3 {
  color: #fff;
  text-align: left;
}

.vision-sec p {
  color: #fff;
  text-align: left;
}

.vision-box {
  margin-bottom: 70px;
}

.vision-sec h3 {
  color: #fff;
  text-align: left;
  font-size: 42px;
  line-height: 55px;
}

/***/

.about-info-box h2,
.about-info-box h4 {
  color: #fff;
  line-height: 60px;
  font-size: 48px;
}
.about-info-box video {
  position: absolute; opacity:0.2;
}
.about-info-box p {
  text-align: left;
  color: #fff;
}

.about-info-box {
}

.about-info-box {
	
}

/*.flash-sec{background: url('../img/foot-outlineimg.png') center bottom no-repeat;}*/
#section-seven .container-fluid {
  background: #101010;
}
.flashtext {
  height: 100vh;
  background: url("../img/logo/flashlogo-gold.png") center bottom no-repeat;
  object-fit: cover;

  position: relative;
  overflow: hidden;
  width: 100%;
}
.shadow {
  position: absolute;
  width: 200vw;
  height: 200vh;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: radial-gradient(circle at center, transparent, #101010 20%);
}

/**video banner content**/

.banner-videocontent {
  position: absolute;
  left: 2%;
  bottom: 90px;
  background: transparent;
  text-align: center;
  width: 96%;
  right: 2%;
}

.banner-videocontent h2 {
  color: #fff;
  font-weight: normal;
  font-size: 100px;
}

.video-wrap {
  position: relative;
}

.video-wrap::before {
  position: absolute;
  background: rgba(16,16, 16, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
}




/**Project Detil pagee**/

#project-detail-hero { position: relative; }

/*#project-detail-hero .project-ani-img { position: absolute; right: 11%; }*/


.pro-detail-hero-desc {
  position: absolute;
  left: 0;
  top: 35%;
  width: 700px;
  left: 140px; z-index:4;

}

.pro-detail-hero-desc h2 {
 color: #fff;
  font-size: 52px;
  letter-spacing: ;
  margin-bottom: 10px;
  line-height: 70px;
}

.pro-detail-hero-desc p {
 color: #fff;
  font-size: 23px;
  letter-spacing: 1px;
  margin-bottom: 50px;
  
}

.pd-broucher{ display: flex; justify-content: Start; align-items: center; margin-bottom: 20px; transition:1s}

.pd-broucher .d-broucher {  
  display: inline-flex;
  border-radius: 5px;
  color: #fff; transition:1s
}

.pd-broucher i{ color: #fff; font-size:20px;  transition:1s}

.pd-broucher:hover{ padding-left:15px;}
.pd-broucher:hover .d-broucher, .pd-broucher:hover i{ color: #ccb162}

.project-detail-hero::before {
  position: absolute;
  content: "";
  background: rgba(0,0,0,0.4);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
}
.price-wrap p {
  color: #ccb162;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.row.price-wrap {
  margin-bottom: 70px;
  margin-top: 40px;
}
.button--janus{ font-family: 'albertus_mt_stdregular';}




/* project detail page image effectcss**/


img.img-outline-effect {
  --s: 15px; /* size of the frame */
  --b: 2px; /* border thickness */
  --w: 100%; /* width of the image */
  --c: #ccb162;

  width: var(--w);
  aspect-ratio: 1;
  object-fit: cover;
  padding: calc(2 * var(--s));
  --_g: var(--c) var(--b), #0000 0 calc(100% - var(--b)), var(--c) 0;
  background: linear-gradient(var(--_g)) 50%/100% var(--_i, 100%) no-repeat,
    linear-gradient(90deg, var(--_g)) 50% / var(--_i, 100%) 100% no-repeat;
  outline: calc(var(--w) / 2) solid green;
  outline-offset: calc(var(--w) / -2 - 2 * var(--s));
  transition: 0.4s;
  cursor: pointer;
}
img.img-outline-effect:hover {
  outline: var(--b) solid var(--c);
  outline-offset: calc(var(--s) / -2);
  --_i: calc(100% - 2 * var(--s));
}

.pro-desc-wrap {
  text-align: left;
}
.pro-desc-wrap h2 {
  font-size: 60px;
  
  letter-spacing: 2px;
  line-height: 76px;
  font-weight: normal;
  margin: 20px 0 20px 0;
}

.pro-desc-wrap h6 {
  font-size: 12px;
}

.pro-desc-wrap p {
  color: #fff;
}

/**without bg img section padding top*/
@media (min-width:1100px){
	
	
	.pt-md-80 {
		padding-top: 80px;
}
	
}


  .image-container {
      width: 100%;   /* set div width */
      height: 100%;  /* set div height */
      border: 0px solid #ccc;
      overflow: hidden; /* hide overflow if needed */
      display: flex;
      justify-content: center;
      align-items: center;
   }

    .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* change to contain if you want full image */
    }
	
	
	
	/***Vetcal flex container**/
	
	
	.v-flex-container {

    display: flex;
      
    /* flex-flow: column; */ 
    flex-direction: column;  

    
    height: 100%;
    padding: 15px;
    gap: 5px;

  }
  
  
  
  /**map img*/
  
  .map-img{ opacity:0.8!important}

  
  
   .pd-video-block { 
    /* flex:1 1 auto; */
    flex-grow:1;
    align-self:auto;
	outline: 2px solid #ccb162;
  outline-offset: -30px;
  }

.pd-project-video{ position: relative;}
		
.pd-project-video::before{content: "";
  background: #101010 url("../img/bg-gold.png") bottom right no-repeat;
    background-size: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 350px;
  height: 350px;
  background-size: contain; }		
  
  .pd-gallery .carousel-btn-wrap { bottom: 70px;  }
  
  
  
  
  
  
  
	.flex-container-both{
	display: flex;
      
    /* flex-flow: column; */ 
    flex-direction: row;  

    
    height: 100%;
    padding: 15px;max-width: 95%;
    gap: 25px;}
	
  .iteminfo { 
    /* flex:1 1 auto; */
    flex-grow:1;
  }
			





.button--janus.btn-gold::before {
	
	background: #ccb162;
	
}

.button--janus.btn-gold:hover::before {
	background: #000;
	
}

.button--janus.btn-gold::after {
	
	border: 1px solid #fff!important;
	
}


/***/
.form-wrap {
  margin-bottom: 60px;
}

.form-wrap .col-auto.fi {
  width: 25%;
 
}

.form-wrap .col-auto.fi label{ display: none;}

.form-wrap .form-control {
  background: transparent;
  border-width: 0 0 1px 0;
  border-radius: 0;
  color: #fff;
}


.form-wrap .form-control:focus{ box-shadow: none; Outline:0}

.form-wrap .form-control::placeholder{ color: #fff}



@media(min-width: 1100px){
.vpd-info {
  border-left: 2px solid rgba(255,255,255,0.3);
  padding-left: 40px;
  position: relative;
}


.vpd-info::after {
  content: "";
  position: absolute;
  left: -9px;
  top: 50%;
  width: 17px;
  height: 17px;
  background: #ccb162;
  transform: rotate(45deg);
}
}




.video-section-box {
  position: relative;
  width: 100%;
  height: 92vh; /* Full viewport height */
  overflow: hidden;
}

.video-section-box video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Keeps aspect ratio while covering */
}

.pd-project-video .pd-videofull {
 position: absolute;
  bottom: 5%;
  left: 5%;
  right: 50px;
  align-items: end;
}

.pro-detail-hero-desc .button--janus span {
  color: #101010;
}

.pro-detail-hero-desc .button--janus:hover span {
  color: #fff;
}

.video-background {
  position: relative;
  height: auto; /* Full screen */
  width: 100%;
  
}

#bg-video-foot {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-overlay {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}


.project-list-row .desc-between h6 { 
  text-align: left; 
}
.project-list-row .desc-between h5 {
  line-height: 60px;
  font-size: 54px;
}


.img-hcontent{
	width: 100%; 
	position: relative;
	height: 100%!important;
}

.img-hcontent::before
	{	
	position: absolute; left:0; bottom:0; width: 60%; height:100%; content: ""; z-index:1;	
	background: #000000;
	background: -webkit-linear-gradient(36deg,rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
	background: -moz-linear-gradient(36deg,rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
	background: linear-gradient(36deg,rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#000000",	  endColorstr="#000000",  GradientType=0 );
}

.img-hcontent .imgh-caption h5 {
  font-size: 40px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.img-hcontent img{
	width: 100%;
	height: 100%!important;
	max-height: 100%!important;
	object-fit: cover; 
}

.img-hcontent .imgh-caption {
  position: absolute;
  bottom: 90px;z-index: 1;
  left: 80px;
  max-width: 630px;
}


/*after integrated horizontal swiper**/
.hslider-wrap {
  width: 100%;
  height: 100%;transition: transform .7s
}

.hslider-wrap img.card-img-top
		{
		width: 100%;
		height: 100%!important;
		max-height: 100%!important;
		object-fit: cover; /* change to contain if you want full image */transition: transform .7s
}

.hslider-wrap:hover img.card-img-top{ transform: scale(1.2); }

.hslider-wrap .card-body {
  position: absolute;
  bottom: 0; left:0; right:0;
  background: red;
  padding: 250px 30px 35px;
    background: #000000;
	background: -webkit-linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
	background: -moz-linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
	background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(
  startColorstr="#000000",
  endColorstr="#000000",
  GradientType=0
);
}

.hslider-wrap .card-body .card-title {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 5px;
}

.hslider-wrap .card-body p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 5px; color: #ffffff;
}


.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 4rem;
	height: 4rem;
}

.swiper-pagination{ display: none}

/*after integrated horizontal swiper**/

.py-100{ padding-top: 100px; padding-bottom: 100px; }
.sec-h-auto{ height: auto!important;}

@media (max-width:1080px){
	
	
	
	.fixed-header { position: fixed;   top: 0;   left: 0;  right: 0; z-index:5 }
	
	.nav-title { display: none; }
	
	.nav-ccontact{ opacity: 0.4!important}
	
	#preloaders h3{ font-size:32px;}
	
	.main-slider .banner-content { top: 0; bottom: 0;  z-index: 5; width: 96%; margin: auto; height: 130px;}
	
	.main-slider .banner-content h2.banner-title {font-size: 48px!important; line-height: 56px!important}
	
	
	.main-slider, .slick-list, .slick-track, .slider-item { height: 100%}	
	
	#intro .button-container{ display: none!important}
	
	/*#section-two{ padding: 0 0 40px 30px!important; }*/
	
	/*#about { left: 15px;  bottom: 5%; }*/
	
	
	.aminiti-left { padding: 50px 30px;}
	h6.ami-name{ margin-bottom: 10px;}
	
	
	.horizon-sec .section-title { padding-bottom: 10px;}
	
	.horizon-sec .section-title h2 { font-size: 20px; line-height: 28px; }
	
	.slider-h100 .row, 
	.slider-h100 .col-12, 
	.slider-h100 .gallery-slider, 
	.slider-h100 .carousel-inner, 
	.slider-h100 .carousel-item, 
	
	.slider-h100 .container-fluid,
	.slider-h100  .carousel 
	{ height: 100%; }
	
	
	/** fulll height bootstrap carasoul responsive   **/
	.slider-h100 .carousel-item {
		width: 100%;   /* set div width */
		height: 100%;  /* set div height */
		border: 0px solid #ccc;
		overflow: hidden; /* hide overflow if needed */
		/*display: flex;*/
		justify-content: center;
		align-items: center;
	}
	
	.slider-h100 .carousel-item img{
		width: 100%;
		height: 100%!important;
		max-height: 100%!important;
		object-fit: cover; /* change to contain if you want full image */
	}
	/****/
	
	
	.carousel-btn-wrap { height: 100px;} 

	#section-seven{ background-size: cover; background-position: right bottom; }

	.social-links{ margin-bottom: 30px;}

	.flashtext {  
		background-position: center;  
		background-size: contain;
	}
	
	#preloaderContent { width: 100%; }
	
	body .nav__list-item a { 
		line-height: 40px;
		font-size: 26px;
	}
	
	
	
	.v-blocks.container {	  
	  left: 5%;
	  bottom: 0;
	  padding-right: 40px;
	}
	.swiper-slide.vision-sec::before {
	  background: rgba(0,0,0,0.5); 
	  width:100%;
	  
	}
	
	
	.banner-videocontent {		
		left: 2%;
		bottom: 5%; z-index: 1;
	}	
	.banner-videocontent h2 {
		  font-size: 52px;
		}
	.video-wrap::before {
  
		  background: rgba(16,16, 16, 0.5);
		  
		  z-index: 1;
		}
		
	.about-info-box .container {
		padding: 0 20px;
	}	
	.about-info-box p {	  
	  font-size: 15px;
	}
	
	.swiper-slide.vision-sec h3 {
	  font-size: 22px;
	  line-height: 36px;
	}
	.swiper-slide.vision-sec p{ font-size: 15px; }
	.vision-box {
	  margin-bottom: 30px;
	}
	
	
	
	.massage-info h2 {		
		line-height: 50px;
		font-size: 40px;
	
	}
	.massage-info p {
	  font-size: 15px;
	}
	
	.timebox h2 {
	  font-size: 16rem !important;
	}
	.project-list-row .desc-between h4{ font-size:26px;}
	.project-list-row .desc-between h6{ text-align: center}
	
	.pro-detail-hero-desc {	  
	  top: 25%;
	  width: 90%;
	  left: 30px;	  
	}
	
	.pro-detail-hero-desc h2 {
	  color: #fff;
	  font-size: 42px;
	  margin-bottom: 10px;
	  line-height: 48px;
	}
		
	
	
	#find-moredetai .section-title h2 > br {
		display: none;
	}
	#find-moredetai .section-title h2 {
	  font-size: 20px;
	  font-weight: normal;
	  margin-bottom: 10px;
	  padding-bottom: 0px;
	  position: relative;
	  line-height: 30px;
	}
	
	.form-wrap .col-auto.fi {
	  width: 100%;
	}
	.form-wrap {
	  margin-bottom: 60px;
	  background: rgba(0,0,0,0.5);
	  padding: 0 20px 20px;
	  border-radius: 10px;
	}
	
	.swiper-pagination{ display: none;}
	
	
	.flex-container-both {
	  flex-flow: column;
	  flex-direction: column;
	  height: auto;
	}
	
	.img-hcontent .imgh-caption {
	  position: absolute;
	  bottom: 90px;
	  z-index: 1;
	  left: 30px;
	  max-width: 630px;
	  padding-right: 30px;
	}
	
	.img-hcontent::before
	{	
		
		background: rgba(0,0,0,0.5); width:100%;
	}
	.pro-desc-wrap h2 {
	  font-size: 26px;
	  line-height: 36px;
	  margin-top: 30px;
	}
	
	.horizon-wrap {
	  max-height: 430px;
	 
	}
	.horizon-sec h2 {
	  font-size: 28px;
	  margin-bottom: 10px !important;
	}
	
	.carouselproject .carousel-caption { 
		width: 90%;
		text-align: center;
		height: 280px;
		top: auto;
		bottom: 0;
		margin: auto;
		padding: 00;
		display: flex;
		flex-direction: column;
		justify-content: start;
		align-items: center;}
		
	.carouselproject::before {
  
  background: linear-gradient( 60deg, rgba(16,16, 16, 0.9) 0%, rgba(16,16, 16, 0) 100% ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
		
	.absolute-text-bottom {
	  left: 0px;
	}	
	
	body .foot-h2 {
      font-size: 34px;
	  line-height: 42px;
	
	}
	
	.section-title h2 {
	  font-size: 32px;  
	  line-height: 44px;
	  letter-spacing: 0.5px;margin-bottom: 10px !important;
	}
	.pro-detail-hero-desc p {
		font-size: 16px;
		letter-spacing: 0px;
		margin-bottom: 50px;
	}
	
} /***767px**/

#carouselhorizon3 .carousel-control-next {
  right: 30px;
}
.menu-img {
  width: auto;
  max-height: 480px;
}
.gallary-heading {
  text-align: center;
  padding: 150px 50px;
  width: 1000px;
  margin: 0 auto;
}
.content-heading.masterpieces_heading {
  text-transform: uppercase;
  font-family: OptimaLTPro Roman, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 105%;
}
.fl-col{
  flex-direction: column;
}
.fl-end{
  justify-content: end;
}
.slider-inter, .slider-ext {
  position: relative;
}
.slider-inter .slider-title, .slider-ext .slider-title {
  position: absolute;
  left: 7%;
  top: 7%;
  z-index: 2;
  color: #fff;
}
#project-collage .masterpieces_pro-detail {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  max-height: 100%;
}
.masterpieces_pro-detail::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  content: "";
  background: rgba(16,16, 16, 0.5);
  z-index: 1;
}
.masterpieces_image_v2.hide-mobile, .masterpieces_image_v2.hide-desktop {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.masterpieces_pro-detail .pro-name {
  position: absolute;
  left: 2%;
  bottom: 10%;
  z-index: 2;
}
.masterpieces_pro-detail .pro-update {
  position: absolute;
  top: 5%;
  z-index: 2;
  left: 2%;
}
.masterpieces_pro-detail .pro-area {
  position: absolute;
  right: 5%;
  top: 5%;
  z-index: 2;
}
.masterpieces_pro-detail .pro-update span {
  background: rgba(0,0,0,0.5);
  color: #fff;
  border-radius: 70px;
  padding: 10px 20px;
  display: inline-flex;
}
.masterpieces_pro-detail .pro-name h3 {
  color: #fff;
  font-size: 2rem;
}
.masterpieces_pro-detail .pro-area h4 {
  color: #fff;
  font-size: 1.2rem;
}
#project-collage {
  height: calc(100vh - 50px);
}
.sec-h-200 {
  height: 200px;
}
.masterpieces_images_v2 {
  overflow: hidden;
  height: 340px;
}
