/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* Futura Regular */
@font-face {
  font-family: "Futura";
  src: url("/assets/fonts/futur/futur.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* Futura Bold */
@font-face {
  font-family: "Futura";
  src: url("/assets/fonts/futur/Futura Bold font.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

/* Futura Bold Italic */
@font-face {
  font-family: "Futura";
  src: url("/assets/fonts/futur/Futura Bold Italic font.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}

/* Futura Book */
@font-face {
  font-family: "Futura";
  src: url("/assets/fonts/futur/Futura Book font.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* Futura Heavy */
@font-face {
  font-family: "Futura";
  src: url("/assets/fonts/futur/Futura Heavy font.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

/* Futura Heavy Italic */
@font-face {
  font-family: "Futura";
  src: url("/assets/fonts/futur/Futura Heavy Italic font.ttf")
    format("truetype");
  font-weight: 800;
  font-style: italic;
}

/* Futura Light */
@font-face {
  font-family: "Futura";
  src: url("/assets/fonts/futur/futura light bt.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

/* Futura Light Italic */
@font-face {
  font-family: "Futura";
  src: url("/assets/fonts/futur/Futura Light Italic font.ttf")
    format("truetype");
  font-weight: 300;
  font-style: italic;
}

/* Futura Medium */
@font-face {
  font-family: "Futura";
  src: url("/assets/fonts/futur/futura medium bt.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

/* Futura Medium Italic */
@font-face {
  font-family: "Futura";
  src: url("/assets/fonts/futur/Futura Medium Italic font.ttf")
    format("truetype");
  font-weight: 500;
  font-style: italic;
}

/* Futura Medium Condensed */
@font-face {
  font-family: "Futura";
  src: url("/assets/fonts/futur/futura medium condensed bt.ttf")
    format("truetype");
  font-weight: 500;
  font-style: condensed;
}

/* Futura Extra Black */
@font-face {
  font-family: "Futura";
  src: url("/assets/fonts/futur/Futura XBlk BT.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Didot";
  src: url("/assets/fonts/didot/Didot.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Didot";
  src: url("/assets/fonts/didot/Didot Title.otf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Didot";
  src: url("/assets/fonts/didot/Didot Italic.otf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Didot";
  src: url("/assets/fonts/didot/Didot Bold.otf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

:root {
  --primary-font: "Futura", sans-serif;
  --secondary-font: "Didot", serif;
  --black-color: #2f2e2e;
  --ash-color: #a0a09f;
}
body {
  font-family: var(--secondary-font);
  color: #444444;
  overflow-x: hidden;
}

a {
  color: #94c045;
  text-decoration: none;
}

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

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

#main {
  margin-top: 70px;
  z-index: 3;
  position: relative;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 100px;
  z-index: 997;
  transition: all 0.5s ease-in-out;
  background: transparent;
}
.header-scrolled {
  background-color: #fff !important;
}

#header .logo h1 {
  font-size: 46px;
  margin: 0;
  line-height: 0;
  font-weight: 600;
  letter-spacing: 1px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: var(--black-color);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 300;
  border: 1px solid var(--black-color);
  padding: 8px 12px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: var(--secondary-font);
  font-style: italic;
  font-size: 18px;
  font-weight: 300;
  color: var(--black-color);
  white-space: nowrap;
  transition: 0.3s;
}

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

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

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #3c4133;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(34, 36, 29, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #3c4133;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #94c045;
}
/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/
.hero-bg {
  position: relative;
  width: 105%;
  height: 110vh; /* Adjust height as needed */
  overflow: hidden;
  margin-top: 0px !important;
  margin-top: -120px !important; /* Remove duplicate property */
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the container fully */
  z-index: -1; /* Places the video behind other content */
}

.hero-bg .content {
  position: relative;
  z-index: 1; /* Keeps content above the video */
  color: #fff; /* Adjust text color for better contrast */
  text-align: center;
  padding: 20px;
}

.hero {
  margin-top: 120px;
}

.hero .video {
  background-image: url("/assets/img/hero-img.png");
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
}
.hero .video i {
  font-size: 50px;
  color: #fff;
}

.hero p {
  font-size: 20px;
}

.text {
  padding: 60px 0px;
}
.text h2 {
  font-size: 50px;
  font-weight: 300;
}
.text p {
  font-family: var(--primary-font);
  font-weight: 300;
  font-size: 16px;
}
.text a {
  font-family: var(--primary-font);
  font-weight: 300;
  font-size: 16px;
  text-decoration: underline;
  color: var(--black-color);
}
.text .long {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--secondary-font);
  font-style: italic;
  letter-spacing: 1px;
}
.text .btn {
  text-decoration: none;
  color: #fff;
  background-color: var(--black-color);
  padding: 8px 12px;
  border-radius: 0px;
}
.text .btn:hover {
  border: var(--black-color) 1px solid;
  background-color: transparent;
  color: var(--black-color);
}
.light-bg {
  background-color: #fff;
  padding: 2rem;
}
.feature {
  position: relative;
}
.feature .img {
  position: absolute;
  top: -30px;
  z-index: -1;
}
.feature .img img {
  height: 350px;
}

.ftr {
  min-height: 70vh;
}
.ftr .light-bg h2 {
  font-size: 32px;
  font-style: italic;
}

section header h3 {
  font-size: 22px;
  font-style: italic;
  letter-spacing: 0.15em;
}
.project a {
  font-size: 80px;
  font-family: var(--secondary-font);
  font-weight: 300;
  font-style: italic;
  text-decoration: none;
}

.cta {
  position: relative;
  z-index: -2;
  background-color: #ccc;
}

.cta .light-bg {
  padding: 3rem 6rem;
}
.cta .feature .img {
  top: -60px;
}
.feature .img img {
  height: 305px;
}

.img-section {
  height: 300px;
  background-image: url("/assets/img/blue-print.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.img-section h2 {
  color: #fff;
}

.img-section a {
  padding: 0.5rem 1rem;
  color: #fff;
  border-radius: 1000px;
  border: 1px solid #fff;
}

.cta-last {
  padding: 5rem 0rem 2rem 0rem;
}
.cta-last h2 {
  font-size: 38px;
  font-style: italic;
  letter-spacing: 1px;
}

.cta-last p {
  padding-left: 2rem;
  font-style: italic;
}

.cta-last a {
  font-family: var(--primary-font);
  background-color: var(--black-color);
  padding: 8px 60px;
  border-radius: 0px;
  color: #fff;
}

.cta-last a:hover {
  background-color: transparent;
  border: var(--black-color) 1px solid;
  color: var(--black-color);
}

/*-------------------------
who we are
---------------------*/
.project {
  padding: 60px 0px;
  margin-bottom: 250px;
}
.project .blue-bg {
  padding: 60px 0px;
  background-color: #87b7de;
}

.project .blue-bg p {
  font-family: var(--primary-font);
  color: #000;
  padding: 0px 60px;
}
.project .blue-bg h2 {
  font-size: 80px;
  padding: 0px 60px;
  font-style: italic;
}
.project .new-img {
  position: relative;
}
.project .new-img img {
  position: absolute;
  right: -100px;
  height: 300px;
}
.testimonials .item-1 {
  background-image: url(/assets/img/slide-1.jpg);
}

.testimonials .item-2 {
  background-image: url(/assets/img/slide-2.jpg);
}

.testimonials .item-3 {
  background-image: url(/assets/img/slide-3.jpg);
}
.testimonials .item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}
.testimonials .item .row {
  height: 100%;
}
.testimonials .item .box {
  background-color: #fff;
  padding: 60px;
}
.testimonials .item .box p {
  color: var(--black-color);
  font-style: italic;
  font-size: 18px;
}
.testimonials .item .box p span {
  color: var(--black-color);
  font-family: var(--primary-font);
  font-size: 16px;
}
/*--------------------------------------------------------------
# what we do
--------------------------------------------------------------*/
.text-dark .container {
  background-color: rgb(204, 204, 204);
}

.text-dark h4 {
  font-size: 20px;
  font-style: italic;
}
.text-dark p {
  font-family: var(--primary-font);
}
.featured-project {
  padding: 60px 0px;
}
.featured-project h2 {
  font-style: italic;
  font-size: 80px;
}
.featured-project .card {
  height: 250px;
  border-radius: 0px;
  border: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured-project .card a {
  padding: 12px 20px;
  color: #fff;
  font-family: var(--primary-font);
  background-color: var(--black-color);
  opacity: 0;
}

.featured-project .card:hover a {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.75);
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.75);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.portfolio .portfolio-wrap img {
  transition: 1s;
}
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid rgba(73, 73, 73, 0.2);
  border-left: 3px solid rgba(73, 73, 73, 0.2);
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid rgba(73, 73, 73, 0.2);
  border-right: 3px solid rgba(73, 73, 73, 0.2);
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 18px;
  font-family: var(--primary-font);
  color: var(--black-color);
  font-weight: 500;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  background: var(--black-color);
  margin: 10px 2px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a i {
  font-size: 24px;
  line-height: 0;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: var(--ash-color);
}
.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}
.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}
.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}
.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}
.gslide-media img {
  width: 100vw !important;
}

/*--------------------------------------------------------------
#Benefits
--------------------------------------------------------------*/
.benefits {
  margin-top: 200px !important;
  min-height: 50vh;
}

.benefits .dark {
  padding: 2rem;
  background-color: #ccc;
  margin-top: 5rem;
}
.benefits .dark p {
  font-family: var(--primary-font);
  color: #2f2e2e;
  font-size: 16px;
}

.benefits .benefits-img {
  position: relative;
}

.benefits .benefits-img img {
  position: absolute;
  width: 600px;
  top: -50px;
  right: 0px;
  z-index: -1;
}

.text ul li {
  font-family: var(--primary-font);
  color: var(--black-color);
  font-size: 16px;
  font-weight: 300;
  padding-bottom: 6px;
}
.text-cta .container {
  background-color: var(--black-color);
  padding: 3rem;
}
.text-cta .container h2 {
  color: #fff;
  font-size: 26px;
  text-align: center;
  font-style: italic;
  margin-bottom: 2rem;
}
.text-cta a {
  color: #fff;
  border: 1px solid #fff;
  padding: 8px 20px;
  font-family: var(--primary-font);
}
.benefits-cta {
  width: 100%;
  height: 300px;
  background-image: url(/assets/img/benefits-cta.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*--------------------------------------------------------------
# Careers
--------------------------------------------------------------*/
.careers-dark {
  background-image: url(/assets/img/careers.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.careers-dark .row {
  align-items: center;
  min-height: 40vh;
}

.careers-dark .dark {
  background-color: #fff;
  padding: 4rem;
  margin: 3rem;
}

.careers-dark .dark h2 {
  font-size: 56px;
  font-style: italic;
}

.careers-dark .dark p {
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 300;
}

.career-form {
  padding: 60px 0px;
  background-color: #ccc;
}

.career-form form {
  background-color: #fff;
  padding: 2rem;
}
.career-form form p {
  font-size: 25px;
  font-weight: 400;
  font-family: var(--primary-font);
}
.career-form form label {
  font-family: var(--primary-font);
  font-size: 14px;
  padding: 0.6rem 0 0.6rem 0;
}

.career-form form input {
  width: 100%;
  border: none;
  border-radius: 50px;
  background-color: #efeff4;
  padding: 6px 12px;
}
.career-form form select#position {
  width: 100%;
  padding: 8px 18px;
  border-radius: 1000px;
  outline: none;
  border: none;
  background-color: #efeff4;
  font-family: var(--primary-font);
}
.career-form form input:focus {
  border: none;
  outline: none;
  background-color: rgb(236, 247, 252);
}
.career-form form input#date {
  font-family: var(--primary-font);
  color: #a0a09f;
}

.career-form form .btn {
  display: flex;
  align-items: flex-end;
}

.career-form form button {
  width: 100%;
  background-color: #000;
  border: none;
  border-radius: 50px;
  padding: 6px 12px;
  color: #fff;
  font-family: var(--primary-font);
  font-size: 14px;
  transition: 0.5s all;
}

.career-form form button:hover {
  background-color: var(--ash-color);
}

/*--------------------------------------------------------------
# Contact us
--------------------------------------------------------------*/

.contact-us .contact-img {
  height: 100%;
  background-image: url(/assets/img/contact-us.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-us .dark {
  background-color: #d6d6d6;
  padding: 2rem;
}
.contact-us .dark ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  margin-bottom: 2rem;
}
.contact-us .dark ul li {
  display: flex;
  justify-content: space-around;
  font-family: var(--primary-font);
  font-size: 16px;
}

.contact-us .dark ul li a {
  font-family: var(--primary-font);
  color: var(--black-color);
  font-size: 16px;
}

.contact-us form label {
  font-family: var(--primary-font);
  font-size: 16px;
  margin: 2rem 0rem 1rem 0rem;
}

.contact-us form input {
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  border-bottom: #000 1px solid;
}
.contact-us form input:focus {
  border-bottom: var(--ash-color) 1px solid;
}

.contact-us form textarea {
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  border-bottom: #000 1px solid;
  margin-top: 2rem;
}

.contact-us form textarea::placeholder {
  font-family: var(--primary-font);
  font-size: 16px;
  color: var(--black-color);
}

.contact-us form input#agree {
  width: 15px;
}

.contact-us form button {
  border: none;
  outline: none;
  background-color: #000;
  color: #fff;
  font-family: var(--primary-font);
  padding: 8px 50px;
}
.contact-us .social a {
  font-family: var(--primary-font);
  font-size: 16px;
  text-decoration: underline;
  color: #000;
}

.hours {
  background-color: #ccc;
  padding: 60px 0px;
}

.hours h2 {
  font-size: 38px;
}
.hours ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.hours ul li {
  display: flex;
  font-style: italic;
  gap: 2rem;
}

.map {
  margin-bottom: -20px;
  padding-bottom: 0px;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--black-color);
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}
#footer h2 {
  padding-top: 30px;
  font-style: italic;
}
#footer .f-btn {
  font-family: var(--primary-font);
  background-color: #fff;
  padding: 8px 15px;
  color: var(--black-color);
}
#footer .logo {
  width: 100px;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .social-links a {
  display: inline-block;
  background: var(--black-color);
  color: #fff;
  line-height: 1;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#footer .footer-top .social-links a i {
  line-height: 0;
  font-size: 16px;
}

#footer .footer-top .social-links a:hover {
  background-color: var(--ash-color);
  color: var(--black-color);
  text-decoration: none;
}

#footer .footer-top h4 {
  font-style: italic;
  font-size: 14px;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

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

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 5px 0 0 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 0 0 15px 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  font-family: var(--primary-font);
}
#footer .footer-newsletter p {
  color: var(--ash-color);
  font-family: var(--primary-font);
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
  font-family: var(--primary-font);
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
  font-family: var(--primary-font);
}

#footer .credits a {
  color: var(--ash-color);
}
