/*Footer Background, Padding, and Font Format*/
.library-footer {
  color: #ECEEEF;
  background-color: #002D72;
  font-size: 15px;
  line-height: 24px;
  font-family: Helvetica, Arial, sans-serif;
  padding-top: 20px;
}

/*Container Width*/
.container.top-box {
  width: 100%;
}

/*Logo Size and Placement*/
.footer-logo img {
  width: 325px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*List Styles*/
.library-links {
  padding-left: 0;
  padding-bottom: 15px;
  list-style: none;
}

.library-links li {
  display: block;
}

.social-links {
  display: inline-block;
  padding-left: 0;
  margin-top: 5px;
  margin-bottom: 0;
  list-style: none;
}

.social-links li {
  display: inline-block;
  padding-left: 0;
  margin-bottom: 4px;
}

/*Header Formatting*/
.library-footer h6 {
  color: #ECEEEF;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 2px;
}

/*About and Resources Link Formatting*/
.library-footer a {
  color: #ECEEEF;
  text-decoration: none;
}

.library-footer a:active, .library-footer a:focus, .library-footer a:hover {
  color: #BFBAB5;
  text-decoration: none;
}

.library-links.inline li {
  display: inline-block;
}

/*Social Media Link Formatting*/
.social-links a {
  color: #818A91;
  background-color: #ECEEEF;
  width: 44px;
  height: 44px;
  line-height: 44px;
  font-size: 16px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

.social-links a:active, .social-links a:focus, .social-links a:hover {
  color: #ECEEEF;
  background-color: #29AAFE;
}

.social-links li.title {
  color: #96A2B2;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 15px;
}

.social-links.size-sm a {
  width: 34px;
  height: 34px;
  line-height: 34px;
  font-size: 14px;
}

.social-links a.facebook:hover {
  background-color: #3B5998;
}

.social-links a.twitter:hover {
  background-color: #00ACED;
}

.social-links a.instagram:hover {
  background-color: #2C6A93;
}

.social-links a.youtube:hover {
  background-color: #C31A1E;
}

/*Bottom Bar Formatting*/
.container-fluid.bottom-box{
  background-color: #002155;
  padding: 10px;
  padding-bottom: 5px;
}

/*Copyright and Terms of Use Formatting*/
.copyright p {
  text-align: left;
}

.terms p {
  text-align: right;
}

/*Screen Responsiveness*/
@media (max-width: 991px) {
  .container.top-box {
    width: 90%;
  }
  
  .library-footer [class*="col-"] {
    padding-right: 0;
  }
  
  .library-footer h6 {
    white-space: nowrap;
  }
  
  .footer-logo {
    display: none;
  }
      
  .social-links li {
    padding-left: 0;
  }
  
  .copyright p {
    text-align: center;
  }
  
  .terms {
    display: none;
  }
}

@media (max-width: 767px) {
  .social-links li.title {
    display: flex;
    margin-right: 0;
    font-weight: 600;
  }
}