/*
	Theme Name:     Nvoke Child Theme
	Author:         nvoke
	Template:       nvoke
	Version:        1.0.0
*/

* {
  box-sizing: border-box;  
}

body{
  display: block !important;
}


/* Slideshow container */
.slideshow-container {
  max-width: 1140px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: lightgray;
  font-weight: bold;
  font-size: 40px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(36, 95, 171, 0.8);
}

/* The dots/bullets/indicators */
.dot-container {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

.dot {
  cursor: pointer;
  top: 50%;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

.people_section {
  padding-top: 40px !important;
}




.header {
  background-color: #005a9c; /* Temporary background color */
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  background-size: cover;
  background-position: center;
}
.header h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}
.header p {
  font-size: 1em;
  margin-bottom: 30px;
}
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0066cc;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.button:hover {
  background-color: #004c8c;
}
.main-content {
  background-color: #003366; /* Dark blue background */
  color: white;
  padding: 30px 20px;
}
.main-content h2 {
  font-size: 2em;
  margin-bottom: 10px;
}
.main-content p {
  font-size: 1em;
}