/*Background img on all pages*/
.backgroundimagefull{
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
}
.backgroundimagefull-mm{
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 180%;
}
/*Content on pages brought in front of background image*/
.indexcontent{
  z-index: 2;
}
/*Bio Page text content and box*/
.bio-box{
  color: #eeeeee;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.intro-text{
  color: #eeeeee;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.intro-text:hover{
  color: #69B3E7;
}
.white-text{
  color: #eeeeee;
}

.btn-xlarge {
  padding: 18px 28px;
  font-size: 22px; 
  line-height: normal;
  -webkit-border-radius: 8px;
     -moz-border-radius: 8px;
          border-radius: 8px;
  background-color: #0056b3;
}
.button-text{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
  margin-left: 20px;
}
.wrapper{ 
    width: 350px; 
    margin-top: 15%;
    margin-bottom: 5%;
}
.center-text{
    text-align: center;
}
.wrapper-index{
    width: 650px;
    margin-top: 20px;
}
.test-box{
    width:400px;
    margin-top: 20px;
}
textarea{
    vertical-align: top;
}
.header-bg{
    background-color: #001a50;
    width: 100%;
}
.footer-bg{
    background-color: #001a50;
    width: 150%;
}
.navbar-dark .navbar-nav .nav-link{
    color: #92C1E9;
}
.navbar-dark .navbar-nav .nav-link:active a{
    color: #92C1E9;
}
.navbar-dark .navbar-nav .nav-link:visited a{
    color: #92C1E9;
}
.navbar-dark .navbar-nav .nav-link:hover{
    color: #69B3E7;
}
.navbar-dark .navbar-brand{
    color: #92C1E9;
}
.navbar-dark .navbar-brand:active a{
    color: #92C1E9;
}
.navbar-dark .navbar-brand:visited a{
    color: #92C1E9;
}
.navbar-dark .navbar-brand:hover{
    color: #69B3E7;
}
.confirmation-text{
    color: #56C271;
    font-family: robotobold;
    font-size: 16px;
}
.required-field{
  color: red;
  font-style: bold;
}
.modal-bg{
  background-color: #0056b3;
  color: #ffffff;
}

/*Scroll Bar effect*/

/* width */
::-webkit-scrollbar {
  width: 15px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #000613;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #002e92;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #012a81;
}

/*end effect*/

/* Contact Form Styling */
.contact-form-header{
    color: #92C1E9;
    font-family: robotobold;
}
.contact-form-x{
    color: #ffffff;
}
.contact-form-x:hover{
    color: #eeeeee;
}
.backbutton{
  margin:0 auto;
  display: block;
}

/*Lightbox effect*/

/* Styles the thumbnail */

a.lightbox img {
  height: 150px;
  border: 3px solid white;
  box-shadow: 0px 0px 8px rgba(0,0,0,.3);
  margin: 94px 20px 20px 20px;
  }
  
  /* Styles the lightbox, removes it from sight and adds the fade-in transition */
  
  .lightbox-target {
  position: fixed;
  top: -100%;
  width: 100%;
  background: rgba(0,0,0,.7);
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity .5s ease-in-out;
  -moz-transition: opacity .5s ease-in-out;
  -o-transition: opacity .5s ease-in-out;
  transition: opacity .5s ease-in-out;
  overflow: hidden;
  }
  
  /* Styles the lightbox image, centers it vertically and horizontally, adds the zoom-in transition and makes it responsive using a combination of margin and absolute positioning */
  
  .lightbox-target img {
  margin: auto;
  position: absolute;
  top: 0;
  left:0;
  right:0;
  bottom: 0;
  max-height: 0%;
  max-width: 0%;
  border: 3px solid white;
  box-shadow: 0px 0px 8px rgba(0,0,0,.3);
  box-sizing: border-box;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  }
  
  /* Styles the close link, adds the slide down transition */
  
  a.lightbox-close {
  display: block;
  width:50px;
  height:50px;
  box-sizing: border-box;
  background: white;
  color: black;
  text-decoration: none;
  position: absolute;
  top: -80px;
  right: 0;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  }
  
  /* Provides part of the "X" to eliminate an image from the close link */
  
  a.lightbox-close:before {
  content: "";
  display: block;
  height: 30px;
  width: 1px;
  background: black;
  position: absolute;
  left: 26px;
  top:10px;
  -webkit-transform:rotate(45deg);
  -moz-transform:rotate(45deg);
  -o-transform:rotate(45deg);
  transform:rotate(45deg);
  }
  
  /* Provides part of the "X" to eliminate an image from the close link */
  
  a.lightbox-close:after {
  content: "";
  display: block;
  height: 30px;
  width: 1px;
  background: black;
  position: absolute;
  left: 26px;
  top:10px;
  -webkit-transform:rotate(-45deg);
  -moz-transform:rotate(-45deg);
  -o-transform:rotate(-45deg);
  transform:rotate(-45deg);
  }
  
  /* Uses the :target pseudo-class to perform the animations upon clicking the .lightbox-target anchor */
  
  .lightbox-target:target {
  opacity: 1;
  top: 0;
  bottom: 0;
  }
  
  .lightbox-target:target img {
  max-height: 100%;
  max-width: 100%;
  }
  
  .lightbox-target:target a.lightbox-close {
  top: 0px;
  }
  
/**/

/* CSS for Sample contact form */

#fcf-form {
    display:block;
  }
  
  .fcf-body {
    margin: 0;
    font-family: -apple-system, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
    padding: 30px;
    padding-bottom: 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    max-width: 100%;
  }
  
  .fcf-form-group {
    margin-bottom: 1rem;
  }
  
  .fcf-input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
  }
  
  .fcf-form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    outline: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  
  .fcf-form-control:focus {
    border: 1px solid #313131;
  }
  
  select.fcf-form-control[size], select.fcf-form-control[multiple] {
    height: auto;
  }
  
  textarea.fcf-form-control {
    font-family: -apple-system, Arial, sans-serif;
    height: auto;
  }
  
  label.fcf-label {
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  
  .fcf-credit {
    padding-top: 10px;
    font-size: 0.9rem;
    color: #545b62;
  }
  
  .fcf-credit a {
    color: #545b62;
    text-decoration: underline;
  }
  
  .fcf-credit a:hover {
    color: #0056b3;
    text-decoration: underline;
  }
  
  .fcf-btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  
  @media (prefers-reduced-motion: reduce) {
    .fcf-btn {
        transition: none;
    }
  }
  
  .fcf-btn:hover {
    color: #212529;
    text-decoration: none;
  }
  
  .fcf-btn:focus, .fcf-btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  
  .fcf-btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
  }
  
  .fcf-btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
  }
  
  .fcf-btn-primary:disabled,
  .fcf-btn-primary[disabled]{
    border: 1px solid #999999;
    background-color: #cccccc;
    color: #666666;
  }
  
  .fcf-btn-primary:focus, .fcf-btn-primary.focus {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
  }
  
  .fcf-btn-lg, .fcf-btn-group-lg>.fcf-btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
  }
  
  .fcf-btn-block {
    display: block;
    width: 100%;
  }
  
  .fcf-btn-block+.fcf-btn-block {
    margin-top: 0.5rem;
  }
  
  input[type="submit"].fcf-btn-block, input[type="reset"].fcf-btn-block, input[type="button"].fcf-btn-block {
    width: 100%;
  }