@media (min-width: 992px) { 
    .vertical-align {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
    }
    .vertical-align > .form-group {
        margin: 0;
    }
}
#search-box {
    margin-top: 11px;
    padding: 0;
}


.slideshow-slide {
    display: none
}
.slideshow-dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #ABC9DE;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.slideshow-active, .slideshow-dot:hover {
    background-color: #024F85;
}
.slideshow-button {
    display: inline-block;
    padding: 10px;
    background: #024F85;
    position: absolute;
    top: 0;
    color: white;
    cursor: pointer;
    border-radius: 3px;
}
.slideshow-button-left {
    left: 5px;
}
.slideshow-button-right {
    right: 5px;
}

body {
    background-color: #FFFFFF;
    font-family: Arial, serif;
}
.container {
    border: 10px solid #024F85;
    background-color: #FFFFFF;
    margin-top: 5px;
    border-radius: 10px;
}
.container > div {
    border: 10px solid #F67520;
    box-sizing: border-box;
    padding: 10px;
}
h1 {
    color: #024F85;
}
h2 {
    color: #242424;
    font-weight: bold;
    margin-top: 0;
}
p {
    color: #242424;
}
.title-text {
    display: inline-block;
}
.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}