body {
    padding-top: 70px;
    color: black;
    padding-bottom: 60px;
}

h1, h2, h3, h4, h5, h6 {
    color: black;
}
.testBorder {
    border: solid 3px gray;
}

.carousel-item h1{
    background-color: #f2f2f2;
    opacity: 0.5;
    border-radius: 5px;
}

.carousel-item h3{
    background-color: #f2f2f2;
    opacity: 0.5;
    border-radius: 5px;
}

#corporateServices {
    /* height: 620px;*/
    background-color: #f2f2f2;
    padding: 10px;
    /* margin-top: 70px; */
}

#corporateServicesSection:target, #governmentBusinessSection:target, #careerOpportunitiesSection:target {
    color: white;
    background: rgb(92, 91, 91);
}

#governmentBusiness {
    background-color: #f2f2f2;
}

.imageAdjust1 {
    width: 100px;
    height: auto;
}

.imageAdjust2 {
    width: 80px;
    height: auto;
    margin-top: 12px;
    margin-bottom: 5px;
}

.imageAdjust3 {
    margin-top: 25px;
    margin-bottom: 25px;
}

.row a {
    position: relative;
}
  
.row a::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 4px;
      border-radius: 4px;
      background-color: #18272F;
      bottom: 0;
      left: 0;
      transform-origin: right;
      transform: scaleX(0);
      transition: transform .3s ease-in-out;
}
  
.row a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

footer {
    height: 30px;
    background-color: #ffffff;
}

footer a {
    text-decoration: none;
    box-shadow: inset 0 0 0 0 #54b3d6;
    color: #54b3d6;
    margin: 0 -.25rem;
    padding: 0 .25rem;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}

footer a:hover {
    box-shadow: inset 100px 0 0 0 #54b3d6;
    color: white;
}

.scrolled-down{
    transform:translateY(-100%); transition: all 0.3s ease-in-out;
}

.scrolled-up{
    transform:translateY(0); transition: all 0.3s ease-in-out;
}