@import url('https://fonts.googleapis.com/css?family=Lora');
@import url('https://fonts.googleapis.com/css?family=Amiri');

/* GENERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  font-family: 'Open Sans', sans-serif;
}
h2 {
  font-family: 'Lora', serif;
  text-align: center;
  margin-bottom: 20px;
}
h2:after {
  content: "";
  display: block;
  margin: 0 auto;
  padding-top: 10px;
  border-bottom: 4px solid rgb(89, 164, 246);
  width: 90px;
}
.navbar-brand {
  font-family: 'Lora', serif;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center; /* Centers the content horizontally */
  flex-wrap: wrap;
  text-align: center; /* Centers the text within the div */
}

.about-image {
  flex: 1 1 300px;
  max-width: 400px;
  margin: 20px;
}

.about-text {
  flex: 2 1 300px;
  margin: 20px;
}

.about-image img {
  width: 100%;
  max-width: 300px; /* Adjust max-width as necessary */
  margin: 10px auto; /* Centers the images horizontally */
  border-radius: 5px; /* Optional: Adds a slight border radius for aesthetics */
  display: block; /* Ensures images are displayed as block elements */
}

.section {
  padding: 60px 0;
  text-align: center;
}

.flex-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.col {
  flex: 1 1 300px;
  max-width: 400px;
  margin: 20px;
}

.img-team {
  text-align: center;
}

.img-team img {
  width: 100%;
  max-width: 300px;
  margin: 10px auto;
  border-radius: 5px;
  display: block;
}

.lastLoad {
  margin-top: 20px;
}

.timeLoad {
  font-weight: bold;
  color: #FB8D2C;
}


.hero-section {
  background: url('/css/image/lg-Washres.jpg') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for better contrast */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff; /* Ensures text is white for better contrast */
}

.hero-content h1 {
  background: rgba(0, 0, 0, 0.8); /* Semi-transparent background for the text */
  border-radius: 5px;
  padding: 20px 40px;
  font-family: 'Amiri', serif;
  font-size: 2.5em;
}

.section {
  padding: 60px 0;
}
#services {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}
#services .container {
  width: 100%;
}
.flex-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
}
.flex-grid .col {
  margin: 20px;
  flex: 1 1 300px;
  max-width: 400px;
}
footer {
  background: #333;
  color: #fff;
  align-items: center;
  padding: 40px 0;
}
footer .footer-wrapper .col {
  text-align: center;
}
footer .social-wrapper a {
  color: #fff;
  padding: 6px;
}
footer .social-wrapper a:hover {
  color: #0d98ba;
}
footer .sub-footer {
  background-color: #222;
  padding: 20px 0;
}
