/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #000;
}

a {
  text-decoration: none;
  color: #3c3b3b;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: "Lato", sans-serif;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 0px 0;
}

.section-bg {
  background-color: #fff;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #000;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Team Member Cards
--------------------------------------------------------------*/
.team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.team .member {
  background-color: #f8f9fa;
  border-radius: 8px;
  margin: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
}

.team .member img {
 
}

.team .member h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.team .member span {
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
  color: #6c757d;
}

.team .member p {
  font-size: 14px;
  color: #333;
  flex-grow: 1;
}

.team .social {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}

/*--------------------------------------------------------------
# Map Section
--------------------------------------------------------------*/
.map {
  width: 100%;
  height: 450px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f6fafa;
  min-height: 40px;
  margin-top: 80px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

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

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #000;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #8bc6bf;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  z-index: 997;
  transition: all 0.75s;
  background: #000;
}

#header.header-scrolled {
  background: #000;
  height: 80px;
}

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

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
  line-height: 0;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 55px;
}

#main {
  margin-top: 85px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* General navbar styles for larger screens */
.navbar {
  padding: 0;
}

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

.navbar ul li {
  margin-left: 20px;
}

.navbar ul li a {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  padding: 10px 15px;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #ccc;
}

/* Hide mobile nav toggle on larger screens */
.mobile-nav-toggle {
  display: none;
}

/* Mobile-specific navbar styles */
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
    position: absolute;
    right: 15px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    z-index: 1000;
  }

  .navbar ul {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: all 0.3s ease-in-out;
  }

  .navbar ul.active {
    display: flex;
  }

  .navbar ul li {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }

  .navbar ul li a {
    padding: 15px 20px;
    color: #fff;
    display: block;
    font-size: 24px;
    text-transform: uppercase;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 55vh;
  background: white;
  position: relative;
  margin-bottom: -90px;
  z-index: 1;
}

#hero:before {
  content: "";
  background: url("../img/hero-background.jpg") no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: -2;
}

#hero:after {
  content: "";
  background: rgba(128, 128, 128, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  padding-top: 80px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  z-index: 1;
}

#hero h1 {
  margin: 0 0 0 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 56px;
  color: white;
}

#hero h2 {
  color: white;
  margin: 10px 0 0 0;
  font-size: 24;
}

@media (max-width: 768px) {
  #hero {
    height: 60vh;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .icon-box {
  padding: 20px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 0 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.services .icon-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 15px 0;
}

.services .icon-box p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 767.98px) {
  .services .icon-box {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  color: #fff;
  padding: 30px 0;
}

#footer .copyright {
  text-align: center;
  margin-bottom: 0;
}

#footer .social a {
  color: #fff;
  margin: 0 10px;
  display: inline-block;
}
