.has-background {
    position: relative;
    overflow: hidden;
}
.hero-background{
    position:absolute;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: auto;
}

#blue {
    color: #00217C !important;
}
#column-bar {
    border-right: 1px solid black !important;
}
#underline-bar {
    border-bottom: 1px solid black !important;
}
#cta {
    margin: 5px !important;
    padding: 0 !important;
}


/* image moving up and down */
.parent {
    position: relative;
    top: 0;
    left: 0;
}
.image2 {
    position: relative;
    top: 0;
    left: 0;
}
.image1 {
    /* animation: MoveUpDown 2s linear infinite; */
    position: absolute;
    width: 100%;
    height: auto;
    top: 15px;
    left: 10px;
}
  
@keyframes MoveUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}


/* testimonial slide show */
.slider{
    width: 100%;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
}
  
.slides{
    width: 500%;
    height: 220px;
    display: flex;
}
  
.slides input{
    display: none;
}
  
.slide{
    width: 20%;
    transition: 2s;
}


.navigation-manual{
    position: absolute;
    width: 100%;
    margin-top: -20px;
    display: flex;
    justify-content: center;
}
  
.manual-btn{
    border: 2px solid #00217C;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}
  
.manual-btn:not(:last-child){
    margin-right: 40px;
}
  
.manual-btn:hover{
    background: #00217C;
}
  
#radio1:checked ~ .first{
    margin-left: 0;
}
  
#radio2:checked ~ .first{
    margin-left: -20%;
}
  
#radio3:checked ~ .first{
    margin-left: -40%;
}
  
.navigation-auto{
    position: absolute;
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 200px;
}
  
.navigation-auto div{
    border: 2px solid #00217C;
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
}
  
.navigation-auto div:not(:last-child){
    margin-right: 40px;
}
  
#radio1:checked ~ .navigation-auto .auto-btn1{
    background: #00217C;
}
  
#radio2:checked ~ .navigation-auto .auto-btn2{
    background: #00217C;
}
  
#radio3:checked ~ .navigation-auto .auto-btn3{
    background: #00217C;
}
  
