/* Base Styles */

body {
    background-color: #C4D5C4;
    background-image: linear-gradient(140deg, #C4D5C4, white);
    min-height: 100vh;
}

.dbi_logo img {
    text-align: center;
	width: 100%;

}
.dbi_logo_small {
	text-align: center;
}



.nav-links {
	display:inline-flex;
    flex-wrap: wrap;
	width:100%;
}

.nav-links a {
    padding: 0 0.5rem;
}

.nav-links .nav-links-first {

  border-left: 1px solid;
}

.nav-links li {
  display: inline;
  margin-left:auto;
  margin-right:auto;
  padding: 0 0.5em;
  border-right: 1px solid;
  align-items: center;
  justify-content: center;
}

.nav-links li a {
  color: inherit;
  text-decoration: none;
}







.nav-links-projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.nav-links-projects a {
    padding: 0 0.5rem;
}

.nav-links-projects .nav-links-first-projects {
  display: inline;
  margin: 0;
  padding: 0 0.5em;
}

.nav-links-projects li {
  display: inline;
  margin: 0;
  padding: 0 0.5em;
}

.nav-links-projects li a {
  color: inherit;
  text-decoration: none;
}


.certification {
 clear:left;
}

ul.certification li.logo {
  list-style-type:none;
  float:left;
  width: 25%;
}

.certification li {
	
}

figure.item {
	display:inline-block;
}


.full_width{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.inline{
   display: inline;
}

.float_right {
 float:right;
  list-style-type:none;
}

.form_container{
  width: 100%;
}

.form_container textarea.message{
	width:100%;
	height:150px;
}

/* Component Styles */

.common-nav {
    margin-bottom: 2.5rem;
}

.site {
    /* Copied from h3 */
    font-size: 3.0rem;
    line-height: 1.3;
    letter-spacing: -.1rem;
	
    /* Separate from h3 */
    text-align: center;
    font-family: Geneva, Tahoma, sans-serif;
    font-style: italic;
    font-weight: bold;
    text-transform: uppercase;
}

#footer p {
    font-size: 1.25rem;
    font-style: italic;
    text-align: right;

}

.condensedlines {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

/* Utility Classes */

.aligncenter {
    text-align: center !important;
}

.alignright {
    text-align: right !important;
}



/* Slideshow Items */
.half-width {
	width:50%;
	margin: 0 auto;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

/* 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(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor:pointer;
  height: 13px;
  width: 13px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.error {
    color: #FF0000;
}