body {
    /*min-height: 2000px;
    padding-top: 105px;*/
}
.container-fluid{
    max-width:100%;
    padding:0;
}
.clearer {
    clear:both;
    padding:0;
    margin:0;
    width:100%;
    font-size:0;
    line-height:0;
}
.col-md-12 {
    max-width: 1024px;
    padding: 0;
    margin: 0;
}
.container {
    max-width: 1024px;
}
#header {
    background: #b6c2c7;
    display: block;
    z-index: 0;
    width: 100%;
    padding: 0;
    margin: 0;
}
.logo {
    float: left;
    margin-top: 8px;
}
.social {
    margin-top: 50px;
}
.contact {
    margin-top:30px;
}
.contact h2 {
    color:#153152;
    font-family: Times;
    font-weight: bold;
    font-size: 22px;
    text-align: right;
}
.content {
    padding-top: 35px;
    color:#fff;
}
.content p, .content ul li
{
    text-align: justify;
    font-weight: normal;
    font-size: 16px;
}
.content h1, h2, h3 {
    text-align: center;
    color:#fff;
}
.content h4, h5 {
    text-align: left;
    color:#fff;
}
.caption p {
    text-align: justify;
}
#icons {
    font-size: 100px;
    right:1%;
    color:#aac3d4;
    float: right;
}
ul#navbar {
    float: left;
    margin-top: 0px;
    border: 2px solid #fff;
    border-radius: 4px;
    background: #1d3e6d;
    width: 100%;
    z-index: 999;

}
ul#navbar li {
    margin:0;
    padding:0;
    border-radius: 4px;
}
ul#navbar li a{
    font-family: Arial;
    font-weight: bold;
    color:#fff;
    font-size: 14px;
    border:none;
    background: transparent;
}
ul#navbar li a.active {
    border:none;
    background: #b6c2c7;
}
ul#navbar li a:hover, ul#navbar li a:focus {
    border:none;
    background: #b6c2c7;
}
ul#navbar li.dropdown ul.dropdown-menu {
    margin-top: -12px;
    margin-left: 10px;
    z-index: 999;
}
ul#navbar li.dropdown ul.dropdown-menu li a {
    color:#1570a6;
    margin-top:1px;
    margin-bottom:1px;
    padding-top: 1px;
    padding-bottom: 1px;
}
ul#navbar li.dropdown ul.dropdown-menu li a:hover {
    background:#1570a6;
    color:#fff;
}
#search-form {
    padding: 0;
    /*padding-top: 30px;*/
    margin: 0;
    float:right;
}
.glyphicon {
    color:#fff;
}
.navigation {
    float:left;
    width: 25%;
    height:auto;
    margin-bottom: 10px;
}
.navigation h1 {
    font-size:28px;
    font-weight:bold;
    color:#fff;
    width:auto;
    height:42px;
    padding-top:10px;
    padding-left:10px;
    text-align:left;
}
.navigation a {
    font-family: 'Trebuchet MS', arial;
    font-size:16px;
    font-weight:normal;
    line-height: 26px;
    color:#fff;
    cursor: pointer;
}
ul.leftmenu {
    padding: 10px;
    list-style: none;
}
ul.leftmenu li {
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top:10px;
}
ul.leftmenu li a {
    color:#fff;
    font-weight: bold;
}
ul.level2 {
    margin-left:0;
    list-style: none;
}
ul.level2 li {
    font-size: 14px;
    text-transform:none;
    border-bottom:none;
    list-style: none;
    margin-top:0px;
}
ul.level2 li a {
    color:#fff;
}

.footer {
    background: #b6c2c7;
    color:#000;
    border-bottom: 40px solid #1f4d79;
}
.footer-thump
{
    background: transparent !important;
    border: none;
    padding-top: 20px;
}
.header-footer-thump
{
    font-weight: bold;
    font-family: 'Trebuchet MS',arial;
    font-size: 20px;
}
.footer-thump-content
{
    padding: 7px;
    font-weight: bold;
    font-family: 'Trebuchet MS',arial;
    font-size: 14px;

}
.footer-thump-content p
{
    margin-left: 15px;
    text-align: left;
}
.footer-thump-content-phone-mail
{
    margin: 0 !important;
    padding: 0 !important;
}
.footer-thump-content-phone-mail p
{
    margin: 0 !important;
    padding: 0 !important;
}
.footer-thump-content p a
{
    font-weight: bold;
    font-size: 16px;
    color:#333;
}
.footer-thump-content p
{
    margin-bottom: 1px;
}
#footer-newsletter-form
{
    padding: 0 !important;
    margin: 0 !important;
}

.card-img {
	height: 130px;
	background-size: cover;
}


.spinner-container{
		position: absolute;
	height: 100%;
	width: 100%;
	display: none;

	justify-content: center;
	align-items: center;
	padding-left: 15px;
	padding-right: 15px;
	z-index: 9999;
}
.spinner-active{
	display: grid;
}
.loader {
    width: 100px;
    height: 100px;
    border: 5px solid #dcdcdc;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
	position:absolute;
		justify-self: center;
	align-self: center;

    }
@keyframes rotation {
    0% {
        transform: translateY(400%) rotate(0deg);
    }
    100% {
        transform: translateY(400%) rotate(360deg);
    }
    }