@import 'https://fonts.googleapis.com/css?family=Open+Sans';
/* Main */
body {
    font-family: Arial, sans-serif;
}

#content {
    background:white;
    padding: 3rem;
    min-height:800px;
}

h1, h2, h3, h4, h5, h6, dt {
    font-family: 'Open Sans', Arial, sans-serif;
}

section {
    padding-top: 2rem;
    padding-bottom:2rem;
    overflow: hidden;
}

dl dt {
    margin-top: 1rem;
    margin-bottom: 0.1rem;
}

.careersContent ol li {
    margin-top:1.5rem;
}

/* Button */
.button {
    background-color: #096DFF;
    font-weight: bold;
}

.button.hollow{
    border-color: #7aaeea;
    color:#7aaeea;
}

.button:hover {
    background-color: #074da9;
}

/* Blockquotes */
blockquote p {
    color: #545454;
}

/* Navigation */
#navigation .top-bar-right {
    position: absolute;
    right:0;
    bottom: 0;
}

#navigation {
    border-bottom: 0;
}

#navigation .row {
    position:relative;
}

#navigation.top-bar {
    padding:0;
}

#navigation img {
    max-height: 125px;
    padding: 1rem;
}

@media screen and (max-width: 39.9375em) {
    #navigation .top-bar-right {
        position: relative;
    }
}

#navigation.top-bar ul, #navigation.top-bar {
    background: #FFF;
}

#navigation .menu > li > a {
    color:black;
    border: solid #FFF;
    border-width: 0 0 5px 0;
    transition: border-color 0.2s ease-out;
}

#navigation .menu > li > a:hover {
    border: solid #096DFF;
    border-width: 0 0 5px 0;
}

#navigation .menu .active > a {
    background-color: transparent;
    color: black;
    border: solid #DE06EA;
    border-width: 0 0 5px 0;
}

#navigation .menu .active > a:hover {
    border: solid #DE06EA;
    border-width: 0 0 5px 0;
}

#navigation ul.dropdown.menu {
    margin-bottom:-8px;
}

.title-bar {
    background: #FFF;
    color:black;
    display:none;
}

.menu-icon::after {
    background: #000000;
    box-shadow: 0 7px 0 #000000, 0 14px 0 #000000;
}


/* Fix for .thumbnail getting cut off?? */
.thumbnail {
    margin:0.1rem;
    border-width:0 0 0 0;
    box-shadow:none;
    border:none;
}

.thumbnail:hover, .thumbnail:focus {
    box-shadow: 0 0 6px 1px rgba(205, 212, 232, 0.5);
}

ol, ul {
    margin-left: 1.5rem;
}

/* animation code */
@keyframes imageExplore {
    0%   {background-position: center bottom;}
    100% {background-position: center top;}
}

/* introContent */
.introContent {
    height:27.5rem;
    margin-top:0;
    background-position: center bottom;
    background-size:cover;

    animation-name: imageExplore;
    animation-duration: 10s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-delay: 5s;
    animation-play-state: paused;
}

.introContent:hover {
    animation-play-state: running;
}



/* Content Blocks */
.contentBlocks > .column {

}

.contentBlocks .callout {
    padding:20px;
    border: 1px solid rgb(212, 228, 255);
    background-color:  rgba(9, 109, 255, 0.03);
    text-align: center;
}

.contentBlocks {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
}

/* solutionsContent */
.solutionsContent:nth-child(even), .careersContent:nth-child(even), .aboutContent:nth-child(even) {
    border-top: 1px;
    border-bottom: 1px;
    border: solid #f5f5f5;
    border-left:0;
    border-right:0;
}

/* Footer */
#footer {
    background: #f8f8f8;
    border-top:1px solid lightgray;
    padding:2rem 1rem 1rem 1rem;
    color:#777;
}

#footer .callout {
    border: 0;
    background: none;
}

#footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6 {
    color: #545454;
    border-bottom: 1px dashed #bfbfbf;
    padding-bottom: 0.3rem;
    font-weight: normal;
}

#footer a {
    color:#777;
}

#footer ul > li {
    margin-left: 0;
}

#footer ul > li > a {
    padding:0.5rem 0 0.5rem 0;
}

.street-address, .locality, .postal-code, .country-name, .tel {
    padding: 0.5rem 0 0 0;
    color:#777;
}

#footer a:hover {
    color: #AAA;
}

#footer p {
    color: dimgray;
}

input[type="submit"]:disabled {
    background: #c1c1c1;
    color: #000000;
    opacity: 0.5;
    border: 1px solid #8c8c8c;
}

/* CSS Loading Animation by @lukehaas
The MIT License (MIT)

Copyright (c) 2014 Luke Haas

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.loader,
.loader:before,
.loader:after {
    background: #E91E63;
    -webkit-animation: load1 1s infinite ease-in-out;
    animation: load1 1s infinite ease-in-out;
    width: 1em;
    height: 4em;
}
.loader:before,
.loader:after {
    position: absolute;
    top: 0;
    content: '';
}
.loader:before {
    left: -1.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.loader {
    color: #E91E63;
    text-indent: -9999em;
    position: relative;
    font-size: 5px;
    top: 2em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
.loader:after {
    left: 1.5em;
}
@-webkit-keyframes load1 {
    0%,
    80%,
    100% {
        box-shadow: 0 0;
        height: 4em;
    }
    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}
@keyframes load1 {
    0%,
    80%,
    100% {
        box-shadow: 0 0;
        height: 4em;
    }
    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}
