/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

section {
  padding: 60px 20px 0px 20px;
  overflow: hidden;
}

section {
  line-height: 1.6;
  font-size: 1.1rem;
}

.color-blue{
  color: #3B8EDE;
}

.bg-blue{
  background-color: #3B8EDE;
}

.body-font{
  font-weight: 200;
  font-size: 1.4rem;
}

@media (max-width: 1024px){
  .blue-border {
    border: none!important;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

#back-to-top {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #3B8EDE; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  border-radius: 5px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#back-to-top:hover {
  background-color: #000; /* Add a dark-grey background on hover */
}


/*--------------------------------------------------------------
# Nav Edits
--------------------------------------------------------------*/
.navbar-light .navbar-nav .nav-link:hover {
  color: #3B8EDE;
}

.navbar-light .navbar-nav .nav-link{
  color: #000;
  letter-spacing: 1px;
}

.nav-contact-button{
  padding: 0px 2px 0px 2px;
  margin-left: 30px;
  background-color: #3B8EDE;
}
.nav-contact-button .nav-link{
  color: #fff !important;
}

.navbar-light .navbar-nav .active{
  color: #3B8EDE !important;
}

.nav-contact-button .nav-link:hover{
  color: #3B8EDE !important;
}

.nav-contact-button:hover{
  background-color: #fff;
  border: 2px solid #3B8EDE;
}

@media (max-width: 768px){
  .navbar-light .navbar-nav .active{
    color: #ffffff !important;
  }
  .navbar-light .navbar-nav .nav-link{
    color: #fff;
    letter-spacing: 1px;
    background-color: #3B8EDE;
  }
  .nav-contact-button{
    margin-left: 0px;
  }
  .navbar-light .navbar-nav .nav-link:hover {
    color: #3B8EDE;
    background-color: #fff;
  }
  .nav-contact-button:hover{
    color: #3B8EDE;
    background-color: #fff;
  }

}

/*--------------------------------------------------------------
# Icons
--------------------------------------------------------------*/
.link21 a{
  font-size: 1.2rem;
  color: #000;
  text-decoration: none;
}

.link21 a:hover{
  color: red;
}

/*--------------------------------------------------------------
# pages
--------------------------------------------------------------*/

.staffing-bg{
    background-image: url(../imgs/consulting2.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow:inset 0 0 0 2000px rgba(51, 51, 51, 0.9);
}

.consulting-text{
  padding: 20px;  
}

.consulting-text h2{
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 46px;
  
}

.consulting-text p{
  font-weight: 200;
  font-size: 20px;
}

.contact-text h2{
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 28px;
  font-weight: bold; 
}

.contact-text p{
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  font-weight: bold; 
}

.contact-svg-filter-blue{
  filter: invert(49%) sepia(61%) saturate(909%) hue-rotate(181deg) brightness(91%) contrast(90%);
}

.contact-blue-border{
  width: 50px;
  border-bottom: 2px solid #3B8EDE;
}

.form-control{
  border-radius: 0px !important;
}

.img-hover-zoom {
  overflow: hidden; /* [1.2] Hide the overflowing of child elements */
}

/* [2] Transition property for smooth transformation of images */
.img-hover-zoom img {
  transition: transform .5s ease;
}

/* [3] Finally, transforming the image when container gets hovered */
.img-hover-zoom:hover img {
  transform: scale(1.1);
}


.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.banner-img{
  height:600px;
  width:100%;
  object-fit:cover;
}